NetTalk Central

Author Topic: Web-services WSDL and SOAP  (Read 2850 times)

JZL

  • Newbie
  • *
  • Posts: 17
    • View Profile
    • Email
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>



Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Web-services WSDL and SOAP
« Reply #1 on: April 07, 2014, 02:32:27 AM »
Hi Jesper,

your site is down at the moment - can you let me know when it's back up please?

Bruce

JZL

  • Newbie
  • *
  • Posts: 17
    • View Profile
    • Email
Re: Web-services WSDL and SOAP
« Reply #2 on: April 07, 2014, 06:05:53 AM »
Hi

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

it was behind a firewall

/Jesper