[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Consuming DHL Webservices



   Hi Scott,
   Many thanks for your quick answer  (and for the great tools you
   provide).
   The SoapAction that I have tried  (urn:createShipmentDD) is the one
   that is displayed in the SoapUI request  :
   POST [1]http://test-intraship.dhl.com/ws/1_0/de/ISService HTTP/1.1
   Accept-Encoding: gzip,deflate
   Content-Type: text/xml;charset=UTF-8
   SOAPAction: "urn:createShipmentDD"
   I have tried in different ways :
'urn:createShipmentDD',   '[2]http://test-intraship.dhl.com/ws/1_0/de/ISService/
createShipmentDD' ,  'createShipmentDD'

   To make things easier, I send :
   - DHL's wdsl
   - a createshipmentDD request that works with SoapUI  and the response
   - the httpapi_debug.txt file that results when I run my program
   Again, thanks a lot for your help.
   Pascal
   Le 08/06/2012 00:18, Scott Klement a écrit :

Hi Pascal,

Surely if SoapUI is working, you can look at the SoapAction that it is
using, and send the same thing via HTTPAPI?

Make sure you're also updating the URI in addition to the SoapAction.
I'm not familiar with DHL's web service, but most sites that I use
specify both a different URI and a different SoapAction in order to
access a different operation.

If that doesn't work, please provide the WSDL file you're working with
(I don't use DHL, so I don't have access to it, myself) and an
httpapi_debug.txt file so I can compare them and look for something that
doesn't match.

Thanks!




On 6/7/2012 4:32 AM, Pascal Kirscher wrote:

    Hello,
    I am new to webservices.  I need to use DHL webservices, in order to
    create shipments, get labels, etc...
    So, first I have tried some simple webservices, like [1]stockquote,
    [2]currency convertor (with IBM's wdsl2rpg and with Scott's HTTPAPI),
    and this worked fine with both the tools.
    With DHL WebService, I first tried the GetVersion opération, and this
    also was successful.
    But, I am now blocked with the other operation  (createShipmentDD,
    getLabelDD) :  I have checked my requests using SoapUI, and this works
    fine, but not when I try to consume the webservice using HTTPAPI in a
    RPG program
    I guess that the problem comes from the parameters when I call the
    http_url_post_xml function, and especially the last one, the
    SOAPaction.
    Based on the values that I retrieve from SoapUI, hereafter, the
    beginning of the request :
    POST [3][3]http://test-intraship.dhl.com/ws/1_0/de/ISService HTTP/1.1
    Accept-Encoding: gzip,deflate
    Content-Type: text/xml;charset=UTF-8
    SOAPAction: "urn:createShipmentDD"
    I have tried to call it this way :
    rc = http_url_post_xml(
    '[4][4]http://test-intraship.dhl.com/ws/1_0/de/ISService'
         : %addr(SOAP) + 2
         : %len(SOAP)
         : *NULL
         : %paddr(Incoming)
         : %addr(value)
         : HTTP_TIMEOUT
         : HTTP_USERAGENT
         : 'application/xml'
         : 'urn:createShipmentDD');

    I have tried different values ('urn:createShipmentDD',
    '[5][5]http://test-intraship.dhl.com/ws/1_0/de/ISService/createShipmentDD'
    )
    but each time, I get the result of the GetVersion operation (which must
    be the default action I suppose)
    I would be very grateful if someone could help me ...
    Pascal



-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
[6]http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------

References

   1. http://test-intraship.dhl.com/ws/1_0/de/ISService
   2. http://test-intraship.dhl.com/ws/1_0/de/ISService/createShipmentDD
   3. http://test-intraship.dhl.com/ws/1_0/de/ISService
   4. http://test-intraship.dhl.com/ws/1_0/de/ISService
   5. http://test-intraship.dhl.com/ws/1_0/de/ISService/createShipmentDD
   6. http://www.scottklement.com/mailman/listinfo/ftpapi
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"; xmlns:cis="http://dhl.de/webservice/cisbase"; xmlns:de="http://de.ws.intraship";>                                             
<soap:Header>                                                                                                                                                                                   
<cis:Authentification>                                                                                                                                                                          
<cis:user>Sterling</cis:user>                                                                                                                                                                   
<cis:signature>Online24</cis:signature>                                                                                                                                                         
<cis:type>0</cis:type>                                                                                                                                                                          
</cis:Authentification>                                                                                                                                                                         
</soap:Header>                                                                                                                                                                                  
<soap:Body>                                                                                                                                                                                     
<de:CreateShipmentDDRequest>                                                                                                                                                                    
<cis:Version>                                                                                                                                                                                   
<cis:majorRelease>1</cis:majorRelease>                                                                                                                                                          
<cis:minorRelease>0</cis:minorRelease>                                                                                                                                                          
</cis:Version>                                                                                                                                                                                  
<ShipmentOrder>                                                                                                                                                                                 
<SequenceNumber>1</SequenceNumber>                                                                                                                                                              
<Shipment>                                                                                                                                                                                      
<ShipmentDetails>                                                                                                                                                                               
<ProductCode>EPN</ProductCode>                                                                                                                                                                  
<ShipmentDate>2012-06-08</ShipmentDate>                                                                                                                                                         
<cis:EKP>5000000005</cis:EKP>                                                                                                                                                                   
<Attendance>                                                                                                                                                                                    
<cis:partnerID>01</cis:partnerID>                                                                                                                                                               
</Attendance>                                                                                                                                                                                   
<ShipmentItem>                                                                                                                                                                                  
<WeightInKG></WeightInKG>                                                                                                                                                                       
<LengthInCM>0</LengthInCM>                                                                                                                                                                      
<WidthInCM>0</WidthInCM>                                                                                                                                                                        
<HeightInCM>0</HeightInCM>                                                                                                                                                                      
<PackageType></PackageType>                                                                                                                                                                     
</ShipmentItem>                                                                                                                                                                                 
</ShipmentDetails>                                                                                                                                                                              
<Shipper>                                                                                                                                                                                       
<Company>                                                                                                                                                                                       
<cis:Company>                                                                                                                                                                                   
<cis:name1>SES-Sterling GmbH</cis:name1>                                                                                                                                                        
</cis:Company>                                                                                                                                                                                  
</Company>                                                                                                                                                                                      
<Address>                                                                                                                                                                                       
<cis:streetName>Alte Strasse</cis:streetName>                                                                                                                                                   
<cis:streetNumber>22</cis:streetNumber>                                                                                                                                                         
<cis:Zip>                                                                                                                                                                                       
<cis:germany>79576</cis:germany>                                                                                                                                                                
</cis:Zip>                                                                                                                                                                                      
<cis:city>WEIL/RHEIN</cis:city>                                                                                                                                                                 
<cis:Origin>                                                                                                                                                                                    
<cis:countryISOCode>DE</cis:countryISOCode>                                                                                                                                                     
</cis:Origin>                                                                                                                                                                                   
</Address>                                                                                                                                                                                      
<Communication>                                                                                                                                                                                 
<cis:email>ses.de@xxxxxxxxxxxxxxxx</cis:email>                                                                                                                                                  
<cis:contactPerson>Verkaufsabteilung</cis:contactPerson>                                                                                                                                        
</Communication>                                                                                                                                                                                
</Shipper>                                                                                                                                                                                      
<Receiver>                                                                                                                                                                                      
<Company>                                                                                                                                                                                       
<cis:Company>                                                                                                                                                                                   
<cis:name1>Eckert   Graf GmbH</cis:name1>                                                                                                                                                       
<cis:name2></cis:name2>                                                                                                                                                                         
</cis:Company>                                                                                                                                                                                  
</Company>                                                                                                                                                                                      
<Address>                                                                                                                                                                                       
<cis:streetName>Maybachstr. 1</cis:streetName>                                                                                                                                                  
<cis:streetNumber></cis:streetNumber>                                                                                                                                                           
<cis:Zip>                                                                                                                                                                                       
<cis:other>78244</cis:other>                                                                                                                                                                    
</cis:Zip>                                                                                                                                                                                      
<cis:city>Gottmadingen</cis:city>                                                                                                                                                               
<cis:Origin>                                                                                                                                                                                    
<cis:countryISOCode>DE</cis:countryISOCode>                                                                                                                                                     
</cis:Origin>                                                                                                                                                                                   
</Address>                                                                                                                                                                                      
<Communication/>                                                                                                                                                                                
</Receiver>                                                                                                                                                                                     
</Shipment>                                                                                                                                                                                     
</ShipmentOrder>                                                                                                                                                                                
</de:CreateShipmentDDRequest>                                                                                                                                                                   
</soap:Body>                                                                                                                                                                                    
</soap:Envelope>                                                                                                                                                                                
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope";>
   <soapenv:Body>
      <ns4:CreateShipmentResponse xmlns:ns4="http://de.ws.intraship";>
         <Version xmlns="http://dhl.de/webservice/cisbase";>
            <majorRelease>1</majorRelease>
            <minorRelease>0</minorRelease>
            <build>14</build>
         </Version>
         <status>
            <StatusCode>0</StatusCode>
            <StatusMessage>ok</StatusMessage>
         </status>
         <CreationState>
            <StatusCode>0</StatusCode>
            <StatusMessage>ok</StatusMessage>
            <StatusMessage>Warning: The address could not be validated correctly. Please correct the street name, because this is unknown for entered post code or written incorrect. This could lead to delays within shipment delivery advice ([NON_CODABLE])</StatusMessage>
            <SequenceNumber>1</SequenceNumber>
            <ShipmentNumber>
               <ns1:shipmentNumber xmlns:ns1="http://dhl.de/webservice/cisbase";>00340433836001995356</ns1:shipmentNumber>
            </ShipmentNumber>
            <PieceInformation>
               <PieceNumber>
                  <ns1:licensePlate xmlns:ns1="http://dhl.de/webservice/cisbase";>00340433836001995356</ns1:licensePlate>
               </PieceNumber>
            </PieceInformation>
            <Labelurl>http://test-intraship.dhl.com:80/cartridge.591/WSPrint?code=D42C6C0EC1132943D5D35B83A65AD9942C27BC64D9CCA5DC</Labelurl>
         </CreationState>
      </ns4:CreateShipmentResponse>
   </soapenv:Body>
</soapenv:Envelope>
<?xml version="1.0" encoding="UTF-8"?>
<!--

Version: 0.07

Date: 09.09.2011

History:
    v0.02 + Service getVersion added
    v0.03 + Documentation added.
    v0.04 + namespace attributes in body elements deleted
    v0.05 + Service GetExportDoc added
    v0.06 + AuthentificationHeaderMessage extended by DeveloperAuthentification part
    v0.07 + <wsdl:input> sections extended by explicit reference to devheader part of the AuthentificationHeaderMessage element
-->
<wsdl:definitions targetNamespace="http://de.ws.intrashipservice"; xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"; xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; xmlns:is="http://de.ws.intraship"; xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:cis="http://dhl.de/webservice/cisbase"; xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"; xmlns:ns="http://de.ws.intrashipservice"; xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/";>
	
	<wsdl:types>
		<xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified">
			<xs:import namespace="http://dhl.de/webservice/cisbase"; schemaLocation="http://test-intraship.dhl.com/ws/1_0/ISService/DE/cis_base.xsd"/>
			<xs:import namespace="http://de.ws.intraship"; schemaLocation="http://test-intraship.dhl.com/ws/1_0/ISService/DE/is_base_de.xsd"/> 
	    </xs:schema>
	</wsdl:types>
	  
  	<wsdl:message name="AuthentificationHeaderMessage">
  	    <wsdl:documentation>The authentication data.</wsdl:documentation>
		<wsdl:part name="header" element="cis:Authentification"/>
		<wsdl:part name="devheader" element="is:DeveloperAuthentification"/>
  	</wsdl:message>
	 
  	<wsdl:message name="createShipmentTDMessage">
  	    <wsdl:documentation>The shipmentdata for creating a TD shipment.</wsdl:documentation>
   	 	<wsdl:part name="part1" element="is:CreateShipmentTDRequest">
    	</wsdl:part>
  	</wsdl:message>
	  
	  <wsdl:message name="createShipmentTDResponseMessage">
	    <wsdl:documentation>The status of the createShipment operation and the identifier for the shipment.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:CreateShipmentResponse">
	    </wsdl:part>
	  </wsdl:message>
	  
	  <wsdl:message name="createShipmentDDMessage">
	    <wsdl:documentation>The shipmentdata for creating a DD shipment.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:CreateShipmentDDRequest">
	    </wsdl:part>
	  </wsdl:message>
	  
	   <wsdl:message name="createShipmentDDResponseMessage">
	    <wsdl:documentation>The status of the createShipment operation and the identifier for the shipment.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:CreateShipmentResponse">
	    </wsdl:part>
	  </wsdl:message> 
	  
	  <wsdl:message name="deleteShipmentTDMessage">
	    <wsdl:documentation>The identifier for the shipment which should be deleted.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:DeleteShipmentTDRequest">
	    </wsdl:part>
	  </wsdl:message>
	  
	  <wsdl:message name="deleteShipmentTDResponseMessage">
	    <wsdl:documentation>The status of the deletion operation.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:DeleteShipmentResponse">
	    </wsdl:part>
	  </wsdl:message>
	    
	  <wsdl:message name="deleteShipmentDDMessage">
	    <wsdl:documentation>The identifier for the shipment which should be deleted.</wsdl:documentation>
	    <wsdl:part name="part1" element="is:DeleteShipmentDDRequest">
	    </wsdl:part>
	  </wsdl:message>
  
   <wsdl:message name="deleteShipmentDDResponseMessage">
    <wsdl:documentation>The status of the deletion operation.</wsdl:documentation>
    <wsdl:part name="part1" element="is:DeleteShipmentResponse">
    </wsdl:part>
  </wsdl:message>
 
  <wsdl:message name="doManifestTDMessage">
    <wsdl:documentation>The identifier for the shipment which should be manifested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:DoManifestTDRequest">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:message name="doManifestTDResponseMessage">
    <wsdl:documentation>The status of the manifest operation.</wsdl:documentation>
    <wsdl:part name="part1" element="is:DoManifestResponse">
    </wsdl:part>
  </wsdl:message>
    
  <wsdl:message name="doManifestDDMessage">
    <wsdl:documentation>The identifier for the shipment which should be manifested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:DoManifestDDRequest">
    </wsdl:part>
  </wsdl:message>
  
   <wsdl:message name="doManifestDDResponseMessage">
    <wsdl:documentation>The status of the manifest operation.</wsdl:documentation>
    <wsdl:part name="part1" element="is:DoManifestResponse">
    </wsdl:part>
  </wsdl:message> 
 
  <wsdl:message name="getLabelTDMessage">
    <wsdl:documentation>The identifier for the TD shipment for which the label url is requested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetLabelTDRequest">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:message name="getLabelTDResponseMessage">
    <wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetLabelResponse">
    </wsdl:part>
  </wsdl:message>
    
  <wsdl:message name="getLabelDDMessage">
    <wsdl:documentation>The identifier for the DD shipment for which the label url is requested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetLabelDDRequest">
    </wsdl:part>
  </wsdl:message>
  
   <wsdl:message name="getLabelDDResponseMessage">
    <wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetLabelResponse">
    </wsdl:part>
  </wsdl:message>
   
  <wsdl:message name="bookPickupMessage">
    <wsdl:documentation>The data for a pickup order.</wsdl:documentation>
    <wsdl:part name="part1" element="is:BookPickupRequest">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:message name="bookPickupResponseMessage">
    <wsdl:documentation>The status of the book pickup operation and a confirmation number (if available).</wsdl:documentation>
    <wsdl:part name="part1" element="is:BookPickupResponse">
    </wsdl:part>
  </wsdl:message> 

  <wsdl:message name="cancelPickupMessage">
    <wsdl:documentation>The confirmation number of the pickup order which should be canceled.</wsdl:documentation>
    <wsdl:part name="part1" element="is:CancelPickupRequest">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:message name="cancelPickupResponseMessage">
    <wsdl:documentation>The status of cancel pickup operation.</wsdl:documentation>
    <wsdl:part name="part1" element="is:CancelPickupResponse">
    </wsdl:part>
  </wsdl:message>
          
  <wsdl:message name="getVersionRequestMessage"/>

  <wsdl:message name="getVersionResponseMessage">
    <wsdl:documentation>The version of webservice implementation.</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetVersionResponse">
    </wsdl:part>
  </wsdl:message>
  
   <wsdl:message name="getExportDocTDMessage">
    <wsdl:documentation>The identifier for the TD shipment for which the label url is requested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetExportDocTDRequest">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:message name="getExportDocTDResponseMessage">
    <wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetExportDocResponse">
    </wsdl:part>
  </wsdl:message>
    
  <wsdl:message name="getExportDocDDMessage">
    <wsdl:documentation>The identifier for the DD shipment for which the label url is requested.</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetExportDocDDRequest">
    </wsdl:part>
  </wsdl:message>
  
   <wsdl:message name="getExportDocDDResponseMessage">
    <wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
    <wsdl:part name="part1" element="is:GetExportDocResponse">
    </wsdl:part>
  </wsdl:message>
  
  <wsdl:portType name="ISWSServicePortType">
  
    <wsdl:operation name="createShipmentTD">     
       <wsdl:documentation>Creates TD shipments.</wsdl:documentation> 
      <wsdl:input message="ns:createShipmentTDMessage">      
      <wsdl:documentation>The shipment data.</wsdl:documentation>	
	  </wsdl:input>
      <wsdl:output message="ns:createShipmentTDResponseMessage">
      <wsdl:documentation>The status of the createShipment operation and the identifier for the shipment.</wsdl:documentation>
    </wsdl:output>
    </wsdl:operation>

    <wsdl:operation name="createShipmentDD"> 
         <wsdl:documentation>Creates DD shipments.</wsdl:documentation>     
      	<wsdl:input message="ns:createShipmentDDMessage">
      	<wsdl:documentation>The shipment data.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:createShipmentDDResponseMessage">
      	<wsdl:documentation>The status of the createShipment operation and the identifier for the shipment.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>    
    
    <wsdl:operation name="deleteShipmentTD">      
        <wsdl:documentation>Deletes the requested TD shipments.</wsdl:documentation>
      	<wsdl:input message="ns:deleteShipmentTDMessage">
      	<wsdl:documentation>The identifier for the shipment which should be deleted.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:deleteShipmentTDResponseMessage">
      	<wsdl:documentation>The status of the deletion operation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="deleteShipmentDD">      
      	<wsdl:documentation>Deletes the requested DD shipments.</wsdl:documentation>
      	<wsdl:input message="ns:deleteShipmentDDMessage">
      	<wsdl:documentation>The identifier for the shipment which should be deleted.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:deleteShipmentDDResponseMessage">
      	<wsdl:documentation>The status of the deletion operation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="doManifestTD">
        <wsdl:documentation>Manifest the requested TD shipments.</wsdl:documentation>      
      	<wsdl:input message="ns:doManifestTDMessage">
      	<wsdl:documentation>The identifier for the shipment which should be manifested.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:doManifestTDResponseMessage">
      	<wsdl:documentation>The status of the manifest operation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="doManifestDD">
        <wsdl:documentation>Manifest the requested DD shipments.</wsdl:documentation>      
      	<wsdl:input message="ns:doManifestDDMessage">  
      	<wsdl:documentation>The identifier for the shipment which should be manifested.</wsdl:documentation>    	
	  	</wsdl:input>
      	<wsdl:output message="ns:doManifestDDResponseMessage">
      	<wsdl:documentation>The status of the manifest operation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>        
    
    <wsdl:operation name="getLabelTD">
        <wsdl:documentation>Returns the request-url for getting a TD label.</wsdl:documentation>      
      	<wsdl:input message="ns:getLabelTDMessage">
      	<wsdl:documentation>The identifier for the TD shipment for which the label url is requested.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:getLabelTDResponseMessage">
      	<wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getLabelDD">      
      	<wsdl:documentation>Returns the request-url for getting a DD label.</wsdl:documentation>
      	<wsdl:input message="ns:getLabelDDMessage">
      	<wsdl:documentation>The identifier for the DD shipment for which the label url is requested.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:getLabelDDResponseMessage">
      	<wsdl:documentation>The status of the operation and the label url (if available).</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="bookPickup">
        <wsdl:documentation>Books a pickup order.</wsdl:documentation>      
      	<wsdl:input message="ns:bookPickupMessage">
      	<wsdl:documentation>The data for a pickup order.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:bookPickupResponseMessage">
      	<wsdl:documentation>The status of the book pickup operation and a confirmation number (if available).</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="cancelPickup">
        <wsdl:documentation>Cancels a pickup order.</wsdl:documentation>      
      	<wsdl:input message="ns:cancelPickupMessage">
      	<wsdl:documentation>The confirmation number of the pickup order which should be canceled.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:cancelPickupResponseMessage">
      	<wsdl:documentation>The status of cancel pickup operation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>

	<wsdl:operation name="getVersion">
	    <wsdl:documentation>Returns the actual version of the implementation of the whole ISService webservice.</wsdl:documentation>      
      	<wsdl:input message="ns:getVersionRequestMessage"/>    
      	<wsdl:output message="ns:getVersionResponseMessage">
      	<wsdl:documentation>The version of webservice implementation.</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getExportDocTD">
        <wsdl:documentation>Returns the request-url for getting a TD export document.</wsdl:documentation>      
      	<wsdl:input message="ns:getExportDocTDMessage">
      	<wsdl:documentation>The identifier for the TD shipment for which the  export document url is requested.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:getExportDocTDResponseMessage">
      	<wsdl:documentation>The status of the operation and the export document url (if available).</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getExportDocDD">      
      	<wsdl:documentation>Returns the request-url for getting a DD  export document.</wsdl:documentation>
      	<wsdl:input message="ns:getExportDocDDMessage">
      	<wsdl:documentation>The identifier for the DD shipment for which the  export document url is requested.</wsdl:documentation>      	
	  	</wsdl:input>
      	<wsdl:output message="ns:getExportDocDDResponseMessage">
      	<wsdl:documentation>The status of the operation and the  export document url (if available).</wsdl:documentation>
	    </wsdl:output>
    </wsdl:operation>
  </wsdl:portType>

  <wsdl:binding name="ShipmentServiceSOAP11Binding" type="ns:ISWSServicePortType">
    
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    
    <wsdl:operation name="createShipmentTD">
      <wsdl:documentation>Creates TD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:createShipmentTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment data.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the shipment identifier.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="createShipmentDD">
      <wsdl:documentation>Creates DD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:createShipmentDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment data.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the shipment identifier.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>   

    <wsdl:operation name="deleteShipmentTD">
      <wsdl:documentation>Deletes the requested TD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:deleteShipmentTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="deleteShipmentDD">
      <wsdl:documentation>Deletes the requested DD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:deleteShipmentDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="doManifestTD">
      <wsdl:documentation>Manifest the requested TD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:doManifestTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="doManifestDD">
      <wsdl:documentation>Manifest the requested DD shipments.</wsdl:documentation>
      <soap:operation soapAction="urn:doManifestDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>   
    
    <wsdl:operation name="getLabelTD">
      <wsdl:documentation>Returns the request-url for getting a TD label.</wsdl:documentation>
      <soap:operation soapAction="urn:getLabelTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the label.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getLabelDD">
      <wsdl:documentation>Returns the request-url for getting a DD label.</wsdl:documentation>
      <soap:operation soapAction="urn:getLabelDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the label.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>    
    
    <wsdl:operation name="bookPickup">
      <wsdl:documentation>Books a pickup order.</wsdl:documentation>
      <soap:operation soapAction="urn:bookPickup" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the order data for the pickup</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the confirmation number (if available).</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="cancelPickup">
      <wsdl:documentation>Cancels a pickup order.</wsdl:documentation>
      <soap:operation soapAction="urn:cancelPickup" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the confirmation number of the pickuporder, which should be canceled</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>   
    
    
    <wsdl:operation name="getVersion">
      <wsdl:documentation>Returns the actual version of the implementation of the whole ISService webservice.</wsdl:documentation>
      <soap:operation soapAction="urn:getVersion" style="document"/>
      <wsdl:input>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
      	<wsdl:documentation>The version of the implementation.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>  
    
    <wsdl:operation name="getExportDocTD">
      <wsdl:documentation>Returns the request-url for getting a TD export document.</wsdl:documentation>
      <soap:operation soapAction="urn:getExportDocTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the export document.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getExportDocDD">
      <wsdl:documentation>Returns the request-url for getting a DD  export document.</wsdl:documentation>
      <soap:operation soapAction="urn:getExportDocDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
        <soap:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the export document.</wsdl:documentation>
        <soap:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  
  <wsdl:binding name="ShipmentServiceSOAP12Binding" type="ns:ISWSServicePortType">
    <soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="createShipmentTD">
      <wsdl:documentation>Creates TD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:createShipmentTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment data.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the shipment identifier.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>

	<wsdl:operation name="createShipmentDD">
	  <wsdl:documentation>Creates DD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:createShipmentDD" style="document"/>
      <wsdl:input>
         <wsdl:documentation>The authentication data and the shipment data.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the shipment identifier.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="deleteShipmentTD">
      <wsdl:documentation>Deletes the requested TD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:deleteShipmentTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="deleteShipmentDD">
      <wsdl:documentation>Deletes the requested DD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:deleteShipmentDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>    
    
    <wsdl:operation name="doManifestTD">
      <wsdl:documentation>Manifest the requested TD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:doManifestTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="doManifestDD">
      <wsdl:documentation>Manifest the requested DD shipments.</wsdl:documentation>
      <soap12:operation soapAction="urn:doManifestDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>    
    
    <wsdl:operation name="getLabelTD">
      <wsdl:documentation>Returns the request-url for getting a TD label.</wsdl:documentation>
      <soap12:operation soapAction="urn:getLabelTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the label.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getLabelDD">
      <wsdl:documentation>Returns the request-url for getting a DD label.</wsdl:documentation>
      <soap12:operation soapAction="urn:getLabelDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the label.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>    
    
    <wsdl:operation name="bookPickup">
      <wsdl:documentation>Books a pickup order.</wsdl:documentation>
      <soap12:operation soapAction="urn:bookPickup" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the order data for the pickup</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the confirmation number (if available).</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="cancelPickup">
      <wsdl:documentation>Cancels a pickup order.</wsdl:documentation>
      <soap12:operation soapAction="urn:cancelPickup" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the confirmation number of the pickuporder, which should be canceled</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>   
    
    <wsdl:operation name="getVersion">
      <wsdl:documentation>Returns the actual version of the implementation of the whole ISService webservice.</wsdl:documentation>
      <soap12:operation soapAction="urn:getVersion" style="document"/>
      <wsdl:input>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The version of the implementation.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation> 
    
    <wsdl:operation name="getExportDocTD">
      <wsdl:documentation>Returns the request-url for getting a TD export document.</wsdl:documentation>
      <soap12:operation soapAction="urn:getExportDocTD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the export document.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
    
    <wsdl:operation name="getExportDocDD">
      <wsdl:documentation>Returns the request-url for getting a DD export document.</wsdl:documentation>
      <soap12:operation soapAction="urn:getExportDocDD" style="document"/>
      <wsdl:input>
        <wsdl:documentation>The authentication data and the shipment identifier.</wsdl:documentation>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="header" use="literal"/>
      	<soap12:header message="ns:AuthentificationHeaderMessage" part="devheader" use="literal"/>
        <soap12:body use="literal"/>
      </wsdl:input>
      <wsdl:output>
        <wsdl:documentation>The status of the operation and the url for requesting the export document.</wsdl:documentation>
        <soap12:body use="literal"/>
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
    
  <wsdl:service name="ISService_1_0_de">
    <wsdl:port name="ShipmentServiceSOAP11port0" binding="ns:ShipmentServiceSOAP11Binding">
      <soap:address location="http://test-intraship.dhl.com/ws/1_0/de/ISService"/>
    </wsdl:port>
    <wsdl:port name="ShipmentServiceSOAP12port0" binding="ns:ShipmentServiceSOAP12Binding">
      <soap12:address location="http://test-intraship.dhl.com/ws/1_0/de/ISService"/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
HTTPAPI Ver 1.24 released 2012-01-23
OS/400 Ver V6R1M0

http_persist_open(): entered
http_long_ParseURL(): entered
DNS resolver retrans: 2
DNS resolver retry  : 2
DNS resolver options: x'00000136'
DNS default domain: ses-sterling.net
DNS server found: 192.1.1.24
DNS server found: 192.1.1.25
http_persist_post(): entered
http_persist_req(POST) entered.
http_long_ParseURL(): entered
do_oper(POST): entered
There are 0 cookies in the cache
POST /ws/1_0/de/ISService HTTP/1.1
Host: test-intraship.dhl.com
User-Agent: http-api/1.24
Content-Type: application/xml
SOAPAction: http:/test-intraship.dhl.com/ws/1_0/de/ISService/createShipmentDD
Content-Length: 1830


senddoc(): entered
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"; xmlns:cis="http://dhl.de/webservice/cisbase"; xmlns:de="http://de.ws.intraship";><soap:Header><cis:Authentification><cis:user>Sterling</cis:user><cis:signature>Online24</cis:signature><cis:type>0</cis:type></cis:Authentification></soap:Header><soap:Body><de:CreateShipmentDDRequest><cis:Version><cis:majorRelease>1</cis:majorRelease><cis:minorRelease>0</cis:minorRelease></cis:Version><ShipmentOrder><SequenceNumber>1</SequenceNumber><Shipment><ShipmentDetails><ProductCode>EPN</ProductCode><ShipmentDate>2012-06-08</ShipmentDate><cis:EKP>5000000005</cis:EKP><Attendance><cis:partnerID>01</cis:partnerID></Attendance><ShipmentItem><WeightInKG></WeightInKG><LengthInCM>0</LengthInCM><WidthInCM>0</WidthInCM><HeightInCM>0</HeightInCM><PackageType></PackageType></ShipmentItem></ShipmentDetails><Shipper><Company><cis:Company><cis:name1>SES-Sterling GmbH</cis:name1></cis:Company></Company><Address><cis:streetName>Alte Strasse</cis:streetName><cis:streetNumber>22</cis:streetNumber><cis:Zip><cis:germany>79576</cis:germany></cis:Zip><cis:city>WEIL/RHEIN</cis:city><cis:Origin><cis:countryISOCode>DE</cis:countryISOCode></cis:Origin></Address><Communication><cis:email>ses.de@xxxxxxxxxxxxxxxx</cis:email><cis:contactPerson>Verkaufsabteilung</cis:contactPerson></Communication></Shipper><Receiver><Company><cis:Company><cis:name1>Eckert   Graf GmbH</cis:name1><cis:name2></cis:name2></cis:Company></Company><Address><cis:streetName>Maybachstr. 1</cis:streetName><cis:streetNumber></cis:streetNumber><cis:Zip><cis:other>78244</cis:other></cis:Zip><cis:city>Gottmadingen</cis:city><cis:Origin><cis:countryISOCode>DE</cis:countryISOCode></cis:Origin></Address><Communication/></Receiver></Shipment></ShipmentOrder></de:CreateShipmentDDRequest></soap:Body></soap:Envelope>
recvresp(): entered
HTTP/1.0 200 OK
Date: Fri, 08 Jun 2012 07:25:06 GMT
Server: WEB
Content-Type: application/xml;charset=UTF-8
X-Cache: MISS from sesfirewall
X-Cache-Lookup: MISS from sesfirewall:3128
Via: 1.0 test-intraship.dhl.com, 1.1 sesfirewall:3128 (squid/2.7.STABLE9)
Connection: close


SetError() �13: HTTP/1.0 200 OK
recvresp(): end with 200
recvdoc parms: identity 0
header_load_cookies() entered
recvdoc(): entered
SetError() �0:
<ns4:GetVersionResponse xmlns:ns4="http://de.ws.intraship";><Version xmlns="http://dhl.de/webservice/cisbase";><majorRelease>1</majorRelease><minorRelease>0</minorRelease><build>14</build></Version></ns4:GetVersionResponse>
http_close(): entered
begin:vcard
fn:Pascal Kirscher
n:Kirscher;Pascal
org:SES-Sterling SA
adr;quoted-printable:;;1 bis, rue de D=C3=A9l=C3=A9mont;Saint-Louis;;68300;France
email;internet:pkirscher@xxxxxxxxxxxxxxxx
title:DSI
tel;work:03 89 70 20 36
tel;fax:03 89 70 20 37
url:www.ses-sterling.com
version:2.1
end:vcard

-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------