Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.ServiceModel_test_net_3_0.dll.config « System.ServiceModel « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 162fae760ae03e84af579cf83ae39573c515d962 (plain)
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
<?xml version="1.0" encoding="utf-8"?><configuration>
	<appSettings>
		<add key="onlyClients" value="false" />
		<add key="endpointBase" value="http://localhost:9999" />
	</appSettings>
  <system.serviceModel>
    <behaviors>
	  <serviceBehaviors>
			<behavior name="MetadataBehavior">
				<serviceMetadata httpGetEnabled="true" />
			</behavior>
	  </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="behavior1">
          <callbackDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="behavior2">
          <callbackDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </endpointBehaviors>
    </behaviors>
	<bindings>
		<basicHttpBinding>
			<binding name="basicHttp">
				<security mode="None">
				</security>
			</binding>
		</basicHttpBinding>
	</bindings>
    <client>
      <endpoint address="http://test1_1" binding="basicHttpBinding" contract="MonoTests.System.ServiceModel.ICtorUseCase1" name="CtorUseCase1_1" />
      <endpoint address="http://test2_1" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_1" />
      <endpoint address="http://test2_2" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_2" behaviorConfiguration="behavior1" />
      <endpoint address="http://test2_2" binding="basicHttpBinding" contract="CtorUseCase2" name="CtorUseCase2_3" behaviorConfiguration="behavior2" />
      <endpoint name="" binding="basicHttpBinding" contract="test" />
    </client>

	<services>
	</services>
  </system.serviceModel>
</configuration>