[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Problem calling webservice using WSDL2RPG tool
Thanks Thomas, that worked !
From: Thomas Raddatz <thomas.raddatz@xxxxxxxxxxx>
To: HTTPAPI and FTPAPI Projects <ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Wednesday, 20 July 2011 1:49 AM
Subject: Re: Problem calling webservice using WSDL2RPG tool
I forgot to mention that you also have to replace the statements
containing:
name = 'ListOfBtAccountIo_Zest'
In total you have to change 4 lines!
Two lines:
'<xsdLocal1:ListOfBtAccountIo_Zest>' +
'</xsdLocal1:ListOfBtAccountIo_Zest>' +
And two more lines:
name = 'ListOfBtAccountIo_Zest'
in
tns_UpSertAccount_OutputStart()
and
xsdLocal1_ListOfBtAccountIo_ZestStart()
Thomas.
Am 19.07.2011 21:45, schrieb Thomas Raddatz:
> Avinash,
>
> The problem is that WDL2RPG replaced the hyphen of
> "<ListOfBtAccountIo-Zest>" with an underscore because hyphens are
not
> allowed for RPG field names. So "<ListOfBtAccountIo-Zest>" was
translatet
> to "ListOfBtAccountIo_Zest".
>
> I do not know why that worked so far. Most like so far only
reference type
> have been affected by that fix but no elements of the SOAP message.
>
> Please fix the generated stub module by hand. Open the stub module,
search
> for "xsdLocal1:ListOfBtAccountIo_Zest" and replace the underscore
with a
> hyphen to get:
>
> xsdLocal1:ListOfBtAccountIo-Zest
>
> I try to fix that issue in v1.14beta11 but I am pretty sure that I
will not
> backport it to v1.13.2. However I will need some time to fix it. At
the
> moment I change WSDL2RPG to support the new big character fields
there were
> introduced with V6.1. I cannot release a new beta until that task
has been
> finished.
>
> Regards,
>
> Thomas.
>
> Am 19.07.2011 11:39, schrieb Avinash Miraskar:
>>
>> Hi Thomas,
>>
>> I have installed WSDL2RPG tool and i generated the RPG stub
and
>> program out of it. Later when i try to invoke the program, it
gives
>> me these errors:
>> 13: HTTP/1.1 400 Bad
>> Request
>> SOAP-ENV:Client: Unknown
>> Part
>>
'[1]http://www.siebel.com/xml/BT%20Account%20IO%20-%20Zest:ListOfBtAcc
oun
>> t
>> Io_Zest' for operation
>> 'Up
>>
>> I have attached the following :
>> 1) WSDL file
>> 2)Corresponding RPG Program and stub generated out of
>> WSDL2RPG tool.
>> 3) HTTP error log after invoking the RPG program.
>> Can you please help me resolve this issue. Thanks for your
help and
>> let me now if you need additional info.
>> Regards,
>> Avinash
>> From: "[2]thomas.raddatz@xxxxxx"<[3]thomas.raddatz@xxxxxx>
>> To: [4]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> Cc: [5]ftpapi@xxxxxxxxxxxxxxxxxxxxxx;
>> [6]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> Sent: Monday, 7 February 2011 5:37 PM
>> Subject: Antwort: Re: Problem calling webservice using
WSDL2RPG tool
>> You are welcome and hopefully you will not encounter any
more
>> problems. ;-)
>> For sure I am happy about the new test case.
>> Thomas.
>> [1][7]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
07.02.2011
>> 12:38:14:
>> > Von: [2][8]avinash_miraskar@xxxxxxxxxxx
>> > An: [3][9]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > Datum: 07.02.2011 12:45
>> > Betreff: Re: Problem calling webservice using WSDL2RPG
tool
>> > Gesendet von:
[4][10]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> >
>> > Thanks a ton Thomas, that worked.. i just turned on the
debug log
>> and checked
>> > that my array dimension was on the lower side. I just
increased to
>> a
>> higher
>> > dimension and it worked !! Thanks for your help!! I'm
glad that
>> thisWSDL file
>> > help add those additional test scenarios... Will keep you
informed
>> if i come
>> > across anything more :)
>> >
>> > Regards,
>> > Avinash.
>> >
>> >
>> >
>> > ----- Original Message ----
>> > From:
"[5][11]thomas.raddatz@xxxxxx"<[6][12]thomas.raddatz@xxxxxx>
>> > To: [7][13]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > Sent: Mon, 7 February, 2011 3:47:45 PM
>> > Subject: Re: Problem calling webservice using WSDL2RPG
tool
>> >
>> >
>> > Avinash,
>> > The namespace value is correct because now we get
into
>> procedure
>> > tns_ListOfValuesStart_of_tns_ListOfAgileUpdateLov()
that
>> retrieves the
>> > values of the "ListOfValues" array from the XML
stream.
>> > I strongly assume that the number of elements
returned by the
>> web
>> > service exceeds the number of elements defined at the
dim()
>> statement.
>> > Please enable the debug log and check if that is
true. You
>> should
>> see
>> > something similar to this at the end of the debug
log:
>> > WSDL2RPG Ver 1.14beta4 released 2011-02-05
>> > WSDL2RPG: MCH0603: Range of subscript value or
character string
>> error.
>> > received from procedure:
>> > tns_ListOfValuesStart_of_tns_ListOfAgileUpdateLov
>> > and statement: 178100
>> > WSDL2RPG (eXpat error): (-1009) Range of subscript
value or
>> character
>> > string error.
>> > received at line: 1
>> > at column: 3332
>> > from procedure: WSDL2R97_XMLSAXParser_parse
>> > and statement: 101900
>> > SetError() #16: recvchunk: saveproc: Not all data was
writtenÜ
>> > http_close(): entered
>> > You may also start the debugger and add a breakpoint
to the
>> following
>> > statement:
>> > xsdLocal0_ListOfValues.x = xsdLocal0_ListOfValues.x
+ 1;
>> > Now check how often you stop at the breakpoint and
compare it
>> to
>> the
>> > the number of items at the dim() statement:
>> > *
>> > * Array dimensions:
>> > D DIM_A1 C 128
>> > D item
>> > likeds(xsdLocal0_ListOfValues_t)
>> > D dim(DIM_A1)
>> > If you cannot increase the number of elements because
of the
>> 64k
>> > restriction of RGP, you need to use dynamic arrays
instead of
>> static
>> > arrays. There is an FAQ document that describes how
to use
>> dynamic
>> > arrays:
>> > FAQ How to Use Dynamic Arrays_v1.1
>> > Thomas.
>> > [8][14]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb am
07.02.2011
>> 09:05:04:
>> > > Von: [9][15]avinash_miraskar@xxxxxxxxxxx
>> > > An: [10][16]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > Datum: 07.02.2011 09:16
>> > > Betreff: Re: Problem calling webservice using
WSDL2RPG tool
>> > > Gesendet von:
[11][17]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> > >
>> > > Hi Thomas,
>> > >
>> > > I download the latest Beta4 version and
regenerated the
>> webservice
>> > > code and when
>> > > i gave a call to the webservice program, it was
crashing with
>> the
>> > following
>> > > error message:
>> > >
>> > > ->Range of subscript value or character string
error.
>> > > -> 16: recvdoc: saveproc: Not all data was
written!
>> > > -1009: Range of subscript value or character
string error.
>> > >
>> > > When i compared with older code, i saw that you
have replaced
>> the
>> > "Blank"
>> > > namespaces with
>> >
'[12][18]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV'.
>> > >
>> > > I am not sure if we are still missing something?
>> > >
>> > > Pgm:TEST009 (attached in mail):
>> > > In procedures
:xsdLocal0_ListOfAgileUpdateLovStart&
>> > >
xsdLocal0_ListOfValuesStart_of_xsdLocal0_ListOfAgileUpdateLov
>> for
>> > > example uses
>> > > these namespaces..
>> > >
>> > > Regards,
>> > > Avinash.
>> > >
>> > >
>> > >
>> > >
>> > >
>> > > ----- Original Message ----
>> > > From:
"[13][19]thomas.raddatz@xxxxxx"<[14][20]thomas.raddatz@xxxxxx>
>> > > To: [15][21]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > Sent: Fri, 4 February, 2011 8:51:52 PM
>> > > Subject: Re: Problem calling webservice using
WSDL2RPG tool
>> > >
>> > >
>> > > Avanish,
>> > > I fixed the error you reported. The different
use of
>> namespaces
>> > for
>> > > RPC/encoded, RPC/literal and Document/literal
is driving
>> me
>> > crazy.
>> > > However it seems that I got it now. You can
download the
>> next
>> > beta
>> > > from here:
>> > >
>> >
>>
>>
[1][1][1][16][22]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2R
PG_v
>> 1.14
>> bet
>> > a3_
>> > > 20110204_1609.zip
>> > > The good news is that I eventually managed to
set up a web
>> > service
>> > > from your wsdl file. That means that I could
do a live
>> test
>> and
>> > that I
>> > > am going to add that service to my test cases.
>> > > Last but not least I attached the sample stub
and test
>> program
>> > that I
>> > > used to call your web service. Did you already
notice the
>> new
>> > > PARMSTRUCT and STRUCTSTMF parameters of
command WSDL2RPG?
>> The zip
>> > file
>> > > also includes the output produced with
PARMSTRUCT(*STMF).
>> > > Thomas.
>> > > [17][23]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
schrieb am
>> 04.02.2011
>> > 12:11:49:
>> > > > Von: [18][24]avinash_miraskar@xxxxxxxxxxx
>> > > > An: [19][25]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > > Datum: 04.02.2011 12:19
>> > > > Betreff: Re: Problem calling webservice
using WSDL2RPG
>> tool
>> > > > Gesendet von:
[20][26]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> > > >
>> > > > Hi Thomas,
>> > > >
>> > > > One more thing, while i was testing the
output got from
>> the
>> > > webservice, i
>> > > > expected the output to be in complex Output
parm
>> > "SiebelMessage"
>> > > > field, but i am
>> > > > getting the output in "#XML_spcString"(As
one longg
>> string).
>> > Can you
>> > > > please tell
>> > > > me what is that i need to correct to get
the output in
>> this
>> > complex
>> > > output
>> > > > parameter.
>> > > >
>> > > > I tested this wsdl file from a testing
tool, the output
>> comes
>> > in the
>> > > output
>> > > > parm.
>> > > >
>> > > > Basically the webservice in this example
passes nothing,
>> and
>> > gets
>> > > output in a
>> > > > complex data structure which has lot of
levels.
>> > > >
>> > > >
>> > > > Let me know if you need more info. Pls
check pgm WS0098.
>> > > >
>> > > > Regards,
>> > > > Avinash.
>> > > >
>> > > >
>> > > >
>> > > > ----- Original Message ----
>> > > > From: Thomas
Raddatz<[21][27]thomas.raddatz@xxxxxxxxxxx>
>> > > > To: HTTPAPI and FTPAPI Projects
>> <[22][28]ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
>> > > > Sent: Thu, 3 February, 2011 10:16:36 PM
>> > > > Subject: Re: Problem calling webservice
using WSDL2RPG
>> tool
>> > > >
>> > > > You are welcome and I am happy that it
works, now.
>> > > >
>> > > > Thomas.
>> > > >
>> > > > Am 03.02.2011 12:09, schrieb Avinash
Miraskar:
>> > > > > Thanks Thomas, will try and let you
know..
>> > > > >
>> > > > >
>> > > > >
>> > > > >
>> > > > > ----- Original Message ----
>> > > > > From:
>> "[23][29]thomas.raddatz@xxxxxx"<[24][30]thomas.raddatz@xxxxxx>
>> > > > > To:
[25][31]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > Sent: Wed, 2 February, 2011 6:07:23 PM
>> > > > > Subject: Re: Problem calling webservice
using WSDL2RPG
>> tool
>> > > > >
>> > > > >
>> > > > > Avinash,
>> > > > > I eventually fixed the problem with
your web
>> service. The
>> > core
>> > > problem
>> > > > > was that I did not pay attention to
the "use"
>> attribute
>> > of
>> > > element
>> > > > > <soap:body> which is a nested
element of<binding>.
>> The
>> > use
>> > > attributes
>> > > > > specifies "literal" for the body of
the envelope
>> whereas
>> > I
>> > > assumed
>> > > > > "encoded" because of the "style"
attribute of
>> > > element<soap:binding>.
>> > > > > I also add quotes to the soapAction
header, now.
>> You
>> can
>> > > download the
>> > > > > fix from the URL below:
>> > > > >
>> > > > >
>> > >
>> >
>>
>>
[1][2][2][2][26][32]http://www.tools400.de/Downloads/Freeware/Beta/WSD
L2RP
>> G_v1
>> .14
>> > bet
>> > > a2_
>> > > > > 20110202_1307.zip
>> > > > > By the way the first bug fix of
beta1 preseved the
>> order
>> > of
>> > > the<part>
>> > > > > elements of element<message>.
>> > > > > Now the generated request message as
send over the
>> wire
>> > looks
>> > > like
>> > > > > this:
>> > > > > <?xml version="1.0"
encoding="UTF-8"?>
>> > > > > <soapenv:Envelope
>> > > > >
>> > >
>> >
>>
>>
xmlns:soapenv="[2][3][3][3][27][33]http://schemas.xmlsoap.org/soap/env
elop
>> e/"
>> > > > >
>> xmlns:tns="[3][4][4][4][28][34]http://siebel.com/asi/"
>> > > > >
>> > > > >
>> > >
>> >
>>
>>
xmlns:xsdLocal0="[4][5][5][5][29][35]http://www.siebel.com/xml/BT%20Ag
ile%
>> 20Up
>> dat
>> > e%2
>> > > 0LO
>> > > > > V">
>> > > > > <soapenv:Body>
>> > > > > <tns:Mapics_spcTE>
>> > > > >
>> > > > >
>> >
<Process_spcInstance_spcId>string</Process_spcInstance_spcId>
>> > > > >
<Step_spcName>string</Step_spcName>
>> > > > >
<_XML_spcString>string</_XML_spcString>
>> > > > >
<Object_spcId>string</Object_spcId>
>> > > > >
>> > > > >
>> > >
>> >
>>
>>
<Siebel_spcOperation_spcObject_spcId>string</Siebel_spcOperation_spcOb
>> > > > > ject_spcId>
>> > > > > <SiebelMessage>
>> > > > >
<xsdLocal0:ListOfAgileUpdateLov>
>> > > > >
<xsdLocal0:ListOfValues>
>> > > > >
>> > > <xsdLocal0:Type>string</xsdLocal0:Type>
>> > > > >
>> > > <xsdLocal0:Name>string</xsdLocal0:Name>
>> > > > >
>> > > <xsdLocal0:Value>string</xsdLocal0:Value>
>> > > > >
>> > > <xsdLocal0:SubType>string</xsdLocal0:SubType>
>> > > > >
>> > > <xsdLocal0:Active>string</xsdLocal0:Active>
>> > > > >
</xsdLocal0:ListOfValues>
>> > > > >
</xsdLocal0:ListOfAgileUpdateLov>
>> > > > > </SiebelMessage>
>> > > > >
<Error_spcCode>string</Error_spcCode>
>> > > > >
>> <Error_spcMessage>string</Error_spcMessage>
>> > > > > </tns:Mapics_spcTE>
>> > > > > </soapenv:Body>
>> > > > > </soapenv:Envelope>
>> > > > > Unfortunately I am not able
(actually it is Axis2)
>> to
>> > generate
>> > > a Java
>> > > > > web service for your wsdl file and
therefore I
>> cannot do
>> > a
>> > > live test.
>> > > > > Please regenerate your stub module
and let me know
>> if it
>> > > works, now.
>> > > > > Thomas.
>> > > > >
[30][36]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx schrieb
>> am
>> > 01.02.2011
>> > > 07:23:04:
>> > > > > > Von:
[31][37]avinash_miraskar@xxxxxxxxxxx
>> > > > > > An:
[32][38]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > > Datum: 01.02.2011 07:29
>> > > > > > Betreff: Re: Problem calling
webservice using
>> WSDL2RPG
>> > tool
>> > > > > > Gesendet von:
>> [33][39]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > >
>> > > > > > Hi Thomas,
>> > > > > >
>> > > > > > I tried installing the
1.14beta1 release, but
>> the
>> > problem
>> > > still
>> > > > > persists, its
>> > > > > > still generating wrong soap
request message in
>> the
>> > program,
>> > > To
>> > > > > > correct this, i
>> > > > > > used a functional SOAP testing
tool to generate
>> the
>> > correct
>> > > soap
>> > > > > request and
>> > > > > > copy pasted the code into my
program to make it
>> work.
>> > > > > >
>> > > > > > Additionally i had to correct
the program to add
>> > double
>> > > quotes to
>> > > > > soap action.
>> > > > > >
>> > > > > > And regarding "content-type",
as you said
>> omitting
>> > > "charset=utf-8"
>> > > > > > still works.
>> > > > > > Let me know what you think of
these.. Thanks for
>> your
>> > help
>> > > !
>> > > > > >
>> > > > > > Regards,
>> > > > > > Avinash.
>> > > > > >
>> > > > > >
>> > > > > >
>> > > > > > ----- Original Message ----
>> > > > > > From: Thomas
>> Raddatz<[34][40]thomas.raddatz@xxxxxxxxxxx>
>> > > > > > To: HTTPAPI and FTPAPI
>> > >
Projects<[35][41]ftpapi@xxxxxxxxxxxxxxxxxxxxxx>
>> > > > > > Sent: Tue, 1 February, 2011
3:06:47 AM
>> > > > > > Subject: Re: Problem calling
webservice using
>> WSDL2RPG
>> > tool
>> > > > > >
>> > > > > > Avinash,
>> > > > > >
>> > > > > > I wonder if you really had to
add
>> "charset=utf-8"
>> to
>> > the
>> > > > > "content-type"
>> > > > > > header because "utf-8" should
be the default
>> value.
>> > Anyway,
>> > > if it
>> > > > > works
>> > > > > > anything is fine with it.
>> > > > > >
>> > > > > > I fixed the problem with the
soap request and
>> made
>> > > 1.14beta1
>> > > > > available on
>> > > > > > my Freeware page:
>> > > > > >
>> > > > > >
>> > >
>> >
>>
>>
[5][6][6][6][36][42]http://www.tools400.de/Downloads/Freeware/Beta/WSD
L2RP
>> G_v1
>> .
>> > > > > > 14beta1_20110131_2207.zip
>> > > > > >
>> > > > > >
>> > > > > > Please use the direct link
because that beta is
>> not
>> > yet
>> > > available on
>> > > > > the
>> > > > > > "official" WSDL2RPG page. There
is still a
>> little
>> bug
>> > in
>> > > A_INSTALL
>> > > > > (batch
>> > > > > > install option on v5r3 systems)
that I want to
>> fix
>> > before.
>> > > > > >
>> > > > > > Please let me know if beta1
works for you.
>> > > > > >
>> > > > > > Thomas.
>> > > > > >
>> > > > > >
>> > > > > > Am 31.01.2011 12:20, schrieb
Avinash Miraskar:
>> > > > > > > Thanks Thomas, basically i
corrected the
>> > content-type
>> > > from
>> > > > > text/xml to
>> > > > > > >text/xml;
>> > > > > > > charset=utf-8.
Additionally the double quotes
>> to
>> > soap
>> > > action did
>> > > > > help to
>> > > > > > >resolve
>> > > > > > > my issue.
>> > > > > > >
>> > > > > > > Apart from this the RPG
stub had generated
>> wrong
>> > soap
>> > > request,
>> > > > > which i
>> > > > > > >corrected
>> > > > > > > it in WS0090 program. I
have attached the
>> code
>> for
>> > your
>> > > reference.
>> > > > > > >
>> > > > > > > When i used the code
generated by the tool,
>> it
>> used
>> > to
>> > > give me
>> > > > > these set of
>> > > > > > > errors:
>> > > > > > > 13: HTTP/1.1 500 Internal
Server Error
>> > > > > > > SOAP-ENV:Server: There is
no active Web
>> Service
>> > with
>> > > operation
>> > > > > named
>> > > > > > >
'[37][43]http://siebel.com/asi/:Mapics
>> > TE'.(SBL-EAI-04313)
>> > > > > > >
>> > > > > > > Let me know what you think
of them.. Thank
>> you
>> for
>> > your
>> > > help..
>> > > > > > >
>> > > > > > > Regards,
>> > > > > > > Avinash.
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > > > ----- Original Message
----
>> > > > > > > From:
>> >
"[38][44]thomas.raddatz@xxxxxx"<[39][45]thomas.raddatz@xxxxxx>
>> > > > > > > To:
[40][46]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > > > Sent: Mon, 31 January,
2011 3:25:04 PM
>> > > > > > > Subject: Re: Problem
calling webservice using
>> > WSDL2RPG
>> > > tool
>> > > > > > >
>> > > > > > >
>> > > > > > > Avinash,
>> > > > > > > SoapUI specifies the
soap action
>> parameter
>> as
>> > shown
>> > > below:
>> > > > > > > Content-Type:
text/xml;charset=UTF-8
>> > > > > > > SOAPAction:
>> > >
"rpc/[41][47]http://siebel.com/asi/:Mapics_spcTE"
>> > > > > > > User-Agent: Jakarta
>> Commons-HttpClient/3.1
>> > > > > > > Host:
sbluatweb01.ad.agi
>> > > > > > > Proxy-Connection:
Keep-Alive
>> > > > > > > Content-Length: 1252
>> > > > > > > Please open your web
service stub module
>> > (WS0099)
>> > > and add the
>> > > > > double
>> > > > > > > quotes to the soap
action parameter likes
>> this:
>> > > > > > > headers.contentType
=
>> > > > > > >
>> > >
ManagedMemoryDataSource_getContentType(hDataSource);
>> > > > > > > headers.soapAction
=
>> > > > >
'"rpc/[42][48]http://siebel.com/asi/:Mapics_spcTE"';
>> > > > > > > Then recompile the
stub module and try it
>> > again.
>> > > > > > > Please let me know if
that solved the
>> problem.
>> > I do
>> > > not yet
>> > > > > know why
>> > > > > > > the soap action
parameter has to be set
>> into
>> > double
>> > > quotes. I
>> > > > > will try
>> > > > > > > to get an answer to
that question. Maybe
>> that
>> > Scott
>> > > can shed
>> > > > > some
>> > > > > > > light on that.
>> > > > > > > Thomas.
>> > > > > > >
[43][49]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> schrieb am
>> > > 31.01.2011
>> > > > > 07:29:52:
>> > > > > > > > Von:
[44][50]avinash_miraskar@xxxxxxxxxxx
>> > > > > > > > An:
[45][51]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > > > > Datum: 31.01.2011
09:59
>> > > > > > > > Betreff: Problem
calling webservice
>> using
>> > > WSDL2RPG tool
>> > > > > > > > Gesendet von:
>> > > [46][52]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> > > > > > > >
>> > > > > > > > Hello All,
>> > > > > > > >
>> > > > > > > > I have installed
WSDL2RPG tool and i
>> > generated
>> > > > the RPG stub
>> > > > > and
>> > > > > > > > program out of
>> > > > > > > > it. Later when i
try to invoke the
>> program,
>> > it
>> > > gives me
>> > > > > these
>> > > > > > > errors:
>> > > > > > > >
>> > > > > > > > 1) 13: HTTP/1.1
400 Bad Request.
>> > > > > > > >
2)SOAP-ENV:Client: SOAPAction '<?>' is
>> of
>> > > invalid format:
>> > > > > SOAPAction
>> > > > > > > should
>> > > > > > > > be either
rpc/operationName or
>> > > document/operationName.
>> > > > > > > .
>> > > > > > > >
>> > > > > > > > I have attached
the following :
>> > > > > > > > 1) WSDL file
>> > > > > > > > 2)Corresponding
RPG Program and stub
>> > generated
>> > > out of
>> > > > > WSDL2RPG tool.
>> > > > > > > > 3) HTTP error log
after invoking the
>> RPG
>> > > program.
>> > > > > > > >
>> > > > > > > > Can someone
please help me resolve
>> this
>> > issue.
>> > > Thanks for
>> > > > > your help
>> > > > > > > > and let me
>> > > > > > > > know if you need
additional info.
>> > > > > > > >
>> > > > > > > > Regards,
>> > > > > > > > Avinash.
>> > > > > > > >
>> > > > > > > > [Anhang
"MapicTEType.WSDL" gelöscht
>> von
>> > Thomas
>> > > > > Raddatz/OBI/DE]
>> > > > > > > > [Anhang
"RPGsources.zip" gelöscht von
>> > Thomas
>> > > > > Raddatz/OBI/DE] [Anhang
>> > > > > > > >
"httpapi_debug.txt" gelöscht von
>> Thomas
>> > > Raddatz/OBI/DE]
>> > > > > > > >
>> > > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > > > -
>> > > > > > > > This is the
FTPAPI mailing list. To
>> > > > unsubscribe, please go
>> > > > > to:
>> > > > > > > >
>> > >
>>
>>
[1][6][7][7][7][47][53]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.
>> > >
>>
[7][8][8][8][48][54]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > -
>> > > > > > > This is the FTPAPI mailing
list. To
>> unsubscribe,
>> > please
>> > > go to:
>> > > > > > >
>> > >
>>
[8][9][9][9][49][55]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > -
>> > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > -
>> > > > > > This is the FTPAPI mailing
list. To
>> unsubscribe,
>> > please go
>> > > to:
>> > > > > >
>> >
>>
>>
[9][10][10][10][50][56]http://www.scottklement.com/mailman/listinfo/ft
papi
>> > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > -
>> > > > > >
>> > > > > >
>> > > > > >
>> > > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > > > -
>> > > > > > This is the FTPAPI mailing
list. To
>> unsubscribe,
>> > please go
>> > > to:
>> > > > > >
>> >
>>
>>
[10][11][11][11][51][57]http://www.scottklement.com/mailman/listinfo/f
tpap
>> 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.
>> > > >
>> >
>>
>>
>[12][12][12][52][58]http://www.tools400.de/Downloads/Freeware/Beta/WS
DL2R
>> PG_v
>> 1.
>> > > > 14beta2_20110202_1307.zip
>> > > > >p
>> > > > >
>> > > > > 2.
>>
[13][13][13][53][59]http://schemas.xmlsoap.org/soap/envelope/
>> > > > > 3.
[14][14][14][54][60]http://siebel.com/asi/
>> > > > > 4.
>> >
>>
[15][15][15][55][61]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
V
>> > > > > 5.
>> > >
>> >
>>
>>
[16][16][16][56][62]http://www.tools400.de/Downloads/Freeware/Beta/WSD
L2RP
>> G_v1
>> > > > > 6.
>> >
>>
[17][17][17][57][63]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > 7.
>> >
>>
[18][18][18][58][64]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > 8.
>> >
>>
[19][19][19][59][65]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > 9.
>> >
>>
[20][20][20][60][66]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > > 10.
>> >
>>
[21][21][21][61][67]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > >
>> > > > >
>> > > > >
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > -
>> > > > > This is the FTPAPI mailing list. To
unsubscribe,
>> please
>> go
>> > to:
>> > > > >
>>
[22][22][22][62][68]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > -
>> > > > >
>> > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > -
>> > > > This is the FTPAPI mailing list. To
unsubscribe, please
>> go to:
>> > > >
>>
[23][23][23][63][69]http://www.scottklement.com/mailman/listinfo/ftpap
i
>> > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > -
>> > > >
>> > > >
>> > > > [Anhang "RPGsources.zip" gelöscht von
Thomas
>> Raddatz/OBI/DE]
>> > > >
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > > -
>> > > > This is the FTPAPI mailing list. To
unsubscribe, please
>> go to:
>> > > >
>>
[24][24][24][64][70]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.
>> > >
>>
>>
[25][25][65][71]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
G_v1
>> .
>> > > 14beta3_20110204_1609.zip
>> > >
>> > > 2.
>> >
>>
>>
[26][26][66][72]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
G_v1
>> .14b
>> eta2
>> > _
>> > > 3.
[27][27][67][73]http://schemas.xmlsoap.org/soap/envelope/
>> > > 4. [28][28][68][74]http://siebel.com/asi/
>> > > 5.
>>
[29][29][69][75]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> > > 6.
>>
>>
[30][30][70][76]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
G_v1
>> > > 7.
>>
[31][31][71][77]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 8.
>>
[32][32][72][78]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 9.
>>
[33][33][73][79]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 10.
>>
[34][34][74][80]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 11.
>>
[35][35][75][81]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 12.
>>
>>
[36][36][76][82]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
G_v1
>> > > 13.
[37][37][77][83]http://schemas.xmlsoap.org/soap/envelope/
>> > > 14. [38][38][78][84]http://siebel.com/asi/
>> > > 15.
>>
[39][39][79][85]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> > > 16.
>>
>>
[40][40][80][86]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
G_v1
>> > > 17.
>>
[41][41][81][87]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 18.
>>
[42][42][82][88]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 19.
>>
[43][43][83][89]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 20.
>>
[44][44][84][90]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 21.
>>
[45][45][85][91]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 22.
>>
[46][46][86][92]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 23.
>>
[47][47][87][93]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > > 24.
>>
[48][48][88][94]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > >
>> > >
>> > > [Anhang "test009" gelöscht von Thomas
Raddatz/OBI/DE] [Anhang
>> > > "test010" gelöscht von Thomas Raddatz/OBI/DE]
>> > >
>> >
>>
>>
----------------------------------------------------------------------
>> > -
>> > > This is the FTPAPI mailing list. To unsubscribe,
please go
>> to:
>> > >
>>
[49][49][89][95]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.
>>
>>
[50][90][96]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
.14b
>> eta3
>> _
>> > 2.
>>
>>
[51][91][97]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
.14b
>> et
>> > 3.
[52][92][98]http://schemas.xmlsoap.org/soap/envelope/
>> > 4. [53][93][99]http://siebel.com/asi/
>> > 5.
[54][94][100]http://www.siebel.com/xml/BT%20Agile%20Update%2
>> > 6.
>>
[55][95][101]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v
1
>> > 7.
[56][96][102]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 8.
[57][97][103]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 9.
[58][98][104]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 10.
[59][99][105]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 11.
[60][100][106]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 12.
>>
[61][101][107]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 13.
[62][102][108]http://schemas.xmlsoap.org/soap/envelope/
>> > 14. [63][103][109]http://siebel.com/asi/
>> > 15.
[64][104][110]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> > 16.
>>
[65][105][111]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 17.
[66][106][112]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 18.
[67][107][113]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 19.
[68][108][114]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 20.
[69][109][115]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 21.
[70][110][116]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 22.
[71][111][117]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 23.
[72][112][118]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 24.
[73][113][119]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 25.
>>
[74][114][120]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 26.
>>
>>
[75][115][121]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1.14
>> beta2
>> _
>> > 27.
[76][116][122]http://schemas.xmlsoap.org/soap/envelope/
>> > 28. [77][117][123]http://siebel.com/asi/
>> > 29.
[78][118][124]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> > 30.
>>
[79][119][125]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 31.
[80][120][126]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 32.
[81][121][127]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 33.
[82][122][128]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 34.
[83][123][129]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 35.
[84][124][130]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 36.
>>
[85][125][131]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 37.
[86][126][132]http://schemas.xmlsoap.org/soap/envelope/
>> > 38. [87][127][133]http://siebel.com/asi/
>> > 39.
[88][128][134]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> > 40.
>>
[89][129][135]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_
v1
>> > 41.
[90][130][136]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 42.
[91][131][137]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 43.
[92][132][138]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 44.
[93][133][139]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 45.
[94][134][140]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 46.
[95][135][141]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 47.
[96][136][142]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 48.
[97][137][143]http://www.scottklement.com/mailman/listinfo/ftpapi
>> > 49.
[98][138][144]http://www.scottklement.com/mailman/listinfo/ftpapi
>> >
>> >
>> >
>> >
>>
>>
----------------------------------------------------------------------
>> -
>> > This is the FTPAPI mailing list. To unsubscribe, please
go to:
>> >
[99][139][145]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.
>>
[140][146]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4bet
>> 2.
>>
[141][147]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4
>> 3. [142][148]http://schemas.xmlsoap.org/soap/envelope/
>> 4. [143][149]http://siebel.com/asi/
>> 5. [144][150]http://www.siebel.com/xml/BT%20Agile%20Updat
>> 6.
[145][151]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 7.
[146][152]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 8.
[147][153]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 9.
[148][154]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 10.
[149][155]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 11.
[150][156]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 12.
[151][157]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 13. [152][158]http://schemas.xmlsoap.org/soap/envelope/
>> 14. [153][159]http://siebel.com/asi/
>> 15.
[154][160]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 16.
[155][161]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 17.
[156][162]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 18.
[157][163]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 19.
[158][164]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 20.
[159][165]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 21.
[160][166]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 22.
[161][167]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 23.
[162][168]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 24.
[163][169]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 25.
[164][170]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 26.
>>
[165][171]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4beta
>> 2
>> 27. [166][172]http://schemas.xmlsoap.org/soap/envelope/
>> 28. [167][173]http://siebel.com/asi/
>> 29.
[168][174]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 30.
[169][175]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 31.
[170][176]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 32.
[171][177]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 33.
[172][178]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 34.
[173][179]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 35.
[174][180]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 36.
[175][181]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 37. [176][182]http://schemas.xmlsoap.org/soap/envelope/
>> 38. [177][183]http://siebel.com/asi/
>> 39.
[178][184]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 40.
[179][185]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 41.
[180][186]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 42.
[181][187]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 43.
[182][188]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 44.
[183][189]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 45.
[184][190]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 46.
[185][191]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 47.
[186][192]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 48.
[187][193]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 49.
[188][194]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 50.
>>
[189][195]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4beta
>> 3_
>> 51.
>>
[190][196]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4bet
>> 52. [191][197]http://schemas.xmlsoap.org/soap/envelope/
>> 53. [192][198]http://siebel.com/asi/
>> 54.
[193][199]http://www.siebel.com/xml/BT%20Agile%20Update%2
>> 55.
[194][200]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 56.
[195][201]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 57.
[196][202]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 58.
[197][203]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 59.
[198][204]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 60.
[199][205]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 61.
[200][206]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 62. [201][207]http://schemas.xmlsoap.org/soap/envelope/
>> 63. [202][208]http://siebel.com/asi/
>> 64.
[203][209]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 65.
[204][210]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 66.
[205][211]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 67.
[206][212]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 68.
[207][213]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 69.
[208][214]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 70.
[209][215]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 71.
[210][216]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 72.
[211][217]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 73.
[212][218]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 74.
[213][219]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 75.
>>
[214][220]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.1
4beta
>> 2_
>> 76. [215][221]http://schemas.xmlsoap.org/soap/envelope/
>> 77. [216][222]http://siebel.com/asi/
>> 78.
[217][223]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 79.
[218][224]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 80.
[219][225]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 81.
[220][226]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 82.
[221][227]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 83.
[222][228]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 84.
[223][229]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 85.
[224][230]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 86. [225][231]http://schemas.xmlsoap.org/soap/envelope/
>> 87. [226][232]http://siebel.com/asi/
>> 88.
[227][233]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 89.
[228][234]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 90.
[229][235]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 91.
[230][236]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 92.
[231][237]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 93.
[232][238]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 94.
[233][239]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 95.
[234][240]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 96.
[235][241]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 97.
[236][242]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 98.
[237][243]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 99.
[238][244]http://www.scottklement.com/mailman/listinfo/ftpapi
>>
----------------------------------------------------------------------
>> -
>> This is the FTPAPI mailing list. To unsubscribe, please go
to:
>> [239][245]http://www.scottklement.com/mailman/listinfo/ftpapi
>>
----------------------------------------------------------------------
>> -
>>
>> References
>>
>> 1. mailto:[246]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 2. mailto:[247]avinash_miraskar@xxxxxxxxxxx
>> 3. mailto:[248]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 4. mailto:[249]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 5. mailto:[250]thomas.raddatz@xxxxxx
>> 6. mailto:[251]thomas.raddatz@xxxxxx
>> 7. mailto:[252]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 8. mailto:[253]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 9. mailto:[254]avinash_miraskar@xxxxxxxxxxx
>> 10. mailto:[255]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 11. mailto:[256]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 12. [257]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV'
>> 13. mailto:[258]thomas.raddatz@xxxxxx
>> 14. mailto:[259]thomas.raddatz@xxxxxx
>> 15. mailto:[260]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 16.
[261]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
>> 17. mailto:[262]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 18. mailto:[263]avinash_miraskar@xxxxxxxxxxx
>> 19. mailto:[264]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 20. mailto:[265]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 21. mailto:[266]thomas.raddatz@xxxxxxxxxxx
>> 22. mailto:[267]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 23. mailto:[268]thomas.raddatz@xxxxxx
>> 24. mailto:[269]thomas.raddatz@xxxxxx
>> 25. mailto:[270]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 26.
[271]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 27. [272]http://schemas.xmlsoap.org/soap/envelope/
>> 28. [273]http://siebel.com/asi/
>> 29. [274]http://www.siebel.com/xml/BT%20Agile%20Up
>> 30. mailto:[275]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 31. mailto:[276]avinash_miraskar@xxxxxxxxxxx
>> 32. mailto:[277]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 33. mailto:[278]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 34. mailto:[279]thomas.raddatz@xxxxxxxxxxx
>> 35. mailto:[280]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 36.
[281]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 37. [282]http://siebel.com/asi/:Mapics
>> 38. mailto:[283]thomas.raddatz@xxxxxx
>> 39. mailto:[284]thomas.raddatz@xxxxxx
>> 40. mailto:[285]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 41. [286]http://siebel.com/asi/:Mapics_spcTE
>> 42. [287]http://siebel.com/asi/:Mapics_spcTE
>> 43. mailto:[288]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 44. mailto:[289]avinash_miraskar@xxxxxxxxxxx
>> 45. mailto:[290]ftpapi@xxxxxxxxxxxxxxxxxxxxxx
>> 46. mailto:[291]ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
>> 47. [292]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 48. [293]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 49. [294]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 50. [295]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 51. [296]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 52.
[297]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v
>> 53. [298]http://schemas.xmlsoap.org/soap/envelope/
>> 54. [299]http://siebel.com/asi/
>> 55. [300]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 56.
[301]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 57. [302]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 58. [303]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 59. [304]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 60. [305]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 61. [306]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 62. [307]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 63. [308]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 64. [309]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 65.
[310]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 66.
[311]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14b
>> 67. [312]http://schemas.xmlsoap.org/soap/envelope/
>> 68. [313]http://siebel.com/asi/
>> 69. [314]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 70.
[315]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 71. [316]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 72. [317]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 73. [318]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 74. [319]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 75. [320]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 76.
[321]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 77. [322]http://schemas.xmlsoap.org/soap/envelope/
>> 78. [323]http://siebel.com/asi/
>> 79. [324]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 80.
[325]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 81. [326]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 82. [327]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 83. [328]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 84. [329]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 85. [330]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 86. [331]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 87. [332]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 88. [333]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 89. [334]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 90.
[335]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
3
>> 91.
[336]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
>> 92. [337]http://schemas.xmlsoap.org/soap/envelope/
>> 93. [338]http://siebel.com/asi/
>> 94. [339]http://www.siebel.com/xml/BT%20Agile%20Update%2
>> 95.
[340]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 96. [341]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 97. [342]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 98. [343]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 99. [344]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 100. [345]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 101.
[346]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 102. [347]http://schemas.xmlsoap.org/soap/envelope/
>> 103. [348]http://siebel.com/asi/
>> 104. [349]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 105.
[350]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 106. [351]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 107. [352]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 108. [353]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 109. [354]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 110. [355]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 111. [356]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 112. [357]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 113. [358]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 114.
[359]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 115.
[360]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
2
>> 116. [361]http://schemas.xmlsoap.org/soap/envelope/
>> 117. [362]http://siebel.com/asi/
>> 118. [363]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 119.
[364]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 120. [365]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 121. [366]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 122. [367]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 123. [368]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 124. [369]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 125.
[370]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 126. [371]http://schemas.xmlsoap.org/soap/envelope/
>> 127. [372]http://siebel.com/asi/
>> 128. [373]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 129.
[374]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 130. [375]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 131. [376]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 132. [377]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 133. [378]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 134. [379]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 135. [380]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 136. [381]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 137. [382]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 138. [383]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 139. [384]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 140.
[385]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
>> 141.
[386]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
>> 142. [387]http://schemas.xmlsoap.org/soap/envelope/
>> 143. [388]http://siebel.com/asi/
>> 144. [389]http://www.siebel.com/xml/BT%20Agile%20Updat
>> 145.
[390]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 146. [391]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 147. [392]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 148. [393]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 149. [394]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 150. [395]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 151.
[396]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 152. [397]http://schemas.xmlsoap.org/soap/envelope/
>> 153. [398]http://siebel.com/asi/
>> 154. [399]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 155.
[400]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 156. [401]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 157. [402]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 158. [403]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 159. [404]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 160. [405]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 161. [406]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 162. [407]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 163. [408]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 164.
[409]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 165.
[410]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
2
>> 166. [411]http://schemas.xmlsoap.org/soap/envelope/
>> 167. [412]http://siebel.com/asi/
>> 168. [413]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 169.
[414]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 170. [415]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 171. [416]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 172. [417]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 173. [418]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 174. [419]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 175.
[420]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 176. [421]http://schemas.xmlsoap.org/soap/envelope/
>> 177. [422]http://siebel.com/asi/
>> 178. [423]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 179.
[424]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 180. [425]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 181. [426]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 182. [427]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 183. [428]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 184. [429]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 185. [430]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 186. [431]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 187. [432]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 188. [433]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 189.
[434]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
3_
>> 190.
[435]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
>> 191. [436]http://schemas.xmlsoap.org/soap/envelope/
>> 192. [437]http://siebel.com/asi/
>> 193. [438]http://www.siebel.com/xml/BT%20Agile%20Update%2
>> 194.
[439]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 195. [440]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 196. [441]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 197. [442]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 198. [443]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 199. [444]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 200.
[445]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 201. [446]http://schemas.xmlsoap.org/soap/envelope/
>> 202. [447]http://siebel.com/asi/
>> 203. [448]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 204.
[449]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 205. [450]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 206. [451]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 207. [452]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 208. [453]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 209. [454]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 210. [455]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 211. [456]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 212. [457]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 213.
[458]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 214.
[459]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
2_
>> 215. [460]http://schemas.xmlsoap.org/soap/envelope/
>> 216. [461]http://siebel.com/asi/
>> 217. [462]http://www.siebel.com/xml/BT%20Agile%20Update%20LO
>> 218.
[463]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 219. [464]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 220. [465]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 221. [466]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 222. [467]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 223. [468]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 224.
[469]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 225. [470]http://schemas.xmlsoap.org/soap/envelope/
>> 226. [471]http://siebel.com/asi/
>> 227. [472]http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
>> 228.
[473]http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
>> 229. [474]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 230. [475]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 231. [476]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 232. [477]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 233. [478]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 234. [479]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 235. [480]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 236. [481]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 237. [482]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 238. [483]http://www.scottklement.com/mailman/listinfo/ftpapi
>> 239. [484]http://www.scottklement.com/mailman/listinfo/ftpapi
>>
>>
>>
>>
>>
----------------------------------------------------------------------
-
>> This is the FTPAPI mailing list. To unsubscribe, please go to:
>> [485]http://www.scottklement.com/mailman/listinfo/ftpapi
>>
----------------------------------------------------------------------
-
>
----------------------------------------------------------------------
-
> This is the FTPAPI mailing list. To unsubscribe, please go to:
> [486]http://www.scottklement.com/mailman/listinfo/ftpapi
>
----------------------------------------------------------------------
-
>
----------------------------------------------------------------------
-
This is the FTPAPI mailing list. To unsubscribe, please go to:
[487]http://www.scottklement.com/mailman/listinfo/ftpapi
----------------------------------------------------------------------
-
References
1. http://www.siebel.com/xml/BT%20Account%20IO%20-%20Zest:ListOfBtAccoun
2. mailto:thomas.raddatz@xxxxxx
3. mailto:thomas.raddatz@xxxxxx
4. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
5. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
6. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
7. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
8. mailto:avinash_miraskar@xxxxxxxxxxx
9. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
10. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
11. mailto:thomas.raddatz@xxxxxx
12. mailto:thomas.raddatz@xxxxxx
13. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
14. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
15. mailto:avinash_miraskar@xxxxxxxxxxx
16. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
17. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
18. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV'
19. mailto:thomas.raddatz@xxxxxx
20. mailto:thomas.raddatz@xxxxxx
21. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
22. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v
23. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
24. mailto:avinash_miraskar@xxxxxxxxxxx
25. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
26. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
27. mailto:thomas.raddatz@xxxxxxxxxxx
28. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
29. mailto:thomas.raddatz@xxxxxx
30. mailto:thomas.raddatz@xxxxxx
31. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
32. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
33. http://schemas.xmlsoap.org/soap/envelop
34. http://siebel.com/asi/
35. http://www.siebel.com/xml/BT%20Agile%
36. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
37. mailto:avinash_miraskar@xxxxxxxxxxx
38. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
39. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
40. mailto:thomas.raddatz@xxxxxxxxxxx
41. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
42. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
43. http://siebel.com/asi/:Mapics
44. mailto:thomas.raddatz@xxxxxx
45. mailto:thomas.raddatz@xxxxxx
46. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
47. http://siebel.com/asi/:Mapics_spcTE
48. http://siebel.com/asi/:Mapics_spcTE
49. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
50. mailto:avinash_miraskar@xxxxxxxxxxx
51. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
52. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
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/ftpap
58. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2R
59. http://schemas.xmlsoap.org/soap/envelope/
60. http://siebel.com/asi/
61. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
62. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RP
63. http://www.scottklement.com/mailman/listinfo/ftpapi
64. http://www.scottklement.com/mailman/listinfo/ftpapi
65. http://www.scottklement.com/mailman/listinfo/ftpapi
66. http://www.scottklement.com/mailman/listinfo/ftpapi
67. http://www.scottklement.com/mailman/listinfo/ftpapi
68. http://www.scottklement.com/mailman/listinfo/ftpapi
69. http://www.scottklement.com/mailman/listinfo/ftpapi
70. http://www.scottklement.com/mailman/listinfo/ftpapi
71. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
72. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
73. http://schemas.xmlsoap.org/soap/envelope/
74. http://siebel.com/asi/
75. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
76. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
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.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
83. http://schemas.xmlsoap.org/soap/envelope/
84. http://siebel.com/asi/
85. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
86. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
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. http://www.scottklement.com/mailman/listinfo/ftpapi
94. http://www.scottklement.com/mailman/listinfo/ftpapi
95. http://www.scottklement.com/mailman/listinfo/ftpapi
96. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14b
97. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14b
98. http://schemas.xmlsoap.org/soap/envelope/
99. http://siebel.com/asi/
100. http://www.siebel.com/xml/BT%20Agile%20Update%2
101. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
102. http://www.scottklement.com/mailman/listinfo/ftpapi
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.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
108. http://schemas.xmlsoap.org/soap/envelope/
109. http://siebel.com/asi/
110. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
111. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
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.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
121. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
122. http://schemas.xmlsoap.org/soap/envelope/
123. http://siebel.com/asi/
124. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
125. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
126. http://www.scottklement.com/mailman/listinfo/ftpapi
127. http://www.scottklement.com/mailman/listinfo/ftpapi
128. http://www.scottklement.com/mailman/listinfo/ftpapi
129. http://www.scottklement.com/mailman/listinfo/ftpapi
130. http://www.scottklement.com/mailman/listinfo/ftpapi
131. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
132. http://schemas.xmlsoap.org/soap/envelope/
133. http://siebel.com/asi/
134. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
135. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
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.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
147. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
148. http://schemas.xmlsoap.org/soap/envelope/
149. http://siebel.com/asi/
150. http://www.siebel.com/xml/BT%20Agile%20Updat
151. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
152. http://www.scottklement.com/mailman/listinfo/ftpapi
153. http://www.scottklement.com/mailman/listinfo/ftpapi
154. http://www.scottklement.com/mailman/listinfo/ftpapi
155. http://www.scottklement.com/mailman/listinfo/ftpapi
156. http://www.scottklement.com/mailman/listinfo/ftpapi
157. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
158. http://schemas.xmlsoap.org/soap/envelope/
159. http://siebel.com/asi/
160. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
161. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
162. http://www.scottklement.com/mailman/listinfo/ftpapi
163. http://www.scottklement.com/mailman/listinfo/ftpapi
164. http://www.scottklement.com/mailman/listinfo/ftpapi
165. http://www.scottklement.com/mailman/listinfo/ftpapi
166. http://www.scottklement.com/mailman/listinfo/ftpapi
167. http://www.scottklement.com/mailman/listinfo/ftpapi
168. http://www.scottklement.com/mailman/listinfo/ftpapi
169. http://www.scottklement.com/mailman/listinfo/ftpapi
170. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
171. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
172. http://schemas.xmlsoap.org/soap/envelope/
173. http://siebel.com/asi/
174. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
175. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
176. http://www.scottklement.com/mailman/listinfo/ftpapi
177. http://www.scottklement.com/mailman/listinfo/ftpapi
178. http://www.scottklement.com/mailman/listinfo/ftpapi
179. http://www.scottklement.com/mailman/listinfo/ftpapi
180. http://www.scottklement.com/mailman/listinfo/ftpapi
181. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
182. http://schemas.xmlsoap.org/soap/envelope/
183. http://siebel.com/asi/
184. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
185. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
186. http://www.scottklement.com/mailman/listinfo/ftpapi
187. http://www.scottklement.com/mailman/listinfo/ftpapi
188. http://www.scottklement.com/mailman/listinfo/ftpapi
189. http://www.scottklement.com/mailman/listinfo/ftpapi
190. http://www.scottklement.com/mailman/listinfo/ftpapi
191. http://www.scottklement.com/mailman/listinfo/ftpapi
192. http://www.scottklement.com/mailman/listinfo/ftpapi
193. http://www.scottklement.com/mailman/listinfo/ftpapi
194. http://www.scottklement.com/mailman/listinfo/ftpapi
195. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
196. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
197. http://schemas.xmlsoap.org/soap/envelope/
198. http://siebel.com/asi/
199. http://www.siebel.com/xml/BT%20Agile%20Update%2
200. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
201. http://www.scottklement.com/mailman/listinfo/ftpapi
202. http://www.scottklement.com/mailman/listinfo/ftpapi
203. http://www.scottklement.com/mailman/listinfo/ftpapi
204. http://www.scottklement.com/mailman/listinfo/ftpapi
205. http://www.scottklement.com/mailman/listinfo/ftpapi
206. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
207. http://schemas.xmlsoap.org/soap/envelope/
208. http://siebel.com/asi/
209. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
210. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
211. http://www.scottklement.com/mailman/listinfo/ftpapi
212. http://www.scottklement.com/mailman/listinfo/ftpapi
213. http://www.scottklement.com/mailman/listinfo/ftpapi
214. http://www.scottklement.com/mailman/listinfo/ftpapi
215. http://www.scottklement.com/mailman/listinfo/ftpapi
216. http://www.scottklement.com/mailman/listinfo/ftpapi
217. http://www.scottklement.com/mailman/listinfo/ftpapi
218. http://www.scottklement.com/mailman/listinfo/ftpapi
219. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
220. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta
221. http://schemas.xmlsoap.org/soap/envelope/
222. http://siebel.com/asi/
223. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
224. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
225. http://www.scottklement.com/mailman/listinfo/ftpapi
226. http://www.scottklement.com/mailman/listinfo/ftpapi
227. http://www.scottklement.com/mailman/listinfo/ftpapi
228. http://www.scottklement.com/mailman/listinfo/ftpapi
229. http://www.scottklement.com/mailman/listinfo/ftpapi
230. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
231. http://schemas.xmlsoap.org/soap/envelope/
232. http://siebel.com/asi/
233. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
234. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
235. http://www.scottklement.com/mailman/listinfo/ftpapi
236. http://www.scottklement.com/mailman/listinfo/ftpapi
237. http://www.scottklement.com/mailman/listinfo/ftpapi
238. http://www.scottklement.com/mailman/listinfo/ftpapi
239. http://www.scottklement.com/mailman/listinfo/ftpapi
240. http://www.scottklement.com/mailman/listinfo/ftpapi
241. http://www.scottklement.com/mailman/listinfo/ftpapi
242. http://www.scottklement.com/mailman/listinfo/ftpapi
243. http://www.scottklement.com/mailman/listinfo/ftpapi
244. http://www.scottklement.com/mailman/listinfo/ftpapi
245. http://www.scottklement.com/mailman/listinfo/ftpapi
246. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
247. mailto:avinash_miraskar@xxxxxxxxxxx
248. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
249. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
250. mailto:thomas.raddatz@xxxxxx
251. mailto:thomas.raddatz@xxxxxx
252. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
253. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
254. mailto:avinash_miraskar@xxxxxxxxxxx
255. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
256. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
257. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV'
258. mailto:thomas.raddatz@xxxxxx
259. mailto:thomas.raddatz@xxxxxx
260. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
261. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
262. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
263. mailto:avinash_miraskar@xxxxxxxxxxx
264. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
265. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
266. mailto:thomas.raddatz@xxxxxxxxxxx
267. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
268. mailto:thomas.raddatz@xxxxxx
269. mailto:thomas.raddatz@xxxxxx
270. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
271. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
272. http://schemas.xmlsoap.org/soap/envelope/
273. http://siebel.com/asi/
274. http://www.siebel.com/xml/BT%20Agile%20Up
275. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
276. mailto:avinash_miraskar@xxxxxxxxxxx
277. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
278. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
279. mailto:thomas.raddatz@xxxxxxxxxxx
280. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
281. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
282. http://siebel.com/asi/:Mapics
283. mailto:thomas.raddatz@xxxxxx
284. mailto:thomas.raddatz@xxxxxx
285. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
286. http://siebel.com/asi/:Mapics_spcTE
287. http://siebel.com/asi/:Mapics_spcTE
288. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
289. mailto:avinash_miraskar@xxxxxxxxxxx
290. mailto:ftpapi@xxxxxxxxxxxxxxxxxxxxxx
291. mailto:ftpapi-bounces@xxxxxxxxxxxxxxxxxxxxxx
292. http://www.scottklement.com/mailman/listinfo/ftpapi
293. http://www.scottklement.com/mailman/listinfo/ftpapi
294. http://www.scottklement.com/mailman/listinfo/ftpapi
295. http://www.scottklement.com/mailman/listinfo/ftpapi
296. http://www.scottklement.com/mailman/listinfo/ftpapi
297. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v
298. http://schemas.xmlsoap.org/soap/envelope/
299. http://siebel.com/asi/
300. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
301. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
302. http://www.scottklement.com/mailman/listinfo/ftpapi
303. http://www.scottklement.com/mailman/listinfo/ftpapi
304. http://www.scottklement.com/mailman/listinfo/ftpapi
305. http://www.scottklement.com/mailman/listinfo/ftpapi
306. http://www.scottklement.com/mailman/listinfo/ftpapi
307. http://www.scottklement.com/mailman/listinfo/ftpapi
308. http://www.scottklement.com/mailman/listinfo/ftpapi
309. http://www.scottklement.com/mailman/listinfo/ftpapi
310. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
311. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14b
312. http://schemas.xmlsoap.org/soap/envelope/
313. http://siebel.com/asi/
314. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
315. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
316. http://www.scottklement.com/mailman/listinfo/ftpapi
317. http://www.scottklement.com/mailman/listinfo/ftpapi
318. http://www.scottklement.com/mailman/listinfo/ftpapi
319. http://www.scottklement.com/mailman/listinfo/ftpapi
320. http://www.scottklement.com/mailman/listinfo/ftpapi
321. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
322. http://schemas.xmlsoap.org/soap/envelope/
323. http://siebel.com/asi/
324. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
325. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
326. http://www.scottklement.com/mailman/listinfo/ftpapi
327. http://www.scottklement.com/mailman/listinfo/ftpapi
328. http://www.scottklement.com/mailman/listinfo/ftpapi
329. http://www.scottklement.com/mailman/listinfo/ftpapi
330. http://www.scottklement.com/mailman/listinfo/ftpapi
331. http://www.scottklement.com/mailman/listinfo/ftpapi
332. http://www.scottklement.com/mailman/listinfo/ftpapi
333. http://www.scottklement.com/mailman/listinfo/ftpapi
334. http://www.scottklement.com/mailman/listinfo/ftpapi
335. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta3
336. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
337. http://schemas.xmlsoap.org/soap/envelope/
338. http://siebel.com/asi/
339. http://www.siebel.com/xml/BT%20Agile%20Update%2
340. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
341. http://www.scottklement.com/mailman/listinfo/ftpapi
342. http://www.scottklement.com/mailman/listinfo/ftpapi
343. http://www.scottklement.com/mailman/listinfo/ftpapi
344. http://www.scottklement.com/mailman/listinfo/ftpapi
345. http://www.scottklement.com/mailman/listinfo/ftpapi
346. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
347. http://schemas.xmlsoap.org/soap/envelope/
348. http://siebel.com/asi/
349. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
350. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
351. http://www.scottklement.com/mailman/listinfo/ftpapi
352. http://www.scottklement.com/mailman/listinfo/ftpapi
353. http://www.scottklement.com/mailman/listinfo/ftpapi
354. http://www.scottklement.com/mailman/listinfo/ftpapi
355. http://www.scottklement.com/mailman/listinfo/ftpapi
356. http://www.scottklement.com/mailman/listinfo/ftpapi
357. http://www.scottklement.com/mailman/listinfo/ftpapi
358. http://www.scottklement.com/mailman/listinfo/ftpapi
359. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
360. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta2
361. http://schemas.xmlsoap.org/soap/envelope/
362. http://siebel.com/asi/
363. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
364. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
365. http://www.scottklement.com/mailman/listinfo/ftpapi
366. http://www.scottklement.com/mailman/listinfo/ftpapi
367. http://www.scottklement.com/mailman/listinfo/ftpapi
368. http://www.scottklement.com/mailman/listinfo/ftpapi
369. http://www.scottklement.com/mailman/listinfo/ftpapi
370. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
371. http://schemas.xmlsoap.org/soap/envelope/
372. http://siebel.com/asi/
373. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
374. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
375. http://www.scottklement.com/mailman/listinfo/ftpapi
376. http://www.scottklement.com/mailman/listinfo/ftpapi
377. http://www.scottklement.com/mailman/listinfo/ftpapi
378. http://www.scottklement.com/mailman/listinfo/ftpapi
379. http://www.scottklement.com/mailman/listinfo/ftpapi
380. http://www.scottklement.com/mailman/listinfo/ftpapi
381. http://www.scottklement.com/mailman/listinfo/ftpapi
382. http://www.scottklement.com/mailman/listinfo/ftpapi
383. http://www.scottklement.com/mailman/listinfo/ftpapi
384. http://www.scottklement.com/mailman/listinfo/ftpapi
385. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
386. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14
387. http://schemas.xmlsoap.org/soap/envelope/
388. http://siebel.com/asi/
389. http://www.siebel.com/xml/BT%20Agile%20Updat
390. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
391. http://www.scottklement.com/mailman/listinfo/ftpapi
392. http://www.scottklement.com/mailman/listinfo/ftpapi
393. http://www.scottklement.com/mailman/listinfo/ftpapi
394. http://www.scottklement.com/mailman/listinfo/ftpapi
395. http://www.scottklement.com/mailman/listinfo/ftpapi
396. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
397. http://schemas.xmlsoap.org/soap/envelope/
398. http://siebel.com/asi/
399. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
400. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
401. http://www.scottklement.com/mailman/listinfo/ftpapi
402. http://www.scottklement.com/mailman/listinfo/ftpapi
403. http://www.scottklement.com/mailman/listinfo/ftpapi
404. http://www.scottklement.com/mailman/listinfo/ftpapi
405. http://www.scottklement.com/mailman/listinfo/ftpapi
406. http://www.scottklement.com/mailman/listinfo/ftpapi
407. http://www.scottklement.com/mailman/listinfo/ftpapi
408. http://www.scottklement.com/mailman/listinfo/ftpapi
409. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
410. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta2
411. http://schemas.xmlsoap.org/soap/envelope/
412. http://siebel.com/asi/
413. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
414. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
415. http://www.scottklement.com/mailman/listinfo/ftpapi
416. http://www.scottklement.com/mailman/listinfo/ftpapi
417. http://www.scottklement.com/mailman/listinfo/ftpapi
418. http://www.scottklement.com/mailman/listinfo/ftpapi
419. http://www.scottklement.com/mailman/listinfo/ftpapi
420. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
421. http://schemas.xmlsoap.org/soap/envelope/
422. http://siebel.com/asi/
423. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
424. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
425. http://www.scottklement.com/mailman/listinfo/ftpapi
426. http://www.scottklement.com/mailman/listinfo/ftpapi
427. http://www.scottklement.com/mailman/listinfo/ftpapi
428. http://www.scottklement.com/mailman/listinfo/ftpapi
429. http://www.scottklement.com/mailman/listinfo/ftpapi
430. http://www.scottklement.com/mailman/listinfo/ftpapi
431. http://www.scottklement.com/mailman/listinfo/ftpapi
432. http://www.scottklement.com/mailman/listinfo/ftpapi
433. http://www.scottklement.com/mailman/listinfo/ftpapi
434. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta3_
435. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14bet
436. http://schemas.xmlsoap.org/soap/envelope/
437. http://siebel.com/asi/
438. http://www.siebel.com/xml/BT%20Agile%20Update%2
439. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
440. http://www.scottklement.com/mailman/listinfo/ftpapi
441. http://www.scottklement.com/mailman/listinfo/ftpapi
442. http://www.scottklement.com/mailman/listinfo/ftpapi
443. http://www.scottklement.com/mailman/listinfo/ftpapi
444. http://www.scottklement.com/mailman/listinfo/ftpapi
445. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
446. http://schemas.xmlsoap.org/soap/envelope/
447. http://siebel.com/asi/
448. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
449. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
450. http://www.scottklement.com/mailman/listinfo/ftpapi
451. http://www.scottklement.com/mailman/listinfo/ftpapi
452. http://www.scottklement.com/mailman/listinfo/ftpapi
453. http://www.scottklement.com/mailman/listinfo/ftpapi
454. http://www.scottklement.com/mailman/listinfo/ftpapi
455. http://www.scottklement.com/mailman/listinfo/ftpapi
456. http://www.scottklement.com/mailman/listinfo/ftpapi
457. http://www.scottklement.com/mailman/listinfo/ftpapi
458. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
459. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1.14beta2_
460. http://schemas.xmlsoap.org/soap/envelope/
461. http://siebel.com/asi/
462. http://www.siebel.com/xml/BT%20Agile%20Update%20LO
463. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
464. http://www.scottklement.com/mailman/listinfo/ftpapi
465. http://www.scottklement.com/mailman/listinfo/ftpapi
466. http://www.scottklement.com/mailman/listinfo/ftpapi
467. http://www.scottklement.com/mailman/listinfo/ftpapi
468. http://www.scottklement.com/mailman/listinfo/ftpapi
469. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
470. http://schemas.xmlsoap.org/soap/envelope/
471. http://siebel.com/asi/
472. http://www.siebel.com/xml/BT%20Agile%20Update%20LOV
473. http://www.tools400.de/Downloads/Freeware/Beta/WSDL2RPG_v1
474. http://www.scottklement.com/mailman/listinfo/ftpapi
475. http://www.scottklement.com/mailman/listinfo/ftpapi
476. http://www.scottklement.com/mailman/listinfo/ftpapi
477. http://www.scottklement.com/mailman/listinfo/ftpapi
478. http://www.scottklement.com/mailman/listinfo/ftpapi
479. http://www.scottklement.com/mailman/listinfo/ftpapi
480. http://www.scottklement.com/mailman/listinfo/ftpapi
481. http://www.scottklement.com/mailman/listinfo/ftpapi
482. http://www.scottklement.com/mailman/listinfo/ftpapi
483. http://www.scottklement.com/mailman/listinfo/ftpapi
484. http://www.scottklement.com/mailman/listinfo/ftpapi
485. http://www.scottklement.com/mailman/listinfo/ftpapi
486. http://www.scottklement.com/mailman/listinfo/ftpapi
487. 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
-----------------------------------------------------------------------