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

Re: Where is my DS sub fields ?



   Thanks you so much
   I change the Marshaller_toDecimal() into this & everything looks
   fine....
   D t_decimal       S             15S 2 inz
    * - - - - - - - - - - - - - - - - - - - - - - - - - - -
    /FREE

       //value = %char(i_decimal);
       Eval(h) t_decimal = i_decimal;
       if t_decimal < *zero;
         value = %trim(%editc( -t_decimal : '3' ) + '-');
       else;
         value = %trim(%editc( t_decimal  : '3' ));
       endif;

       return value;
   I know this is bad coding, I just want to rectify my web service
   program. Tomorrow, I will look into better way to amend this function
   & post my code...
   Thank you again!!!


   On Fri, Jul 8, 2011 at 6:41 AM, <[1]thomas.raddatz@xxxxxx> wrote:

       There is no time to debug the probvlem myself. But I strongly
     assume
       that it is procedure Marshaller_toDecimal() (module: WSDL2R98)
     that
       produces the problem. The procedure uses the %char() [2]built.in
     function
       to convert a decimal value to string.
       Most likely I should change it from %char() to %editc().
       Feel free to try that change and please let me know about the
     result.
       You have to update service program WSDL2RPGRT after having
     compiled
       the module.
       Thomas.
       [3]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 08.07.2011
     13:56:39:
       > Von: [4]dhanushkamanjula@xxxxxxxxx

     > An: [5]ftpapi@xxxxxxxxxxxxxxxxxxxxxx

       > Datum: 08.07.2011 15:17

     > Betreff: Re: Where is my DS sub fields ?
     > Gesendet von: [6]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     >

     > Really sorry Thomas, It was my mistake in updating WSDL2RPG
   program.
     It
     > worked & now I can see the numeric fields accordingly..
     >
     > I reduce some field from the above WebService for more convenience
   &
     try to
     > invoke service..
     > but I'm still getting above error.
     > what I'm really confuse here is, I checked the log file
     'httpapi_debug.txt'
     > in /tmp directory & it has the soap message exactly way I want.
     > but response message produce a error. attached!!
     >
     > it says.. 'When converting the value -100.000000000000000 the
   values
     after
     > the decimal place were lost'
     >
     > but I never send the numeric values with 15 decimal places..
     >
     > how I'm assign the value is
     >
     > num_val = -100;
     > parameters.Currencyamount.item.Bapiaccr09
     >

   (parameters.Currencyamount.item.Bapiaccr09(parameters.Currencyamount..
     .
     >
     > .item.x).AmtDoccur = num_val;
     >
     > num_val is looks like this
     > D num_val         S             15s 4 inz
     >
     >
     > Is this looks like host side problem ?
     >
     > Thanks
     >
     >

     > On Fri, Jul 8, 2011 at 11:49 AM, <[7]thomas.raddatz@xxxxxx> wrote:
     >
     > >
     > >   As far as I can see the digits and fractions restrictions are
     properly
     > >   retrieved from the wsdl file for numeric values. Unfortunately
     that is
     > >   not true for the 'maxLength' restriction, which is set in
   module
     > >   WSDL2R05, procedure cbRestrictionStart(). Therefore the
     character
     > >   fields of your wsdl, which actually are meant to take numeric
     values
     > >   (such as "numeric5"), are generated as 128A fields which
   allows
     you to
     > >   specify values that are too large. Feel free to change the
     following
     > >   statements of module WSDL2R05:
     > >   when (i_xPath = cWSDL_SECTION_RESTRICTION_MAXLENGTH);
     > >      value = f_val(XMLSAXParser_getAttributeValueByQName(
     > >                       attrList: cXSD_ATTR_VALUE));
     > >      // if (TypeDef_getLength(type) <> -1);
     > >         TypeDef_setLength(type: value);
     > >      // endif;
     > >   when (i_xPath = cWSDL_SECTION_RESTRICTION_TOTAL_DIGITS);
     > >   Then compile the module and update program WSDL2RPG. Now your
   DS
     > >   should be generated like this:
     > >   D n1_decimal9_6_t...
     > >   D                 S              9S 6 based(pDummy)
     > >   D n1_numeric10_t  S             10A   varying
     > >   D                                     based(pDummy)
     > >   D n1_numeric2_t   S              2A   varying
     > >   D                                     based(pDummy)
     > >   D n1_numeric3_t   S              3A   varying
     > >   D                                     based(pDummy)
     > >   D n1_numeric4_t   S              4A   varying
     > >   D                                     based(pDummy)
     > >   D n1_numeric5_t   S              5A   varying
     > >   D                                     based(pDummy)
     > >   I do not think that I will backport that fix to v1.13.x. But
   of
     course
     > >   I will have fixed it in 1.14beta10 (coming soon).
     > >   Last but not least, please keep in mind, that so far WSDL2RPG
     does not
     > >   verify any values or enforce any special rules, such as
   patterns
     or
     > >   enumerations. That is the obligation of the user of WSDL2RPG.
     Frankly
     > >   I do not really want to start adding such things because I
   fear
     to
     > >   open Pandora's Box.
     > >   Thomas.
     > >   [8]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am 07.07.2011
     18:24:40:
     > >   > Von: [9]thomas.raddatz@xxxxxxxxxxx
     > >    > An: [10]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > >    > Datum: 07.07.2011 21:38
     > >    > Betreff: Re: Where is my DS sub fields ?
     > >   > Gesendet von: [11]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > >   >
     > >    > I am at home and hence cannot get deeper into the problem
   but
     I
     > >   assume that
     > >   > WSDL2RPG did not retrieve some field length restrictions
   from
     the
     > >   WSDL, but
     > >   > used the defaults instead. Hence you may have been able to
     specify a
     > >   > numeric value with to many fraction digits.
     > >   >
     > >   > I'll try to check that tomorrow, when I am in the office.
     > >   >
     > >   > Thomas.
     > >   >
     > >   > Am 07.07.2011 17:16, schrieb Dhanushka Manjula:
     > >   > >
     > >    > >     Hi,
     > >   > >           1)      No need to down to your knees, This tool
     with
     > >   HTTPAPI
     > >   > >     are million times smarter than wsdl2ws&  ibm-wsdl2rpg.
     :)
     > >   > >
     > >   > >     2)      That one line makes everything perfect&  I
     checked
     > >   each DS
     > >   > >     with wsdl&  all fine. Thank you very much
     > >   > >
     > >   > >     3)      Now soap operation returns some strange errors
     > >   > >       *   HttpError :
     > >   > >
     > >   > >     13: HTTP/1.1 500 Internal Server Error
     > >   > >       * SoapError
     > >   > >
     > >   > >      soap-env:Server: CX_SY_CONVERSION_LOST_DECIMALS:XSLT
     > >   exception.An
     > >   > >     error occurred when deserializing in the simple
     transformation
     > >   > >
     > >   > >     Think this is a mistake from my side (or server side)&
     let me
     > >   try it
     > >   > >     with simple PC application to rectify
     > >   > >
     > >   > >     Ill inform my progress soon..
     > >   > >
     > >   > >     Thanks Again
     > >   > >
     > >    > >     On Thu, Jul 7, 2011 at 2:44
     AM,<[1][12]thomas.raddatz@xxxxxx>
     > >    wrote:
     > >   > >
     > >   > >         You got me down to my knees. The problem is a bug
   in
     > >   procedure
     > >   > >         produceNameForRpgArray() of module WSDL2R59.
   Please
     change
     > >   the
     > >   > >         following lines at the end of the procedure to:
     > >   > >             if (tmpNS = '');
     > >   > >                refTypeName = cGENERATOR_RPG_ARRAY_PREFIX +
     > >   tmpLName;
     > >   > >             else;
     > >   > >                refTypeName = tmpNS + ':' +
     > >   cGENERATOR_RPG_ARRAY_PREFIX +
     > >   > >         tmpLName;
     > >   > >             endif;
     > >   > >          ->  tmpQName = QName_newName(refTypeName);
     //
     > >   produce
     > >   > >         qualified name
     > >   > >          ->  tmpQName = TypeDef_produceName(tmpQName: '');
     // and
     > >   ensure
     > >   > >       that
     > >   > >         it is unique
     > >   > >             refTypeName = QName_toXml(tmpQName);
     > >   > >             return refTypeName;
     > >   > >         Then compile the module and link program WSDL2RPG
     like
     > >   this:
     > >   > >           CRTRPGMOD MODULE(RADDATZ/WSDL2R59)
     > >   SRCFILE(RADDATZ/QWSDL2RPG)
     > >   > >             SRCMBR(WSDL2R59) DBGVIEW(*LIST) TRUNCNBR(*NO)
     > >   > >           UPDPGM PGM(RADDATZ/WSDL2RPG)
     MODULE(RADDATZ/WSDL2R59)
     > >   > >         That should fix the problem.
     > >   > >         Thomas.
     > >    > >         [2][13]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   schrieb am
     > >    07.07.2011
     > >   > >       10:32:54:
     > >   > >
     > >    > >       >  Von: [3][14]dhanushkamanjula@xxxxxxxxx
     > >    > >       >  An: [4][15]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > >    > >
     > >   > >         >  Datum: 07.07.2011 10:51
     > >   > >         >  Betreff: Re: Where is my DS sub fields ?
     > >   > >
     > >    > >       >  Gesendet von:
     [5][16]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > >    > >       >
     > >   > >
     > >   > >       >  Hi Thomas,
     > >   > >       >  Many thank for your quick response,
     > >   > >       >
     > >   > >       >  The request parameters makes me confuse because
   it
     is not
     > >   the way
     > >   > >       wsdl was
     > >   > >       >  define
     > >   > >       >
     > >   > >       >  In wsdl this is the way to post a message......
     > >   > >       >
     > >   > >       >    <wsdl:message name="ZbapiAccDocumentPost">
     > >   > >       >      <wsdl:part name="parameters"
     > >   > >       element="tns:ZbapiAccDocumentPost"/>
     > >   > >       >    </wsdl:message>
     > >   > >       >
     > >   > >       >  Inside the post message, it has many parameters
     (I'm only
     > >   going
     > >   > >       through the
     > >   > >       >  Accountgl yet)
     > >   > >       >
     > >   > >       >  <xsd:element name="ZbapiAccDocumentPost">
     > >   > >       >          <xsd:complexType>
     > >   > >       >            <xsd:sequence>
     > >   > >       >              <xsd:element name="Accountgl"
     > >   > >       type="tns:TableOfBapiacgl09"
     > >   > >       >  minOccurs="0"/>
     > >   > >       >              <xsd:element name="Accountpayable"
     > >   > >       type="tns:TableOfBapiacap09"
     > >   > >       >  minOccurs="0"/>
     > >   > >       >
     > >   > >       >  You can see, the Accountgl type is
     TableOfBapiacgl09 and
     > >   It was
     > >   > >       define in
     > >   > >       >  someting like this in wsdl
     > >   > >       >
     > >   > >       >        <xsd:complexType name="TableOfBapiacgl09">
     > >   > >       >          <xsd:sequence>
     > >   > >       >            <xsd:element name="item"
     type="tns:Bapiacgl09"
     > >   > >       minOccurs="0"
     > >   > >       >  maxOccurs="unbounded"/>
     > >   > >       >          </xsd:sequence>
     > >   > >       >        </xsd:complexType>
     > >   > >       >
     > >   > >       >  It name is 'item'&  type is 'Bapiacgl09'
     > >   > >       >
     > >   > >       >        <xsd:complexType name="Bapiacgl09">
     > >   > >       >          <xsd:sequence>
     > >   > >       >            <xsd:element name="ItemnoAcc"
     > >   type="n0:numeric10"/>
     > >   > >       >            <xsd:element name="GlAccount"
     > >   type="n0:char10"/>
     > >   > >       >            <xsd:element name="ItemText"
     type="n0:char50"/>
     > >   > >       >            <xsd:element name="StatCon"
     type="n0:char1"/>
     > >   > >       >            <xsd:element name="LogProc"
     type="n0:char6"/>
     > >   > >       >            <xsd:element name="AcDocNo"
     type="n0:char10"/>
     > >   > >       >            <xsd:element name="RefKey1"
     type="n0:char12"/>
     > >   > >       >            <xsd:element name="RefKey2"
     type="n0:char12"/>
     > >   > >       >            <xsd:element name="RefKey3"
     type="n0:char20"/>
     > >   > >       >
     > >   > >       >
     > >   > >       >  now 'Bapiacgl09' has fields for
     ItemnoAcc,GlAccount,,
     > >   ect.
     > >   > >       >
     > >   > >       >  but in RPG stub, it is map to another DS called
     > >   'Bapiackec9' which
     > >   > >       is not
     > >   > >       >  correct..
     > >   > >       >  What should I do?
     > >   > >       >
     > >   > >       >  Thanks
     > >   > >       >
     > >   > >       >
     > >    > >       >  On Thu, Jul 7, 2011 at 1:11
     PM,<[6][17]thomas.raddatz@xxxxxx>
     > >     wrote:
     > >   > >       >
     > >   > >       >  >
     > >   > >
     > >   > >       >  >    I am not sure that I completely unterstand
   the
     > >   problem.
     > >   > >       >  >    First there is no need for changing the stub
     module
     > >   in order
     > >   > >     to
     > >   > >       assign
     > >   > >       >  >    data to the SOAP request (post) message.
     > >   > >       >  >    All you have to do is to fill structure
     > >   > >       "tns_ZbapiAccDocumentPost_t"
     > >   > >       >  >    and pass it to procedure
     > >   > >       >  >
     ZBAPI_ACC_DOCUMENT_POST_ZbapiAccDocumentPost(). The
     > >   attached
     > >   > >       test
     > >   > >       >  >    program clearly shows how to access the
   fields
     of
     > >   structure
     > >   > >       >  >    "Accountgl":
     > >   > >       >  >             // Set the paramater values of the
     request
     > >   message
     > >   > >       >  >             // of the web service.
     > >   > >       >  >             //    assign values here
     > >   > >       >  >             // Set number of array items:
     > >   > >       >  >             parameters.Accountgl.item.x = 1;
     > >   > >       >  >             // Set array item values:
     > >   > >       >  >
     > >   > >       >  >
     > >   > >
     > >
   parameters.Accountgl.item.Bapiackec9(parameters.Accountgl.item.x
     > >   > >       >  >             ).ItemnoAcc = '0000000010';
     > >   > >       >  >
     > >   > >       >  >
     > >   > >
     > >
   parameters.Accountgl.item.Bapiackec9(parameters.Accountgl.item.x
     > >   > >       >  >             ).Fieldname = 'string';
     > >   > >       >  >
     > >   > >       >  >
     > >   > >
     > >
   parameters.Accountgl.item.Bapiackec9(parameters.Accountgl.item.x
     > >   > >       >  >             ).Character = 'string';
     > >   > >       >  >    Another option to get an overview of the
     structure
     > >   of the
     > >   > >       messages of
     > >   > >       >  >    a given web service operation is to generate
   a
     > >   stream file
     > >   > >       showing
     > >   > >       >  >    that structure. In order to produce that
     stream file
     > >   you need
     > >   > >     to
     > >   > >       >  >    specify PARMSTRUCT(*STMF) and
     > >   > >     STRUCTSTMF('pathofTheStreamfile')
     > >   > >       at the
     > >   > >       >  >    WSDL2RPG command prompt:
     > >   > >       >  >      WSDL2RPG
     > >   > >
     URL('wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl')
     > >   > >       >  >        SRCFILE(RADDATZ/QWSDL2RPG) SRCMBR(XXX001
     *YES)
     > >   > >       >  >        PARMSTRUCT(*STMF)
     > >   > >       >  >
     > >   > >
     > >
   STRUCTSTMF('wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.txt')
     > >   > >       >  >    First lines of the stream file:
     > >   > >       >  >    WSDL2RPG Service Request and Response
     Parameter
     > >   Structures
     > >   > >       >  >
     > >   ----------------------------------------------------------
     > >   > >       >  >    Generated at:  07.07.2011 / 08:46:58
     > >   > >       >  >    WSDL URL    :
     > >   > >
     > >   > >         >  >
     > >   > >
     > >


     [1][1][1][1]file:wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl

     > >    > >
     > >   > >       >  >    Operation   :  tns:ZbapiAccDocumentPost
     > >   > >       >  >    Service Request Parameters
     > >   > >       >  >    --------------------------
     > >   > >       >  >
     > >   i_tns_ZbapiAccDocumentPost(tns_ZbapiAccDocumentPost_t)
     > >   > >       >  >      Accountgl(tns_TableOfBapiacgl09_t)
     > >   > >       >  >        item(tns_RpgArrayOfItem_t)
     > >   > >       >  >          x(10I 0, *ARRAY_INDEX)
     > >   > >       >  >          Bapiackec9(tns_Bapiackec9_t,
     *STATIC_ARRAY)
     > >   > >       >  >            ItemnoAcc(n1_numeric10_t)
     > >   > >       >  >            Fieldname(n1_char30_t)
     > >   > >       >  >            Character(n1_char18_t)
     > >   > >       >  >      Accountpayable(tns_TableOfBapiacap09_t)
     > >   > >       >  >    Does that answer your question?
     > >   > >       >  >    Thomas.
     > >    > >       >  >
   [7][18]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     schrieb am
     > >    07.07.2011
     > >   > >       07:25:41:
     > >    > >       >  >    >  Von: [8][19]dhanushkamanjula@xxxxxxxxx
     > >    > >       >  >    >  An: [9][20]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
     > >    > >       >  >    >  Datum: 07.07.2011 07:38
     > >   > >       >  >    >  Betreff: Where is my DS sub fields ?
     > >   > >       >  >    >  Gesendet von:
     > >    [10][21]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
     > >    > >       >  >     >
     > >   > >       >  >    >  Hi again,
     > >   > >       >  >    >
     > >   > >       >  >    >  I have a WSDL file. the post message have
     sub DS
     > >   called
     > >   > >       'Accountgl'
     > >   > >       >  >    which is
     > >   > >       >  >    >  type of TableOfBapiacgl09
     > >   > >       >  >    >  The TableOfBapiacgl09 is define with DS
     called
     > >   'Bapiacgl09'
     > >   > >       >  >    >
     > >   > >       >  >    >  The 'Bapiacgl09' DS contain sub fields
     named
     > >   > >       >  >    >  ItemnoAcc,GlAccount,ItemText..ect
     > >   > >       >  >    >
     > >   > >       >  >    >  In my generated STUB source, I can't find
     those
     > >   sub fields,
     > >   > >       due to
     > >   > >       >  >    that
     > >   > >       >  >    >  reason I have no idea to how to assign
   the
     data
     > >   > according to
     > >   > >       SOAP
     > >   > >       >  >    message
     > >   > >       >  >    >
     > >   > >       >  >    >  (not only 'Accountgl' but also
     'Accountpayable',
     > >   > >       'Accountreceivable'
     > >   > >       >  >    gives
     > >   > >       >  >    >  same issues)
     > >   > >       >  >    >
     > >   > >       >  >    >  -<Accountgl>
     > >   > >       >  >    >  -<item>
     > >   > >       >  >    >    <ItemnoAcc>0000000010</ItemnoAcc>
     > >   > >       >  >    >    <GlAccount>0051300000</GlAccount>
     > >   > >       >  >    >    <ItemText />
     > >   > >       >  >    >  .
     > >   > >       >  >    >  .
     > >   > >       >  >    >  -</Accountgl>
     > >   > >       >  >    >  -</item>
     > >   > >       >  >    >
     > >   > >       >  >    >
     > >   > >       >  >    >  WSDL, STUB source&  PGM source are
     attached.
     > >   > >       >  >    >
     > >   > >       >  >    >  Please give me an idea of this...
     > >   > >       >  >    >
     > >   > >       >  >    >  Thanks
     > >   > >       >  >     >  [Anhang "SAP0004.txt" gelöscht von
   Thomas
     > >   Raddatz/OBI/DE]
     > >   > >       [Anhang
     > >   > >       >  >    >  "SAP0004t.txt" gelöscht von Thomas
     > >   Raddatz/OBI/DE] [Anhang
     > >   > >       >  >    >  "ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl"
     gelöscht
     > >   von Thomas
     > >   > >       Raddatz/
     > >   > >       >  >    >  OBI/DE]
     > >   > >       >  >    >
     > >   > >       >  >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   > >       >  >    -
     > >   > >       >  >    >  This is the FTPAPI mailing list.  To
     > >   unsubscribe,please go
     > >   > >       to:
     > >   > >
     > >   > >         >  >    >
     > >   > >
     > >


     [2][2][11][2][2][22]http://www.scottklement.com/mailman/listinfo/ft
     papi

     > >    > >
     > >   > >       >  >    >
     > >   > >       >  >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   > >       >  >    -
     > >   > >       >  >
     > >   > >       >  >    --
     > >   > >       >  >    IMPORTANT NOTICE:
     > >   > >       >  >    This email is confidential, may be legally
     > >   privileged, and is
     > >   > >       for the
     > >   > >       >  >    intended recipient only. Access, disclosure,
     > >   copying,
     > >   > >       distribution, or
     > >   > >       >  >    reliance on any of it by anyone else is
     prohibited
     > >   and may be
     > >   > >     a
     > >   > >       >  >    criminal
     > >   > >       >  >    offence. Please delete if obtained in error
     and
     > >   email
     > >   > >       confirmation to
     > >   > >       >  >    the sender.
     > >   > >       >  >
     > >   > >       >  >  References
     > >   > >       >  >
     > >   > >
     > >   > >         >  >    1.
     > >   > >
     > >


     [3][3][3]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   > >         >  >    2.
       > >   > >
       > >
     [4][12][4][4][23]http://www.scottklement.com/mailman/listinfo/ftpap
     i

     > >    > >
     > >   > >       >  >
     > >   > >       >  >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   > >       -
     > >   > >       >  >  This is the FTPAPI mailing list.  To
     unsubscribe,
     > >   please go to:
     > >   > >
     > >   > >         >  >
     > >


     [5][13][5][5][24]http://www.scottklement.com/mailman/listinfo/ftpap
     i

     > >    > >         >  >
     > >   > >
     > >   > >
     > >
     -------------------------------------------------------------------
     > >   > >       ---
     > >   > >         -
     > >   > >         >  >
     > >   > >         >  >
     > >   > >         >
     > >   > >         >
     > >   > >         >  --
     > >   > >
     > >   > >       >  Shoot for the moon, even if you miss, you'll land
     among
     > >   the stars.
     > >   > >       >
     > >   > >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   > >       -
     > >   > >       >  This is the FTPAPI mailing list.  To unsubscribe,
     please
     > >   go to:
     > >   > >
     > >   > >         >
     > >


     [6][14][6][6][25]http://www.scottklement.com/mailman/listinfo/ftpap
     i

     > >    > >
     > >   > >       >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   > >       -
     > >   > >       --
     > >   > >       IMPORTANT NOTICE:
     > >   > >       This email is confidential, may be legally
   privileged,
     and
     > >   is for
     > >   > >     the
     > >   > >       intended recipient only. Access, disclosure,
   copying,
     > >   distribution,
     > >   > >     or
     > >   > >       reliance on any of it by anyone else is prohibited
   and
     may
     > >   be a
     > >   > >       criminal
     > >   > >       offence. Please delete if obtained in error and
   email
     > >   confirmation
     > >   > >     to
     > >   > >       the sender.
     > >   > >     References
     > >   > >       1.

       > >
     [7][7]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   > >       2.
       > >
     [15][8][8][26]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >
       > >   > >         3.
       > >
     [9][9]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   > >         4.
       > >
     [16][10][10][27]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >         5.
       > >
     [17][11][11][28]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >         6.
       > >
     [18][12][12][29]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >    > >
     > >
     -------------------------------------------------------------------
     > >   > >       ----
     > >   > >       This is the FTPAPI mailing list.  To unsubscribe,
     please go
     > >   to:
     > >    > >


     [19][13][13][30]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >    > >
     > >
     -------------------------------------------------------------------
     > >   > >       ----
     > >   > >
     > >   > >     --
     > >   > >     Shoot for the moon, even if you miss, you'll land
   among
     the
     > >   stars.
     > >   > >
     > >    > > References
     > >   > >

       > >   > >     1. [14][14]mailto:[31]thomas.raddatz@xxxxxx
       > >   > >     2.
     [15][15]mailto:[32]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >     3. [16][16]mailto:[33]dhanushkamanjula@xxxxxxxxx
       > >   > >     4. [17][17]mailto:[34]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >     5.
     [18][18]mailto:[35]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >     6. [19][19]mailto:[36]thomas.raddatz@xxxxxx
       > >   > >     7.
     [20][20]mailto:[37]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >     8. [21][21]mailto:[38]dhanushkamanjula@xxxxxxxxx
       > >   > >     9. [22][22]mailto:[39]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >    10.
     [23][23]mailto:[40]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >   > >    11.
       [24][24][41]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    12.
       [25][25][42]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    13.
       [26][26][43]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    14.
       [27][27][44]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    15.
       [28][28][45]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    16.
       [29][29][46]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    17.
       [30][30][47]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    18.
       [31][31][48]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   > >    19.
       [32][32][49]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >    > >
     > >   > >
     > >   > >
     > >   > >
     > >   > >
     > >

   ----------------------------------------------------------------------
     > >   -
     > >   > > This is the FTPAPI mailing list.  To unsubscribe, please
   go
     to:

       > >    > >
     [33][33][50]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >    > >
     > >

   ----------------------------------------------------------------------
     > >   -
     > >   >
     > >

   ----------------------------------------------------------------------
     > >   -
     > >   > This is the FTPAPI mailing list.  To unsubscribe, please go
     to:

       > >    >
     [34][34][51]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >    >
     > >

   ----------------------------------------------------------------------
     > >   -
     > >   >
     > >
     > >   --
     > >   IMPORTANT NOTICE:
     > >   This email is confidential, may be legally privileged, and is
     for the
     > >   intended recipient only. Access, disclosure, copying,
     distribution, or
     > >   reliance on any of it by anyone else is prohibited and may be
   a
     > >   criminal
     > >   offence. Please delete if obtained in error and email
     confirmation to
     > >   the sender.
     > >
     > > References
     > >

       > >   1.
     [35]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   2.
     [36][52]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   3.
     [37]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   4.
     [38][53]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   5.
     [39][54]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   6.
     [40][55]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >    7.
       [41]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >   8.
     [42][56]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >   9.
     [43]file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
       > >  10.
     [44][57]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  11.
     [45][58]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  12.
     [46][59]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  13.
     [47][60]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  14. [48]mailto:[61]thomas.raddatz@xxxxxx
       > >  15. [49]mailto:[62]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >  16. [50]mailto:[63]dhanushkamanjula@xxxxxxxxx
       > >  17. [51]mailto:[64]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
       > >  18. [52]mailto:[65]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >  19. [53]mailto:[66]thomas.raddatz@xxxxxx
       > >  20. [54]mailto:[67]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >  21. [55]mailto:[68]dhanushkamanjula@xxxxxxxxx
       > >  22. [56]mailto:[69]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
       > >  23. [57]mailto:[70]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
       > >  24.
     [58][71]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  25.
     [59][72]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  26.
     [60][73]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  27.
     [61][74]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  28.
     [62][75]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  29.
     [63][76]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  30.
     [64][77]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  31.
     [65][78]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  32.
     [66][79]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  33.
     [67][80]http://www.scottklement.com/mailman/listinfo/ftpapi
       > >  34.
     [68][81]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >
     > >

   ----------------------------------------------------------------------
     -
     > > This is the FTPAPI mailing list.  To unsubscribe, please go to:

       > > [69][82]http://www.scottklement.com/mailman/listinfo/ftpapi

     > >

   ----------------------------------------------------------------------
     -
     > >
     > >
     >
     >
     > --
     > Shoot for the moon, even if you miss, you'll land among the stars.

       > [Anhang "Request.txt" gelöscht von Thomas Raddatz/OBI/DE]
     [Anhang
       > "ZBAPI_ACC_DOCUMENT_POST_UAL_WO_AUTH.wsdl" gelöscht von Thomas
       > Raddatz/OBI/DE] [Anhang "Response.txt" gelöscht von Thomas
     Raddatz/
       > OBI/DE]
       >


   ----------------------------------------------------------------------
     -
     > This is the FTPAPI mailing list.  To unsubscribe, please go to:

       > [70][83]http://www.scottklement.com/mailman/listinfo/ftpapi

     >

   ----------------------------------------------------------------------
     -
     --
     IMPORTANT NOTICE:
     This email is confidential, may be legally privileged, and is for
   the
     intended recipient only. Access, disclosure, copying, distribution,
   or
     reliance on any of it by anyone else is prohibited and may be a
     criminal
     offence. Please delete if obtained in error and email confirmation
   to
     the sender.
   References
     1. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
     2. [84]http://www.scottklement.com/mailman/listinfo/ftpapi
     3. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
     4. [85]http://www.scottklement.com/mailman/listinfo/ftpapi
     5. [86]http://www.scottklement.com/mailman/listinfo/ftpapi
     6. [87]http://www.scottklement.com/mailman/listinfo/ftpapi
     7. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
     8. [88]http://www.scottklement.com/mailman/listinfo/ftpapi
     9. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
    10. [89]http://www.scottklement.com/mailman/listinfo/ftpapi
    11. [90]http://www.scottklement.com/mailman/listinfo/ftpapi
    12. [91]http://www.scottklement.com/mailman/listinfo/ftpapi
    13. [92]http://www.scottklement.com/mailman/listinfo/ftpapi
    14. mailto:[93]thomas.raddatz@xxxxxx
    15. mailto:[94]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
    16. mailto:[95]dhanushkamanjula@xxxxxxxxx
    17. mailto:[96]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
    18. mailto:[97]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
    19. mailto:[98]thomas.raddatz@xxxxxx
    20. mailto:[99]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
    21. mailto:[100]dhanushkamanjula@xxxxxxxxx
    22. mailto:[101]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
    23. mailto:[102]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
    24. [103]http://www.scottklement.com/mailman/listinfo/ftpapi
    25. [104]http://www.scottklement.com/mailman/listinfo/ftpapi
    26. [105]http://www.scottklement.com/mailman/listinfo/ftpapi
    27. [106]http://www.scottklement.com/mailman/listinfo/ftpapi
    28. [107]http://www.scottklement.com/mailman/listinfo/ftpapi
    29. [108]http://www.scottklement.com/mailman/listinfo/ftpapi
    30. [109]http://www.scottklement.com/mailman/listinfo/ftpapi
    31. [110]http://www.scottklement.com/mailman/listinfo/ftpapi
    32. [111]http://www.scottklement.com/mailman/listinfo/ftpapi
    33. [112]http://www.scottklement.com/mailman/listinfo/ftpapi
    34. [113]http://www.scottklement.com/mailman/listinfo/ftpapi

      35. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
      36. [114]http://www.scottklement.com/mailman/listinfo/ftpapi
      37. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
      38. [115]http://www.scottklement.com/mailman/listinfo/ftpapi
      39. [116]http://www.scottklement.com/mailman/listinfo/ftpapi
      40. [117]http://www.scottklement.com/mailman/listinfo/ftpapi
      41. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
      42. [118]http://www.scottklement.com/mailman/listinfo/ftpapi
      43. file://wsdl2rpg/wsdl/ZBAPI_ACC_DOCUMENT_POST_WO_AUTH.wsdl
      44. [119]http://www.scottklement.com/mailman/listinfo/ftpapi
      45. [120]http://www.scottklement.com/mailman/listinfo/ftpapi
      46. [121]http://www.scottklement.com/mailman/listinfo/ftpapi
      47. [122]http://www.scottklement.com/mailman/listinfo/ftpapi
      48. mailto:[123]thomas.raddatz@xxxxxx
      49. mailto:[124]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
      50. mailto:[125]dhanushkamanjula@xxxxxxxxx
      51. mailto:[126]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
      52. mailto:[127]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
      53. mailto:[128]thomas.raddatz@xxxxxx
      54. mailto:[129]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
      55. mailto:[130]dhanushkamanjula@xxxxxxxxx
      56. mailto:[131]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
      57. mailto:[132]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
      58. [133]http://www.scottklement.com/mailman/listinfo/ftpapi
      59. [134]http://www.scottklement.com/mailman/listinfo/ftpapi
      60. [135]http://www.scottklement.com/mailman/listinfo/ftpapi
      61. [136]http://www.scottklement.com/mailman/listinfo/ftpapi
      62. [137]http://www.scottklement.com/mailman/listinfo/ftpapi
      63. [138]http://www.scottklement.com/mailman/listinfo/ftpapi
      64. [139]http://www.scottklement.com/mailman/listinfo/ftpapi
      65. [140]http://www.scottklement.com/mailman/listinfo/ftpapi
      66. [141]http://www.scottklement.com/mailman/listinfo/ftpapi
      67. [142]http://www.scottklement.com/mailman/listinfo/ftpapi
      68. [143]http://www.scottklement.com/mailman/listinfo/ftpapi
      69. [144]http://www.scottklement.com/mailman/listinfo/ftpapi
      70. [145]http://www.scottklement.com/mailman/listinfo/ftpapi
     -------------------------------------------------------------------
     ----
     This is the FTPAPI mailing list.  To unsubscribe, please go to:
     [146]http://www.scottklement.com/mailman/listinfo/ftpapi
     -------------------------------------------------------------------
     ----

   --
   Shoot for the moon, even if you miss, you'll land among the stars.

References

   1. mailto:thomas.raddatz@xxxxxx
   2. http://built.in/
   3. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   4. mailto:dhanushkamanjula@xxxxxxxxx
   5. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
   6. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   7. mailto:thomas.raddatz@xxxxxx
   8. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
   9. mailto:thomas.raddatz@xxxxxxxxxxx
  10. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  11. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  12. mailto:thomas.raddatz@xxxxxx
  13. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  14. mailto:dhanushkamanjula@xxxxxxxxx
  15. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  16. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  17. mailto:thomas.raddatz@xxxxxx
  18. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  19. mailto:dhanushkamanjula@xxxxxxxxx
  20. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  21. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  22. http://www.scottklement.com/mailman/listinfo/ftpapi
  23. http://www.scottklement.com/mailman/listinfo/ftpapi
  24. http://www.scottklement.com/mailman/listinfo/ftpapi
  25. http://www.scottklement.com/mailman/listinfo/ftpapi
  26. http://www.scottklement.com/mailman/listinfo/ftpapi
  27. http://www.scottklement.com/mailman/listinfo/ftpapi
  28. http://www.scottklement.com/mailman/listinfo/ftpapi
  29. http://www.scottklement.com/mailman/listinfo/ftpapi
  30. http://www.scottklement.com/mailman/listinfo/ftpapi
  31. mailto:thomas.raddatz@xxxxxx
  32. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  33. mailto:dhanushkamanjula@xxxxxxxxx
  34. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  35. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  36. mailto:thomas.raddatz@xxxxxx
  37. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  38. mailto:dhanushkamanjula@xxxxxxxxx
  39. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  40. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  41. http://www.scottklement.com/mailman/listinfo/ftpapi
  42. http://www.scottklement.com/mailman/listinfo/ftpapi
  43. http://www.scottklement.com/mailman/listinfo/ftpapi
  44. http://www.scottklement.com/mailman/listinfo/ftpapi
  45. http://www.scottklement.com/mailman/listinfo/ftpapi
  46. http://www.scottklement.com/mailman/listinfo/ftpapi
  47. http://www.scottklement.com/mailman/listinfo/ftpapi
  48. http://www.scottklement.com/mailman/listinfo/ftpapi
  49. http://www.scottklement.com/mailman/listinfo/ftpapi
  50. http://www.scottklement.com/mailman/listinfo/ftpapi
  51. http://www.scottklement.com/mailman/listinfo/ftpapi
  52. http://www.scottklement.com/mailman/listinfo/ftpapi
  53. http://www.scottklement.com/mailman/listinfo/ftpapi
  54. http://www.scottklement.com/mailman/listinfo/ftpapi
  55. http://www.scottklement.com/mailman/listinfo/ftpapi
  56. http://www.scottklement.com/mailman/listinfo/ftpapi
  57. http://www.scottklement.com/mailman/listinfo/ftpapi
  58. http://www.scottklement.com/mailman/listinfo/ftpapi
  59. http://www.scottklement.com/mailman/listinfo/ftpapi
  60. http://www.scottklement.com/mailman/listinfo/ftpapi
  61. mailto:thomas.raddatz@xxxxxx
  62. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  63. mailto:dhanushkamanjula@xxxxxxxxx
  64. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  65. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  66. mailto:thomas.raddatz@xxxxxx
  67. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  68. mailto:dhanushkamanjula@xxxxxxxxx
  69. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  70. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  71. http://www.scottklement.com/mailman/listinfo/ftpapi
  72. http://www.scottklement.com/mailman/listinfo/ftpapi
  73. http://www.scottklement.com/mailman/listinfo/ftpapi
  74. http://www.scottklement.com/mailman/listinfo/ftpapi
  75. http://www.scottklement.com/mailman/listinfo/ftpapi
  76. http://www.scottklement.com/mailman/listinfo/ftpapi
  77. http://www.scottklement.com/mailman/listinfo/ftpapi
  78. http://www.scottklement.com/mailman/listinfo/ftpapi
  79. http://www.scottklement.com/mailman/listinfo/ftpapi
  80. http://www.scottklement.com/mailman/listinfo/ftpapi
  81. http://www.scottklement.com/mailman/listinfo/ftpapi
  82. http://www.scottklement.com/mailman/listinfo/ftpapi
  83. http://www.scottklement.com/mailman/listinfo/ftpapi
  84. http://www.scottklement.com/mailman/listinfo/ftpapi
  85. http://www.scottklement.com/mailman/listinfo/ftpapi
  86. http://www.scottklement.com/mailman/listinfo/ftpapi
  87. http://www.scottklement.com/mailman/listinfo/ftpapi
  88. http://www.scottklement.com/mailman/listinfo/ftpapi
  89. http://www.scottklement.com/mailman/listinfo/ftpapi
  90. http://www.scottklement.com/mailman/listinfo/ftpapi
  91. http://www.scottklement.com/mailman/listinfo/ftpapi
  92. http://www.scottklement.com/mailman/listinfo/ftpapi
  93. mailto:thomas.raddatz@xxxxxx
  94. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  95. mailto:dhanushkamanjula@xxxxxxxxx
  96. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
  97. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
  98. mailto:thomas.raddatz@xxxxxx
  99. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 100. mailto:dhanushkamanjula@xxxxxxxxx
 101. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
 102. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 103. http://www.scottklement.com/mailman/listinfo/ftpapi
 104. http://www.scottklement.com/mailman/listinfo/ftpapi
 105. http://www.scottklement.com/mailman/listinfo/ftpapi
 106. http://www.scottklement.com/mailman/listinfo/ftpapi
 107. http://www.scottklement.com/mailman/listinfo/ftpapi
 108. http://www.scottklement.com/mailman/listinfo/ftpapi
 109. http://www.scottklement.com/mailman/listinfo/ftpapi
 110. http://www.scottklement.com/mailman/listinfo/ftpapi
 111. http://www.scottklement.com/mailman/listinfo/ftpapi
 112. http://www.scottklement.com/mailman/listinfo/ftpapi
 113. http://www.scottklement.com/mailman/listinfo/ftpapi
 114. http://www.scottklement.com/mailman/listinfo/ftpapi
 115. http://www.scottklement.com/mailman/listinfo/ftpapi
 116. http://www.scottklement.com/mailman/listinfo/ftpapi
 117. http://www.scottklement.com/mailman/listinfo/ftpapi
 118. http://www.scottklement.com/mailman/listinfo/ftpapi
 119. http://www.scottklement.com/mailman/listinfo/ftpapi
 120. http://www.scottklement.com/mailman/listinfo/ftpapi
 121. http://www.scottklement.com/mailman/listinfo/ftpapi
 122. http://www.scottklement.com/mailman/listinfo/ftpapi
 123. mailto:thomas.raddatz@xxxxxx
 124. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 125. mailto:dhanushkamanjula@xxxxxxxxx
 126. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
 127. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 128. mailto:thomas.raddatz@xxxxxx
 129. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 130. mailto:dhanushkamanjula@xxxxxxxxx
 131. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
 132. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
 133. http://www.scottklement.com/mailman/listinfo/ftpapi
 134. http://www.scottklement.com/mailman/listinfo/ftpapi
 135. http://www.scottklement.com/mailman/listinfo/ftpapi
 136. http://www.scottklement.com/mailman/listinfo/ftpapi
 137. http://www.scottklement.com/mailman/listinfo/ftpapi
 138. http://www.scottklement.com/mailman/listinfo/ftpapi
 139. http://www.scottklement.com/mailman/listinfo/ftpapi
 140. http://www.scottklement.com/mailman/listinfo/ftpapi
 141. http://www.scottklement.com/mailman/listinfo/ftpapi
 142. http://www.scottklement.com/mailman/listinfo/ftpapi
 143. http://www.scottklement.com/mailman/listinfo/ftpapi
 144. http://www.scottklement.com/mailman/listinfo/ftpapi
 145. http://www.scottklement.com/mailman/listinfo/ftpapi
 146. http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------
This is the FTPAPI mailing list.  To unsubscribe, please go to:
http://www.scottklement.com/mailman/listinfo/ftpapi
-----------------------------------------------------------------------