Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. <wsdl:operation name="DeletePaymentMethod">
  2. <soap:operation soapAction="http://**.**.**.**:55525/IPaymentManagement/DeletePaymentMethod" style="document"/>
  3. <wsdl:input>
  4. <soap:body use="literal"/>
  5. </wsdl:input>
  6. <wsdl:output>
  7. <soap:body use="literal"/>
  8. </wsdl:output>
  9. </wsdl:operation>
  10.  
  11. WebServiceCallout.invoke(
  12. this,
  13. request_x,
  14. response_map_x,
  15. new String[]{
  16. endpoint_x,
  17. 'http://**.**.**.**:55525/IPaymentManagement/DeletePaymentMethod',
  18. 'http://**.**.**.**:55525/',
  19. 'DeletePaymentMethod',
  20. 'http://**.**.**.**:55525/',
  21. 'DeletePaymentMethodResponse',
  22. 'DotNetIntegration_PaymentManagementAPI.DeletePaymentMethodResponse_element'}
  23. );
  24.  
  25. <?xml version="1.0"?>
  26. <configuration>
  27. <appSettings/>
  28. <!--
  29. For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
  30.  
  31. The following attributes can be set on the <httpRuntime> tag.
  32. <system.Web>
  33. <httpRuntime targetFramework="4.5.2" />
  34. </system.Web>
  35. -->
  36. <system.web>
  37. <compilation debug="true" targetFramework="4.5"/>
  38. <httpRuntime/>
  39. <pages controlRenderingCompatibilityVersion="4.0"/>
  40. <customErrors mode="Off"/>
  41. </system.web>
  42. <system.serviceModel>
  43. <behaviors>
  44. <serviceBehaviors>
  45. <behavior>
  46. <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
  47. <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
  48. <!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
  49. <serviceDebug includeExceptionDetailInFaults="false"/>
  50. </behavior>
  51. </serviceBehaviors>
  52. </behaviors>
  53. <protocolMapping>
  54. <add binding="basicHttpsBinding" scheme="https"/>
  55. </protocolMapping>
  56. <serviceHostingEnvironment aspNetCompatibilityEnabled="false" multipleSiteBindingsEnabled="true"/>
  57. </system.serviceModel>
  58. <system.webServer>
  59. <modules runAllManagedModulesForAllRequests="true"/>
  60. <!--
  61. To browse web app root directory during debugging, set the value below to true.
  62. Set to false before deployment to avoid disclosing web app folder information.
  63. -->
  64. <directoryBrowse enabled="true"/>
  65. </system.webServer>
  66. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement