|
Re: problems with wsdl and function call: msg#00162php.nusoap.general
Hi all, I'm still having trouble with this soap call below. I've included a snippet of my latest code and the output. Thanks in advance for any help/suggestions. Bod Cod Snippet: $soap_client = new soapclient('https://prodapi.geotrust.com:443/webtrust/order.jws'); $arr_order_request_header['ProductCode'] = 'QUICKSSLPREMIUM'; $arr_order_parameters = array('ValidityPeriod' => 12, 'ServerCount' => 1, 'CSR' => $_REQUEST['csr'], 'WebServerType' => 'Other'); $arr_admin_contact = $arr_tech_contact = $arr_billing_contact = array('FirstName' => 'Admin', 'LastName' => 'System', 'Phone' => '555-555-5555', 'Email' => 'blah@xxxxxxxx'); $arr_request = array('OrderRequestHeader' => $arr_order_request_header, 'OrderParameters' => $arr_order_parameters, 'AdminContact' => $arr_admin_contact, 'TechContact' => $arr_tech_contact, 'BillingContact' => $arr_billing_contact, 'ApproverEmail' => $_REQUEST['approver_email']); $order_request_header = new soapval('OrderRequestHeader', 'ord:QuickOrderRequest', $arr_order_request_header); $order_parameters = new soapval('OrderParameters', 'ord:orderParameters', $arr_order_parameters); $admin_contact = new soapval('AdminContact', 'ord:Contact', $arr_admin_contact); $tech_contact = new soapval('TechContact', 'ord:Contact', $arr_tech_contact); $billing_contact = new soapval('BillingContact', 'ord:Contact', $arr_billing_contact); $arr_request = array('OrderRequestHeader' => $order_request_header, 'OrderParameters' => $order_parameters, 'AdminContact' => $admin_contact, 'TechContact' => $tech_contact, 'BillingContact' => $billing_contact, 'ApproverEmail' => $_REQUEST['approver_email']); $request = new soapval('Request', 'ord:QuickOrderRequest', $arr_request); $params = array('Request', $request); print "<H1>ARRAY</H1>"; print '<pre>'; print_r($params); print '</pre>'; $arr_result = $soap_client->call('QuickOrder', $params, 'http://api.geotrust.com/webtrust/order', 'http://api.geotrust.com/webtrust/order/QuickOrder'); print "<H1>REQUEST</H1>"; print '<pre>' . htmlspecialchars($soap_client->request, ENT_QUOTES) . '</pre>'; print "<H1>DEBUG</H1>"; print '<pre>' . htmlspecialchars($soap_client->debug_str, ENT_QUOTES) . '</pre>'; print "<H1>RESPONSE</H1>"; print '<pre>' . htmlspecialchars($soap_client->response, ENT_QUOTES) . '</pre>'; Output: ARRAY Array ( [0] => Request [1] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => Request [value] => Array ( [OrderRequestHeader] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => OrderRequestHeader [value] => Array ( [PartnerCode] => xxxxx [ProductCode] => QUICKSSLPREMIUM [AuthToken] => Array ( [UserName] => xxxxx [Password] => xxxxx ) [ReplayToken] => none [UseReplayToken] => ) [type] => QuickOrderRequest [element_ns] => [type_ns] => [attributes] => ) [OrderParameters] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => OrderParameters [value] => Array ( [ValidityPeriod] => 12 [ServerCount] => 1 [CSR] => long CSR here [WebServerType] => Other ) [type] => orderParameters [element_ns] => [type_ns] => [attributes] => ) [AdminContact] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => AdminContact [value] => Array ( [FirstName] => Admin [LastName] => System [Phone] => 555-555-5555 [Email] => blah@xxxxxxxx ) [type] => Contact [element_ns] => [type_ns] => [attributes] => ) [TechContact] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => TechContact [value] => Array ( [FirstName] => Admin [LastName] => System [Phone] => 555-555-5555 [Email] => blah@xxxxxxxx ) [type] => Contact [element_ns] => [type_ns] => [attributes] => ) [BillingContact] => soapval Object ( [title] => NuSOAP [version] => 0.6.7 [revision] => $Revision: 1.3 $ [error_str] => [debug_str] => [charencoding] => 1 [XMLSchemaVersion] => http://www.w3.org/2001/XMLSchema [soap_defencoding] => ISO-8859-1 [namespaces] => Array ( [SOAP-ENV] => http://schemas.xmlsoap.org/soap/envelope/ [xsd] => http://www.w3.org/2001/XMLSchema [xsi] => http://www.w3.org/2001/XMLSchema-instance [SOAP-ENC] => http://schemas.xmlsoap.org/soap/encoding/ [si] => http://soapinterop.org/xsd ) [usedNamespaces] => Array ( ) [typemap] => Array ( [http://www.w3.org/2001/XMLSchema] => Array ( [string] => string [boolean] => boolean [float] => double [double] => double [decimal] => double [duration] => [dateTime] => string [time] => string [date] => string [gYearMonth] => [gYear] => [gMonthDay] => [gDay] => [gMonth] => [hexBinary] => string [base64Binary] => string [normalizedString] => string [token] => string [language] => [NMTOKEN] => [NMTOKENS] => [Name] => [NCName] => [ID] => [IDREF] => [IDREFS] => [ENTITY] => [ENTITIES] => [integer] => integer [nonPositiveInteger] => integer [negativeInteger] => integer [long] => integer [int] => integer [short] => integer [byte] => integer [nonNegativeInteger] => integer [unsignedLong] => [unsignedInt] => [unsignedShort] => [unsignedByte] => [positiveInteger] => ) [http://www.w3.org/1999/XMLSchema] => Array ( [i4] => [int] => integer [boolean] => boolean [string] => string [double] => double [float] => double [dateTime] => string [timeInstant] => string [base64Binary] => string [base64] => string [ur-type] => array ) [http://soapinterop.org/xsd] => Array ( [SOAPStruct] => struct ) [http://schemas.xmlsoap.org/soap/encoding/] => Array ( [base64] => string [array] => array [Array] => array ) [http://xml.apache.org/xml-soap] => Array ( [0] => Map ) ) [xmlEntities] => Array ( [quot] => " [amp] => & [lt] => < [gt] => > [apos] => ' ) [name] => BillingContact [value] => Array ( [FirstName] => Admin [LastName] => System [Phone] => 555-555-5555 [Email] => blah@xxxxxxxx ) [type] => Contact [element_ns] => [type_ns] => [attributes] => ) [ApproverEmail] => blah@xxxxxxxx ) [type] => QuickOrderRequest [element_ns] => [type_ns] => [attributes] => ) ) REQUEST POST /webtrust/order.jws HTTP/1.0 User-Agent: NuSOAP/0.6.7 (1.3) Host: prodapi.geotrust.com:443 Content-Type: text/xml; charset=ISO-8859-1 SOAPAction: "http://api.geotrust.com/webtrust/order/QuickOrder" Content-Length: 2620 <?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:si="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:QuickOrder xmlns:ns1="http://api.geotrust.com/webtrust/order"><soapVal xsi:type="xsd:string">Request</soapVal><Request><OrderRequestHeader><PartnerCode xsi:type="xsd:string">xxxxx</PartnerCode><ProductCode xsi:type="xsd:string">QUICKSSLPREMIUM</ProductCode><AuthToken><UserName xsi:type="xsd:string">xxxxx</UserName><Password xsi:type="xsd:string">xxxxx</Password></AuthToken><ReplayToken xsi:type="xsd:string">none</ReplayToken><UseReplayToken xsi:type="xsd:boolean">0</UseReplayToken></OrderRequestHeader><OrderParameters><ValidityPeriod xsi:type="xsd:int">12</ValidityPeriod><ServerCount xsi:type="xsd:int">1</ServerCount><CSR xsi:type="xsd:string">long CSR here</CSR><WebServerType xsi:type="xsd:string">Other</WebServerType></OrderParameters><AdminContact><FirstName xsi:type="xsd:string">Admin</FirstName><LastName xsi:type="xsd:string">System</LastName><Phone xsi:type="xsd:string">555-555-5555</Phone><Email xsi:type="xsd:string">blah@xxxxxxxx</Email></AdminContact><TechContact><FirstName xsi:type="xsd:string">Admin</FirstName><LastName xsi:type="xsd:string">System</LastName><Phone xsi:type="xsd:string">555-555-5555</Phone><Email xsi:type="xsd:string">blah@xxxxxxxx</Email></TechContact><BillingContact><FirstName xsi:type="xsd:string">Admin</FirstName><LastName xsi:type="xsd:string">System</LastName><Phone xsi:type="xsd:string">555-555-5555</Phone><Email xsi:type="xsd:string">blah@xxxxxxxx</Email></BillingContact><ApproverEmail xsi:type="xsd:string">blah@xxxxxxxx</ApproverEmail></Request></ns1:QuickOrder></SOAP-ENV:Body></SOAP-ENV:Envelope> DEBUG soapclient: call: QuickOrder, Array, http://api.geotrust.com/webtrust/order, http://api.geotrust.com/webtrust/order/QuickOrder, , rpc, encoded; endpointType: soapclient: serializing param array for operation QuickOrder soapclient: in serialize_val: Request, 0, , , , , encoded soapclient: wrapping RPC request with encoded method element soapclient: endpoint: https://prodapi.geotrust.com:443/webtrust/order.jws, soapAction: http://api.geotrust.com/webtrust/order/QuickOrder, namespace: http://api.geotrust.com/webtrust/order, style: rpc, use: encoded soapclient: SOAP message length: 2620 contents: <?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:si="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:QuickOrder xmlns:ns1="http://api.geotrust.com/webtrust/order"><soapVal xsi:type="xsd:string">Request</soapVal><Request><OrderRequestHeader><PartnerCode xsi:type="xsd:string">xxxxx</PartnerCode><ProductCode xsi:type="xsd:string">QUICKSSLPREMIUM</ProductCode><AuthToken><UserName xsi:type="xsd:string">xxxxx</UserName><Password xsi:type="xsd:string">xxxxx</Password></AuthToken><ReplayToken xsi:type="xsd:string">none</ReplayToken><UseReplayToken xsi:type="xsd:boolean">0</UseReplayToken></OrderRequestHeader><OrderParameters><ValidityPeriod xsi:type="xsd:int">12</ValidityPeriod><Ser soapclient: transporting via HTTP soapclient: sending message, length: 2620 soapclient: transport debug data... soap_transport_http: scheme = https soap_transport_http: host = prodapi.geotrust.com soap_transport_http: port = 443 soap_transport_http: path = /webtrust/order.jws soap_transport_http: entered send() with data of length: 2620 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme https, host prodapi.geotrust.com, port 443 soap_transport_http: connect using https soap_transport_http: cURL connection set up soap_transport_http: set cURL payload soap_transport_http: send and receive with cURL soap_transport_http: No cURL error, closing cURL soap_transport_http: found proper separation of headers and document soap_transport_http: cleaned data, stringlen: 853 soap_transport_http: end of send() soapclient: got response, length: 853 type: text/xml; charset=UTF-8 soapclient: Entering parseResponse() for data of length 853 and type text/xml; charset=UTF-8 soapclient: Got response encoding: UTF-8 soapclient: Use encoding: UTF-8 when creating soap_parser soapclient: soap_parser: Entering soap_parser(), length=853, encoding=UTF-8 soap_parser: found root struct Fault, pos 2 soap_parser: inside buildVal() for detail(pos 5) of type soap_parser: inside buildVal() for Fault(pos 2) of type struct soap_parser: parsed successfully, found root struct: 2 of name Fault soapclient: sent message successfully and got a(n) array back soapclient: got fault soapclient: faultcode = fc:JWSError<br> soapclient: faultstring = Error deserializing arguments. Unrecognized element soapVal - expected Request@http://api.geotrust.com/webtrust/order <br> soapclient: detail = Array<br> RESPONSE HTTP/1.1 500 Internal Server Error Date: Sun, 30 May 2004 16:58:39 GMT Pragma: no-cache Server: WebLogic Server 8.1 SP1 Fri Jun 20 23:06:40 PDT 2003 271009 with Content-Length: 853 Content-Type: text/xml; charset=UTF-8 Expires: Thu, 01 Jan 1970 00:00:00 GMT Cache-Control: no-cache <?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SOAP-ENV:Body> <SOAP-ENV:Fault> <faultcode xmlns:fc='http://www.bea.com/2003/04/jwFaultCode/'>fc:JWSError</faultcode> <faultstring> Error deserializing arguments. Unrecognized element soapVal - expected Request@http://api.geotrust.com/webtrust/order </faultstring> <detail> <jwErr:jwErrorDetail xmlns:jwErr='http://www.bea.com/2002/04/jwErrorDetail/'> Error deserializing arguments. Unrecognized element soapVal - expected Request@http://api.geotrust.com/webtrust/order </jwErr:jwErrorDetail> </detail> </SOAP-ENV:Fault> </SOAP-ENV:Body> </SOAP-ENV:Envelope> __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ ------------------------------------------------------- This SF.Net email is sponsored by: Oracle 10g Get certified on the hottest thing ever to hit the market... Oracle 10g. Take an Oracle 10g class now, and we'll give you the exam FREE. http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click |
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: doc/lit request parameters............?: 00162, Fred B |
|---|---|
| Next by Date: | NuSoap and the Atom API: 00162, Pablo Fischer |
| Previous by Thread: | Re: problems with wsdl and function calli: 00162, Scott Nichol |
| Next by Thread: | Quick Question...: 00162, Dennis Morgan |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |