app.config
3.99 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="VersionNo" value="1.0.0" ></add>
<add key="ServerPath" value="" />
<add key="UpdateFile"/>
<add key="UpdateStrategy"/>
<add key=""/>
</appSettings>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
<applicationSettings>
<DMSSSOAgent.Properties.Settings>
<setting name="DMSSSOAgent_DMSSSOService_SSOServices" serializeAs="String">
<!--<value>http://164.39.68.58:38090/axis2/services/SSOServices.SSOServicesHttpSoap11Endpoint/</value>-->
<value>http://www.erry.com:38090/axis2/services/SSOServices.SSOServicesHttpSoap11Endpoint/</value>
</setting>
</DMSSSOAgent.Properties.Settings>
</applicationSettings>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SSOServicesSoap11Binding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
<customBinding>
<binding name="SSOServicesSoap12Binding">
<textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"
messageVersion="Soap12" writeEncoding="utf-8">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
</textMessageEncoding>
<httpTransport manualAddressing="false" maxBufferPoolSize="524288"
maxReceivedMessageSize="65536" allowCookies="false" authenticationScheme="Anonymous"
bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
keepAliveEnabled="true" maxBufferSize="65536" proxyAuthenticationScheme="Anonymous"
realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false"
useDefaultWebProxy="true" />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://192.168.0.225:38090/axis2/services/SSOServices.SSOServicesHttpSoap11Endpoint/"
binding="basicHttpBinding" bindingConfiguration="SSOServicesSoap11Binding"
contract="DMSSSOService.SSOServicesPortType" name="SSOServicesHttpSoap11Endpoint" />
<endpoint address="http://192.168.0.225:38090/axis2/services/SSOServices.SSOServicesHttpSoap12Endpoint/"
binding="customBinding" bindingConfiguration="SSOServicesSoap12Binding"
contract="DMSSSOService.SSOServicesPortType" name="SSOServicesHttpSoap12Endpoint" />
</client>
</system.serviceModel>
</configuration>