12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <system.serviceModel>
- <behaviors>
- <serviceBehaviors>
- <behavior name="U9SrvTypeBehaviors">
- <serviceMetadata httpGetEnabled="true" />
- </behavior>
- </serviceBehaviors>
- <endpointBehaviors>
- <behavior name="U9RestSrvBehaviors">
- <enableWebScript />
- </behavior>
- </endpointBehaviors>
- </behaviors>
- <services>
- <service name="UFIDA.U9.Cust.Kusi.CJJ.RestApi.CreateRcvRptDocCostWithPackageStub" behaviorConfiguration="U9SrvTypeBehaviors">
- <endpoint address="" behaviorConfiguration="U9RestSrvBehaviors" binding="webHttpBinding" contract="UFIDA.U9.Cust.Kusi.CJJ.RestApi.ICreateRcvRptDocCostWithPackage" />
- </service>
- </services>
- </system.serviceModel>
- </configuration>
|