NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - JZL

Pages: 1 [2]
16
Web Server - Ask For Help / Re: Web-services WSDL and SOAP
« on: April 07, 2014, 06:05:53 AM »
Hi

I have moved it to  http://sharks.dk:83

it was behind a firewall

/Jesper




17
Web Server - Ask For Help / Web-services WSDL and SOAP
« on: April 04, 2014, 01:34:37 AM »
I have published my first WEB services. And received my first feedback. My WSDL file does not contain the expected SOAP code that corresponds to our documentation under SOAP 1.1/1.2  says user

I have tested with http://webservicestudio.codeplex.com

Request / Response works fine but INVOKE that use SOAP does not work.

I received the following xml from the user. SOAP from WSDL and the user have the namespace in from of the tags

is there anyone who knows why ?????????

/Jesper

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:frih="www.friheden.dk">
   <soapenv:Header/>
   <soapenv:Body>
      <frih:GetGaestByNr>
         <!--Optional:-->
         <frih:user>?</frih:user>
         <!--Optional:-->
         <frih:passw>?</frih:passw>
         <frih:GaestNr>?</frih:GaestNr>
      </frih:GetGaestByNr>
   </soapenv:Body>
</soapenv:Envelope>


my  SOAP 1.1/1.2

http://87.104.221.186:83/Friheden?GetGaestByNr 

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetGaestByNr xmlns="http://www.capesoft.com">
      <user>value</user>
      <passw>value</passw>
      <GaestNr>value</GaestNr>
    </GetGaestByNr>
  </soap:Body>
</soap:Envelope>



Pages: 1 [2]