Using the SOAP-Interface

Use this forum for all questions related to the source code of OpenEMM

Moderator: moderator

mhuber84
Posts: 15
Joined: Tue Oct 30, 2007 12:06 pm

Using the SOAP-Interface

Post by mhuber84 »

Hello everybody,

I was glad to see that there's a SOAP-Interface now. So I downloaded the newest Version 5.3.1 for Windows and installed it as described in the document http://openemm.org/fileadmin/docs/Insta ... 5.3.1a.txt in my Root-Folder on C:\.

Then I tried to create a ws.wsdl-file as described here http://www.openemm.org/fileadmin/docs/O ... ices10.pdf with the EmmCreateWSDL.sh. To execute the script I used cygwin. But i always get an error: 'Exeption in thread "main" java.lang.NoClassFoundError: org/apache/axis/wsdl/java2WSDL'. What can i do? I searched for java2WSDL but I couldn't find it anywhere on my system or in the internet. Can anybody help me or send me a ws.wsdl-file?

I think without this file on the server I can't use the interface?

Thanks!

marco
maschoff
Site Admin
Posts: 2596
Joined: Thu Aug 03, 2006 10:20 am
Location: Munich, Germany
Contact:

webservices doc

Post by maschoff »

Your questions will be answered (hopefully) in this document:

http://www.openemm.org/fileadmin/docs/O ... ices10.pdf
OpenEMM Maintainer
mhuber84
Posts: 15
Joined: Tue Oct 30, 2007 12:06 pm

Post by mhuber84 »

Finally I got the wsdl-file (I installed openEmm on an linux-server and there it works).
I created the ws2.wsdl-file with the following command and copied it to the folder where my php-script is:

Code: Select all

 ./EmmCreateWSDL.sh -o ws2.wsdl -l "http://192.168.10.192:8080/emm_webservice" -n "http://192.168.10.192:8080/emm_webservice" -w ALL org.agnitas.webservice.EmmWebService_Port


But when I want to call a servicemethod, for example "getSubscriber", I alway get an errormessage:

Code: Select all

Fault

Array
(
    [faultcode] => ns1:Server.NoService
    [faultstring] => The AXIS engine could not find a target service to invoke!  targetService is null
    [detail] => Array
        (
            [hostname] => Atlantis
        )

)

Request

POST /emm_webservice HTTP/1.0
Host: 192.168.10.192:8080
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: ""
Content-Length: 665

<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://192.168.10.192:8080/emm_webservice"><SOAP-ENV:Body><impl:getSubscriber xmlns:impl="http://192.168.10.192:8080/emm_webservice"><in0 xsi:type="SOAP-ENC:string">xxxx</in0><in1 xsi:type="SOAP-ENC:string">xxxx</in1><in2 xsi:type="xsd:int">2</in2></impl:getSubscriber></SOAP-ENV:Body></SOAP-ENV:Envelope>

Response

HTTP/1.0 500 Internal Server Error
Server: Resin/3.0.19
Content-Type: text/xml; charset=iso-8859-1
Date: Tue, 20 Nov 2007 15:46:31 GMT

<?xml version="1.0" encoding="ISO-8859-1"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <soapenv:Fault>
   <faultcode xmlns:ns1="http://xml.apache.org/axis/">ns1:Server.NoService</faultcode>
   <faultstring>The AXIS engine could not find a target service to invoke!  targetService is null</faultstring>
   <detail>
    <ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">Atlantis</ns2:hostname>
   </detail>
  </soapenv:Fault>
 </soapenv:Body>
</soapenv:Envelope>
Atlantis is the Name of the openEMM-Server with the IP 192.168.10.192.

I want to use the service from an php-server and therefor I use the nusoap-classes, here you can see my php-code:

Code: Select all

require_once('../nusoap/lib/nusoap.php');
$client = new soapclient("ws2.wsdl", 'wsdl');
$client->setGlobalDebugLevel(9);

$proxy = $client->getProxy ();
$result = $proxy->getSubscriber('xxxx', 'xxxx', 2);

var_dump ($result);
I also tried it with the following, but it didn't work:

Code: Select all

require_once('../nusoap/lib/nusoap.php');
$client = new soapclient("ws2.wsdl", 'wsdl');
$client->setGlobalDebugLevel(9);

$result = $client->call('getSubscriber', array('xxxx', 'xxxx', '2'));

var_dump ($result);
A subscriber with the customer_id 2 exists.

Can anybody see were I did something wrong?
mhuber84
Posts: 15
Joined: Tue Oct 30, 2007 12:06 pm

Post by mhuber84 »

Here comes the complete output:

Code: Select all

Fault

Request

POST /emm_webservice HTTP/1.0
Host: 192.168.10.192:8080
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: ""
Content-Length: 665

<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://192.168.10.192:8080/emm_webservice"><SOAP-ENV:Body><impl:getSubscriber xmlns:impl="http://192.168.10.192:8080/emm_webservice"><in0 xsi:type="SOAP-ENC:string">marco</in0><in1 xsi:type="SOAP-ENC:string">marco</in1><in2 xsi:type="xsd:int">2</in2></impl:getSubscriber></SOAP-ENV:Body></SOAP-ENV:Envelope>

Response

HTTP/1.0 500 Internal Server Error
Server: Resin/3.0.19
Content-Type: text/xml; charset=iso-8859-1
Date: Mon, 26 Nov 2007 09:13:25 GMT

<?xml version="1.0" encoding="ISO-8859-1"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <soapenv:Body>
  <soapenv:Fault>
   <faultcode xmlns:ns1="http://xml.apache.org/axis/">ns1:Server.NoService</faultcode>
   <faultstring>The AXIS engine could not find a target service to invoke!  targetService is null</faultstring>
   <detail>
    <ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">Atlantis</ns2:hostname>
   </detail>
  </soapenv:Fault>
 </soapenv:Body>
</soapenv:Envelope>

Debug

2007-11-26 10:20:09.144131 soapclient: ctor wsdl=wsdl timeout=0 response_timeout=30
endpoint=string(7) "ws.wsdl"
2007-11-26 10:20:09.144381 soapclient: will use lazy evaluation of wsdl from ws.wsdl
2007-11-26 10:20:09.144501 soapclient: call: operation=getSubscriber, namespace=http://tempuri.org, soapAction=, rpcParams=, style=rpc, use=encoded, endpointType=wsdl
params=array(3) {
  [0]=>
  string(5) "marco"
  [1]=>
  string(5) "marco"
  [2]=>
  int(2)
}
headers=bool(false)
2007-11-26 10:20:09.144632 soapclient: instantiating wsdl class with doc: ws.wsdl
2007-11-26 10:20:09.144855 wsdl: ctor wsdl= timeout=0 response_timeout=30
2007-11-26 10:20:09.144958 wsdl: parse and process WSDL path=
2007-11-26 10:20:09.145070 wsdl: setCredentials username= authtype= certRequest=
array(0) {
}
2007-11-26 10:20:09.145173 wsdl: parse and process WSDL path=ws.wsdl
2007-11-26 10:20:09.145247 wsdl: parse WSDL at path=ws.wsdl
2007-11-26 10:20:09.145324 wsdl: getting WSDL file ws.wsdl
2007-11-26 10:20:09.146803 wsdl: Parse WSDL
2007-11-26 10:20:09.148090 wsdl: Parsing WSDL schema
2007-11-26 10:20:09.148351 nusoap_xmlschema: nusoap_xmlschema class instantiated, inside constructor
2007-11-26 10:20:09.149189 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing named complexType StringArrayType
2007-11-26 10:20:09.149559 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing typed element x of type http://www.w3.org/2001/XMLSchema:string
2007-11-26 10:20:09.149671 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> add element x to complexType StringArrayType
2007-11-26 10:20:09.149790 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing element x
2007-11-26 10:20:09.149963 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing complexType StringArrayType
2007-11-26 10:20:09.150122 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing named complexType SubscriberData
2007-11-26 10:20:09.150434 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing typed element paramNames of type urn:agnitas-webservice:StringArrayType
2007-11-26 10:20:09.150519 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> add element paramNames to complexType SubscriberData
2007-11-26 10:20:09.150627 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing element paramNames
2007-11-26 10:20:09.150816 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing typed element paramValues of type urn:agnitas-webservice:StringArrayType
2007-11-26 10:20:09.150902 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> add element paramValues to complexType SubscriberData
2007-11-26 10:20:09.151020 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing element paramValues
2007-11-26 10:20:09.151211 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> processing typed element customerID of type http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.151296 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> add element customerID to complexType SubscriberData
2007-11-26 10:20:09.151401 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing element customerID
2007-11-26 10:20:09.151563 nusoap_xmlschema: <http://192.168.10.192:8080/emm_webservice> done processing complexType SubscriberData
2007-11-26 10:20:09.151692 wsdl: Parsing WSDL schema done
2007-11-26 10:20:09.151826 wsdl: Parsing WSDL schema
2007-11-26 10:20:09.151925 nusoap_xmlschema: nusoap_xmlschema class instantiated, inside constructor
2007-11-26 10:20:09.152644 nusoap_xmlschema: <urn:agnitas-webservice> processing named complexType StringArrayType
2007-11-26 10:20:09.153008 nusoap_xmlschema: <urn:agnitas-webservice> processing typed element x of type http://www.w3.org/2001/XMLSchema:string
2007-11-26 10:20:09.153097 nusoap_xmlschema: <urn:agnitas-webservice> add element x to complexType StringArrayType
2007-11-26 10:20:09.153208 nusoap_xmlschema: <urn:agnitas-webservice> done processing element x
2007-11-26 10:20:09.153378 nusoap_xmlschema: <urn:agnitas-webservice> done processing complexType StringArrayType
2007-11-26 10:20:09.153524 wsdl: Parsing WSDL schema done
2007-11-26 10:20:09.153871 wsdl: msg updateEmailMailingResponse: found part (with type) updateEmailMailingReturn: updateEmailMailingReturn,http://www.w3.org/2001/XMLSchema:boolean
2007-11-26 10:20:09.154236 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.154450 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.154660 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in2: in2,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.154871 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.155079 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in4: in4,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.155289 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in5: in5,http://192.168.10.192:8080/emm_webservice:StringArrayType
2007-11-26 10:20:09.155497 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in6: in6,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.155720 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in7: in7,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.155929 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in8: in8,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.156139 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in9: in9,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.156347 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in10: in10,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.156558 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in11: in11,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.156785 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in12: in12,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.157003 wsdl: msg newEmailMailingWithReplyRequest: found part (with type) in13: in13,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.157341 wsdl: msg newEmailMailingRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.157567 wsdl: msg newEmailMailingRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.157777 wsdl: msg newEmailMailingRequest: found part (with type) in2: in2,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.157986 wsdl: msg newEmailMailingRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.158195 wsdl: msg newEmailMailingRequest: found part (with type) in4: in4,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.158404 wsdl: msg newEmailMailingRequest: found part (with type) in5: in5,http://192.168.10.192:8080/emm_webservice:StringArrayType
2007-11-26 10:20:09.158612 wsdl: msg newEmailMailingRequest: found part (with type) in6: in6,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.158821 wsdl: msg newEmailMailingRequest: found part (with type) in7: in7,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.159029 wsdl: msg newEmailMailingRequest: found part (with type) in8: in8,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.159238 wsdl: msg newEmailMailingRequest: found part (with type) in9: in9,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.159446 wsdl: msg newEmailMailingRequest: found part (with type) in10: in10,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.159654 wsdl: msg newEmailMailingRequest: found part (with type) in11: in11,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.159888 wsdl: msg newEmailMailingRequest: found part (with type) in12: in12,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.160229 wsdl: msg sendMailingRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.160439 wsdl: msg sendMailingRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.160649 wsdl: msg sendMailingRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.160875 wsdl: msg sendMailingRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.161085 wsdl: msg sendMailingRequest: found part (with type) in4: in4,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.161307 wsdl: msg sendMailingRequest: found part (with type) in5: in5,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.161516 wsdl: msg sendMailingRequest: found part (with type) in6: in6,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.161856 wsdl: msg insertContentResponse: found part (with type) insertContentReturn: insertContentReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.162202 wsdl: msg newEmailMailingWithReplyResponse: found part (with type) newEmailMailingWithReplyReturn: newEmailMailingWithReplyReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.162544 wsdl: msg deleteSubscriberRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.162783 wsdl: msg deleteSubscriberRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.162994 wsdl: msg deleteSubscriberRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.163333 wsdl: msg getSubscriberRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.163545 wsdl: msg getSubscriberRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.163755 wsdl: msg getSubscriberRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.164095 wsdl: msg findSubscriberRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.164305 wsdl: msg findSubscriberRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.164514 wsdl: msg findSubscriberRequest: found part (with type) in2: in2,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.164734 wsdl: msg findSubscriberRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.165074 wsdl: msg newEmailMailingResponse: found part (with type) newEmailMailingReturn: newEmailMailingReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.165418 wsdl: msg updateEmailMailingRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.165628 wsdl: msg updateEmailMailingRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.165848 wsdl: msg updateEmailMailingRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.166093 wsdl: msg updateEmailMailingRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.166306 wsdl: msg updateEmailMailingRequest: found part (with type) in4: in4,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.166516 wsdl: msg updateEmailMailingRequest: found part (with type) in5: in5,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.166728 wsdl: msg updateEmailMailingRequest: found part (with type) in6: in6,http://192.168.10.192:8080/emm_webservice:StringArrayType
2007-11-26 10:20:09.166937 wsdl: msg updateEmailMailingRequest: found part (with type) in7: in7,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.167147 wsdl: msg updateEmailMailingRequest: found part (with type) in8: in8,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.167356 wsdl: msg updateEmailMailingRequest: found part (with type) in9: in9,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.167566 wsdl: msg updateEmailMailingRequest: found part (with type) in10: in10,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.167786 wsdl: msg updateEmailMailingRequest: found part (with type) in11: in11,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.167995 wsdl: msg updateEmailMailingRequest: found part (with type) in12: in12,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.168204 wsdl: msg updateEmailMailingRequest: found part (with type) in13: in13,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.168543 wsdl: msg deleteContentRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.168765 wsdl: msg deleteContentRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.168976 wsdl: msg deleteContentRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.169313 wsdl: msg addSubscriberResponse: found part (with type) addSubscriberReturn: addSubscriberReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.169652 wsdl: msg getSubscriberResponse: found part (with type) getSubscriberReturn: getSubscriberReturn,http://192.168.10.192:8080/emm_webservice:SubscriberData
2007-11-26 10:20:09.169994 wsdl: msg setSubscriberBindingResponse: found part (with type) setSubscriberBindingReturn: setSubscriberBindingReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.170374 wsdl: msg setSubscriberBindingRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.170587 wsdl: msg setSubscriberBindingRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.170797 wsdl: msg setSubscriberBindingRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.171005 wsdl: msg setSubscriberBindingRequest: found part (with type) in3: in3,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.171224 wsdl: msg setSubscriberBindingRequest: found part (with type) in4: in4,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.171432 wsdl: msg setSubscriberBindingRequest: found part (with type) in5: in5,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.171641 wsdl: msg setSubscriberBindingRequest: found part (with type) in6: in6,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.171849 wsdl: msg setSubscriberBindingRequest: found part (with type) in7: in7,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.172056 wsdl: msg setSubscriberBindingRequest: found part (with type) in8: in8,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.172397 wsdl: msg deleteSubscriberResponse: found part (with type) deleteSubscriberReturn: deleteSubscriberReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.172744 wsdl: msg insertContentRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.172955 wsdl: msg insertContentRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.173163 wsdl: msg insertContentRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.173372 wsdl: msg insertContentRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.173581 wsdl: msg insertContentRequest: found part (with type) in4: in4,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.173791 wsdl: msg insertContentRequest: found part (with type) in5: in5,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.173999 wsdl: msg insertContentRequest: found part (with type) in6: in6,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.174338 wsdl: msg deleteContentResponse: found part (with type) deleteContentReturn: deleteContentReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.174678 wsdl: msg sendMailingResponse: found part (with type) sendMailingReturn: sendMailingReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.175017 wsdl: msg addSubscriberRequest: found part (with type) in0: in0,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.175279 wsdl: msg addSubscriberRequest: found part (with type) in1: in1,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.175491 wsdl: msg addSubscriberRequest: found part (with type) in2: in2,http://www.w3.org/2001/XMLSchema:boolean
2007-11-26 10:20:09.175701 wsdl: msg addSubscriberRequest: found part (with type) in3: in3,http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.175911 wsdl: msg addSubscriberRequest: found part (with type) in4: in4,http://www.w3.org/2001/XMLSchema:boolean
2007-11-26 10:20:09.176121 wsdl: msg addSubscriberRequest: found part (with type) in5: in5,http://192.168.10.192:8080/emm_webservice:StringArrayType
2007-11-26 10:20:09.176330 wsdl: msg addSubscriberRequest: found part (with type) in6: in6,http://192.168.10.192:8080/emm_webservice:StringArrayType
2007-11-26 10:20:09.176667 wsdl: msg findSubscriberResponse: found part (with type) findSubscriberReturn: findSubscriberReturn,http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.177013 wsdl: portType EmmWebService_Port operation: newEmailMailing
2007-11-26 10:20:09.177546 wsdl: portType EmmWebService_Port operation: newEmailMailingWithReply
2007-11-26 10:20:09.178066 wsdl: portType EmmWebService_Port operation: updateEmailMailing
2007-11-26 10:20:09.178596 wsdl: portType EmmWebService_Port operation: insertContent
2007-11-26 10:20:09.179109 wsdl: portType EmmWebService_Port operation: deleteContent
2007-11-26 10:20:09.179620 wsdl: portType EmmWebService_Port operation: sendMailing
2007-11-26 10:20:09.180202 wsdl: portType EmmWebService_Port operation: addSubscriber
2007-11-26 10:20:09.180727 wsdl: portType EmmWebService_Port operation: getSubscriber
2007-11-26 10:20:09.181238 wsdl: portType EmmWebService_Port operation: findSubscriber
2007-11-26 10:20:09.181750 wsdl: portType EmmWebService_Port operation: setSubscriberBinding
2007-11-26 10:20:09.182266 wsdl: portType EmmWebService_Port operation: deleteSubscriber
2007-11-26 10:20:09.182866 wsdl: current binding: emm_webserviceSoapBinding of portType: http://192.168.10.192:8080/emm_webservice:EmmWebService_Port
2007-11-26 10:20:09.183199 wsdl: current binding operation: newEmailMailing
2007-11-26 10:20:09.184139 wsdl: current binding operation: newEmailMailingWithReply
2007-11-26 10:20:09.185217 wsdl: current binding operation: updateEmailMailing
2007-11-26 10:20:09.186154 wsdl: current binding operation: insertContent
2007-11-26 10:20:09.187069 wsdl: current binding operation: deleteContent
2007-11-26 10:20:09.187987 wsdl: current binding operation: sendMailing
2007-11-26 10:20:09.188915 wsdl: current binding operation: addSubscriber
2007-11-26 10:20:09.189909 wsdl: current binding operation: getSubscriber
2007-11-26 10:20:09.190832 wsdl: current binding operation: findSubscriber
2007-11-26 10:20:09.191756 wsdl: current binding operation: setSubscriberBinding
2007-11-26 10:20:09.192688 wsdl: current binding operation: deleteSubscriber
2007-11-26 10:20:09.193671 wsdl: current service: EmmWebService_PortService
2007-11-26 10:20:09.193934 wsdl: current port: emm_webservice
2007-11-26 10:20:09.194309 wsdl: Parsing WSDL done
2007-11-26 10:20:09.194560 wsdl: post-parse data gathering for newEmailMailing
2007-11-26 10:20:09.194766 wsdl: post-parse data gathering for newEmailMailingWithReply
2007-11-26 10:20:09.194929 wsdl: post-parse data gathering for updateEmailMailing
2007-11-26 10:20:09.195085 wsdl: post-parse data gathering for insertContent
2007-11-26 10:20:09.195239 wsdl: post-parse data gathering for deleteContent
2007-11-26 10:20:09.195393 wsdl: post-parse data gathering for sendMailing
2007-11-26 10:20:09.195546 wsdl: post-parse data gathering for addSubscriber
2007-11-26 10:20:09.195701 wsdl: post-parse data gathering for getSubscriber
2007-11-26 10:20:09.195856 wsdl: post-parse data gathering for findSubscriber
2007-11-26 10:20:09.196010 wsdl: post-parse data gathering for setSubscriberBinding
2007-11-26 10:20:09.196165 wsdl: post-parse data gathering for deleteSubscriber
2007-11-26 10:20:09.196510 soapclient: checkWSDL
2007-11-26 10:20:09.196661 soapclient: got 11 operations from wsdl ws.wsdl for binding type soap
2007-11-26 10:20:09.196804 soapclient: found operation
opData=array(9) {
  ["name"]=>
  string(13) "getSubscriber"
  ["binding"]=>
  string(25) "emm_webserviceSoapBinding"
  ["endpoint"]=>
  string(41) "http://192.168.10.192:8080/emm_webservice"
  ["soapAction"]=>
  string(0) ""
  ["input"]=>
  array(5) {
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["namespace"]=>
    string(41) "http://192.168.10.192:8080/emm_webservice"
    ["use"]=>
    string(7) "encoded"
    ["message"]=>
    string(20) "getSubscriberRequest"
    ["parts"]=>
    array(3) {
      ["in0"]=>
      string(48) "http://schemas.xmlsoap.org/soap/encoding/:string"
      ["in1"]=>
      string(48) "http://schemas.xmlsoap.org/soap/encoding/:string"
      ["in2"]=>
      string(36) "http://www.w3.org/2001/XMLSchema:int"
    }
  }
  ["output"]=>
  array(5) {
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["namespace"]=>
    string(41) "http://192.168.10.192:8080/emm_webservice"
    ["use"]=>
    string(7) "encoded"
    ["message"]=>
    string(21) "getSubscriberResponse"
    ["parts"]=>
    array(1) {
      ["getSubscriberReturn"]=>
      string(56) "http://192.168.10.192:8080/emm_webservice:SubscriberData"
    }
  }
  ["style"]=>
  string(3) "rpc"
  ["transport"]=>
  string(36) "http://schemas.xmlsoap.org/soap/http"
  ["documentation"]=>
  string(0) ""
}
2007-11-26 10:20:09.197116 soapclient: serializing param array for WSDL operation getSubscriber
2007-11-26 10:20:09.197201 wsdl: in serializeRPCParameters: operation=getSubscriber, direction=input, XMLSchemaVersion=http://www.w3.org/2001/XMLSchema, bindingType=soap
parameters=array(3) {
  [0]=>
  string(5) "marco"
  [1]=>
  string(5) "marco"
  [2]=>
  int(2)
}
2007-11-26 10:20:09.197351 wsdl: in serializeRPCParameters: opData:
array(9) {
  ["name"]=>
  string(13) "getSubscriber"
  ["binding"]=>
  string(25) "emm_webserviceSoapBinding"
  ["endpoint"]=>
  string(41) "http://192.168.10.192:8080/emm_webservice"
  ["soapAction"]=>
  string(0) ""
  ["input"]=>
  array(5) {
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["namespace"]=>
    string(41) "http://192.168.10.192:8080/emm_webservice"
    ["use"]=>
    string(7) "encoded"
    ["message"]=>
    string(20) "getSubscriberRequest"
    ["parts"]=>
    array(3) {
      ["in0"]=>
      string(48) "http://schemas.xmlsoap.org/soap/encoding/:string"
      ["in1"]=>
      string(48) "http://schemas.xmlsoap.org/soap/encoding/:string"
      ["in2"]=>
      string(36) "http://www.w3.org/2001/XMLSchema:int"
    }
  }
  ["output"]=>
  array(5) {
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["namespace"]=>
    string(41) "http://192.168.10.192:8080/emm_webservice"
    ["use"]=>
    string(7) "encoded"
    ["message"]=>
    string(21) "getSubscriberResponse"
    ["parts"]=>
    array(1) {
      ["getSubscriberReturn"]=>
      string(56) "http://192.168.10.192:8080/emm_webservice:SubscriberData"
    }
  }
  ["style"]=>
  string(3) "rpc"
  ["transport"]=>
  string(36) "http://schemas.xmlsoap.org/soap/http"
  ["documentation"]=>
  string(0) ""
}
2007-11-26 10:20:09.197570 wsdl: have 3 part(s) to serialize using rpc/encoded
2007-11-26 10:20:09.197665 wsdl: have 3 parameter(s) provided as arraySimple to serialize
2007-11-26 10:20:09.197742 wsdl: serializing part in0 of type http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.197820 wsdl: calling serializeType w/indexed param
2007-11-26 10:20:09.197905 wsdl: in serializeType: name=in0, type=http://schemas.xmlsoap.org/soap/encoding/:string, use=encoded, encodingStyle=, unqualified=qualified
value=string(5) "marco"
2007-11-26 10:20:09.198025 wsdl: in serializeType: got a prefixed type: string, http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.198105 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type
2007-11-26 10:20:09.198222 wsdl: in getTypeDef: type=string, ns=http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.198320 wsdl: in getTypeDef: do not have schema for namespace http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.198424 wsdl: in serializeType: returning: <in0 xsi:type="SOAP-ENC:string">marco</in0>
2007-11-26 10:20:09.198497 wsdl: serializing part in1 of type http://schemas.xmlsoap.org/soap/encoding/:string
2007-11-26 10:20:09.198566 wsdl: calling serializeType w/indexed param
2007-11-26 10:20:09.198641 wsdl: in serializeType: name=in1, type=http://schemas.xmlsoap.org/soap/encoding/:string, use=encoded, encodingStyle=, unqualified=qualified
value=string(5) "marco"
2007-11-26 10:20:09.198743 wsdl: in serializeType: got a prefixed type: string, http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.198813 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type
2007-11-26 10:20:09.198908 wsdl: in getTypeDef: type=string, ns=http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.198989 wsdl: in getTypeDef: do not have schema for namespace http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.199086 wsdl: in serializeType: returning: <in1 xsi:type="SOAP-ENC:string">marco</in1>
2007-11-26 10:20:09.199157 wsdl: serializing part in2 of type http://www.w3.org/2001/XMLSchema:int
2007-11-26 10:20:09.199226 wsdl: calling serializeType w/indexed param
2007-11-26 10:20:09.199301 wsdl: in serializeType: name=in2, type=http://www.w3.org/2001/XMLSchema:int, use=encoded, encodingStyle=, unqualified=qualified
value=int(2)
2007-11-26 10:20:09.199418 wsdl: in serializeType: got a prefixed type: int, http://www.w3.org/2001/XMLSchema
2007-11-26 10:20:09.199489 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type
2007-11-26 10:20:09.199563 wsdl: in getTypeDef: type=int, ns=http://www.w3.org/2001/XMLSchema
2007-11-26 10:20:09.199645 wsdl: in getTypeDef: do not have schema for namespace http://www.w3.org/2001/XMLSchema
2007-11-26 10:20:09.199739 wsdl: in serializeType: returning: <in2 xsi:type="xsd:int">2</in2>
2007-11-26 10:20:09.199807 wsdl: serializeRPCParameters returning: <in0 xsi:type="SOAP-ENC:string">marco</in0><in1 xsi:type="SOAP-ENC:string">marco</in1><in2 xsi:type="xsd:int">2</in2>
2007-11-26 10:20:09.200009 soapclient: wrapping RPC request with encoded method element
2007-11-26 10:20:09.200122 soapclient: In serializeEnvelope length=213 body (max 1000 characters)=<impl:getSubscriber xmlns:impl="http://192.168.10.192:8080/emm_webservice"><in0 xsi:type="SOAP-ENC:string">marco</in0><in1 xsi:type="SOAP-ENC:string">marco</in1><in2 xsi:type="xsd:int">2</in2></impl:getSubscriber> style=rpc use=encoded encodingStyle=http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.200253 soapclient: headers:
bool(false)
2007-11-26 10:20:09.200350 soapclient: namespaces:
array(3) {
  ["impl"]=>
  string(41) "http://192.168.10.192:8080/emm_webservice"
  ["SOAP-ENC"]=>
  string(41) "http://schemas.xmlsoap.org/soap/encoding/"
  ["xsd"]=>
  string(32) "http://www.w3.org/2001/XMLSchema"
}
2007-11-26 10:20:09.200527 soapclient: endpoint=http://192.168.10.192:8080/emm_webservice, soapAction=, namespace=http://192.168.10.192:8080/emm_webservice, style=rpc, use=encoded, encodingStyle=http://schemas.xmlsoap.org/soap/encoding/
2007-11-26 10:20:09.200601 soapclient: SOAP message length=665 contents (max 1000 bytes)=<?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://192.168.10.192:8080/emm_webservice"><SOAP-ENV:Body><impl:getSubscriber xmlns:impl="http://192.168.10.192:8080/emm_webservice"><in0 xsi:type="SOAP-ENC:string">marco</in0><in1 xsi:type="SOAP-ENC:string">marco</in1><in2 xsi:type="xsd:int">2</in2></impl:getSubscriber></SOAP-ENV:Body></SOAP-ENV:Envelope>
2007-11-26 10:20:09.200736 soapclient: transporting via HTTP
2007-11-26 10:20:09.201710 soapclient: sending message, length=665
2007-11-26 10:20:09.200946 soap_transport_http: ctor url=http://192.168.10.192:8080/emm_webservice use_curl= curl_options:
array(0) {
}
2007-11-26 10:20:09.201068 soap_transport_http: parsed URL scheme = http
2007-11-26 10:20:09.201138 soap_transport_http: parsed URL host = 192.168.10.192
2007-11-26 10:20:09.201204 soap_transport_http: parsed URL port = 8080
2007-11-26 10:20:09.201267 soap_transport_http: parsed URL path = /emm_webservice
2007-11-26 10:20:09.201349 soap_transport_http: set header Host: 192.168.10.192:8080
2007-11-26 10:20:09.201485 soap_transport_http: set header User-Agent: NuSOAP/0.7.3 (1.114)
2007-11-26 10:20:09.201571 soap_transport_http: set header Content-Type: text/xml; charset=ISO-8859-1
2007-11-26 10:20:09.201641 soap_transport_http: set header SOAPAction: ""
2007-11-26 10:20:09.201799 soap_transport_http: entered send() with data of length: 665
2007-11-26 10:20:09.201889 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host 192.168.10.192, port 8080
2007-11-26 10:20:09.201987 soap_transport_http: calling fsockopen with host 192.168.10.192 connection_timeout 0
2007-11-26 10:20:09.202411 soap_transport_http: set response timeout to 30
2007-11-26 10:20:09.202483 soap_transport_http: socket connected
2007-11-26 10:20:09.202593 soap_transport_http: set header Content-Length: 665
2007-11-26 10:20:09.202664 soap_transport_http: HTTP request: POST /emm_webservice HTTP/1.0
2007-11-26 10:20:09.202735 soap_transport_http: HTTP header: Host: 192.168.10.192:8080
2007-11-26 10:20:09.202802 soap_transport_http: HTTP header: User-Agent: NuSOAP/0.7.3 (1.114)
2007-11-26 10:20:09.202867 soap_transport_http: HTTP header: Content-Type: text/xml; charset=ISO-8859-1
2007-11-26 10:20:09.202940 soap_transport_http: HTTP header: SOAPAction: ""
2007-11-26 10:20:09.203006 soap_transport_http: HTTP header: Content-Length: 665
2007-11-26 10:20:09.203123 soap_transport_http: wrote data to socket, length = 840
2007-11-26 10:20:09.229902 soap_transport_http: read line of 36 bytes: HTTP/1.0 500 Internal Server Error
2007-11-26 10:20:09.230003 soap_transport_http: read line of 22 bytes: Server: Resin/3.0.19
2007-11-26 10:20:09.230103 soap_transport_http: read line of 44 bytes: Content-Type: text/xml; charset=iso-8859-1
2007-11-26 10:20:09.230186 soap_transport_http: read line of 37 bytes: Date: Mon, 26 Nov 2007 09:13:25 GMT
2007-11-26 10:20:09.230267 soap_transport_http: read line of 2 bytes: 
2007-11-26 10:20:09.230411 soap_transport_http: found end of headers after length 141
2007-11-26 10:20:09.230562 soap_transport_http: want to read content to EOF
2007-11-26 10:20:09.230680 soap_transport_http: read buffer of 614 bytes
2007-11-26 10:20:09.230758 soap_transport_http: read to EOF
2007-11-26 10:20:09.230821 soap_transport_http: read body of length 614
2007-11-26 10:20:09.230887 soap_transport_http: received a total of 755 bytes of data from server
2007-11-26 10:20:09.231008 soap_transport_http: closed socket
2007-11-26 10:20:09.231134 soap_transport_http: No Content-Encoding header
2007-11-26 10:20:09.231212 soap_transport_http: end of send()
2007-11-26 10:20:09.231367 soapclient: got response, length=614 type=text/xml; charset=iso-8859-1
2007-11-26 10:20:09.231449 soapclient: Entering parseResponse() for data of length 614 headers:
array(3) {
  ["server"]=>
  string(12) "Resin/3.0.19"
  ["content-type"]=>
  string(28) "text/xml; charset=iso-8859-1"
  ["date"]=>
  string(29) "Mon, 26 Nov 2007 09:13:25 GMT"
}
2007-11-26 10:20:09.231590 soapclient: Got response encoding: iso-8859-1
2007-11-26 10:20:09.231774 soapclient: Use encoding: ISO-8859-1 when creating nusoap_parser
2007-11-26 10:20:09.232073 nusoap_parser: Charset from HTTP Content-Type matches encoding from XML declaration
2007-11-26 10:20:09.232152 nusoap_parser: Entering nusoap_parser(), length=614, encoding=ISO-8859-1
2007-11-26 10:20:09.232845 nusoap_parser: found root struct Fault, pos 2
2007-11-26 10:20:09.233579 nusoap_parser: in buildVal() for detail(pos 5) of type 
2007-11-26 10:20:09.233668 nusoap_parser: in buildVal, there are children
2007-11-26 10:20:09.233754 nusoap_parser: in buildVal, adding Java Vector or generic compound type detail
2007-11-26 10:20:09.233849 nusoap_parser: in buildVal, return:
array(1) {
  ["hostname"]=>
  &string(8) "Atlantis"
}
2007-11-26 10:20:09.234031 nusoap_parser: in buildVal() for Fault(pos 2) of type struct
2007-11-26 10:20:09.234094 nusoap_parser: in buildVal, there are children
2007-11-26 10:20:09.234166 nusoap_parser: in buildVal, adding Java Vector or generic compound type Fault
2007-11-26 10:20:09.234261 nusoap_parser: in buildVal, return:
array(3) {
  ["faultcode"]=>
  &string(20) "ns1:Server.NoService"
  ["faultstring"]=>
  &string(81) "The AXIS engine could not find a target service to invoke!  targetService is null"
  ["detail"]=>
  &array(1) {
    ["hostname"]=>
    &string(8) "Atlantis"
  }
}
2007-11-26 10:20:09.234473 nusoap_parser: parsed successfully, found root struct: 2 of name Fault
2007-11-26 10:20:09.234725 soapclient: sent message successfully and got a(n) array
return=array(3) {
  ["faultcode"]=>
  string(20) "ns1:Server.NoService"
  ["faultstring"]=>
  string(81) "The AXIS engine could not find a target service to invoke!  targetService is null"
  ["detail"]=>
  array(1) {
    ["hostname"]=>
    string(8) "Atlantis"
  }
}
2007-11-26 10:20:09.234851 soapclient: got fault
2007-11-26 10:20:09.234937 soapclient: faultcode = ns1:Server.NoService<br>
2007-11-26 10:20:09.235004 soapclient: faultstring = The AXIS engine could not find a target service to invoke!  targetService is null<br>
2007-11-26 10:20:09.235071 soapclient: detail = Array<br>
duke
Posts: 8
Joined: Tue Nov 27, 2007 4:35 pm

Post by duke »

Same problem here.
Any suggestions?

Kind regards,
Michael
jukkis
Posts: 4
Joined: Mon Dec 17, 2007 3:31 pm

Post by jukkis »

mhuber84
Posts: 15
Joined: Tue Oct 30, 2007 12:06 pm

Post by mhuber84 »

thanks, that's it. now it works.
Post Reply