RE: Problem with call.getOutputParams()

2004-08-05 Thread n0junky-eclipse
Dear dex, Thanks for your response. I was following that article too and I could not get the value. Anyway, I've managed to solve my problem using: String value = output.get(new QName("param1")); However, I'm not sure why. Would be great if someone could enlighten. --- <[EMAIL PROTECTED]> wr

RE: Problem with call.getOutputParams()

2004-08-05 Thread
Hi, I'm a newbie to axis and webservices, but I got your example to work. You need the following 1. web service code should use something called javax.xml.rpc.holders.StringHolder this will allow you to modify the input parameter. 2. Access the data from getOutputParams() differently.

Re: Problem with call.getOutputParams()

2004-08-05 Thread n0junky-eclipse
A slight correction to my previous email: The key- "param1" is of correct length. THEN why wouldn't the following return me the result?? String inout = (String)output.get("param1"); --- [EMAIL PROTECTED] wrote: > Hi, > > I'm testing out the feature for INOUT params > and I almost got it but