-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWeb.config
executable file
·46 lines (41 loc) · 1.64 KB
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0"?>
<configuration>
<appSettings />
<connectionStrings />
<system.web>
<compilation debug="true">
</compilation>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="Windows" />
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="MktowsApiSoapBinding2">
<security mode="Transport" />
</binding>
<binding name="MktowsApiSoapBinding3" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="https://na-d.marketo.com/soap/mktows/2_0"
binding="basicHttpBinding" bindingConfiguration="MktowsApiSoapBinding2"
contract="Marketo_WS_2_0.MktowsPort" name="MktowsApiSoapPort1" />
</client>
</system.serviceModel>
</configuration>