NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: JZL 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>
-
Hi Jesper,
your site is down at the moment - can you let me know when it's back up please?
Bruce
-
Hi
I have moved it to http://sharks.dk:83
it was behind a firewall
/Jesper