Skip to content

Instantly share code, notes, and snippets.

@tecnom1k3
Created January 8, 2019 00:50
Show Gist options
  • Save tecnom1k3/66434655c41a7b62e0e5831f62e18e7a to your computer and use it in GitHub Desktop.
Save tecnom1k3/66434655c41a7b62e0e5831f62e18e7a to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="urn:microsoft-dynamics-schemas/nav/system/" targetNamespace="urn:microsoft-dynamics-schemas/nav/system/">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="urn:microsoft-dynamics-schemas/nav/system/">
<element name="Companies">
<complexType>
<sequence />
</complexType>
</element>
<element name="Companies_Result">
<complexType>
<sequence>
<element minOccurs="1" maxOccurs="unbounded" name="return_value" type="string" />
</sequence>
</complexType>
</element>
</schema>
</types>
<message name="Companies">
<part name="parameters" element="tns:Companies" />
</message>
<message name="Companies_Result">
<part name="parameters" element="tns:Companies_Result" />
</message>
<portType name="SystemService_Port">
<operation name="Companies">
<input name="Companies" message="tns:Companies" />
<output name="Companies_Result" message="tns:Companies_Result" />
</operation>
</portType>
<binding name="SystemService_Binding" type="tns:SystemService_Port">
<binding xmlns="http://schemas.xmlsoap.org/wsdl/soap/" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="Companies">
<operation xmlns="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="urn:microsoft-dynamics-schemas/nav/system/:Companies" style="document" />
<input name="Companies">
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="literal" />
</input>
<output name="Companies_Result">
<body xmlns="http://schemas.xmlsoap.org/wsdl/soap/" use="literal" />
</output>
</operation>
</binding>
<service name="SystemService">
<port name="SystemService_Port" binding="tns:SystemService_Binding">
<address xmlns="http://schemas.xmlsoap.org/wsdl/soap/" location="http://cr-nav-18.cr-config.com:7047/NAV18TESTWS/WS/SystemService" />
</port>
</service>
</definitions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment