How can you save the vector?  It will be there only during the execution of
the program, right?

Also, I tried to do the following as you had suggested in one of your
earlier emails:

Call call1 = new Call();
.......
Response resp = Call.invoke(url, "");
Vector v = resp.getParams();

and then pass this vector to the new call.

Call call2 = new Call();
call2.setParams(v);
call.invoke(url2, "");

Howener, the above does not work.  Once the first method is invoked on the
server, it returns the response and that is it.

Rino

-----Original Message-----
From: Vinod Soni [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:13 AM
To: [EMAIL PROTECTED]
Subject: Re: Need help!


Hi Rino,

Obviously Response is an object in apache. So first you will have to parse
the Response and keep the fields and values you want. Simply, you can take
out a Vector from Response object this way.

Response response = Call.invoke(url, "");
Vector v = response.getParams();

and then you should know what you are expecting in this Vector and further
get the values from vector. or save the Vector as such, someway.

Cheers.
Vinod.



----- Original Message -----
From: "Rino Srivastava" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, December 07, 2001 5:11 PM
Subject: Need help!


> I am using Apache soap.
>
> I have a server and client program.  When I run the Client, I get some
> response back from the server.  Now I want to store this response in a
> database.  How can I do this task?
>
> Thanks.
> Rino

Reply via email to