Quoting Larry Meadors <[EMAIL PROTECTED]>:
> OK, I am new at this, but want to create a web service that is easy to
> use from both .net and java clients.
>
> I took a look at the WSDL, and do not see anything that looks java
> specific, but am afraid that it would need to bite me on the nose befo
Not sure if this will help you but if, in a wsdd file you have a parameter
like this:
You can read the parameters using the following:
MessageContext msc = MessageContext.getCurrentContext();
String val= (String)msc.getService().getOption("anotherParam");
Or something like that :-)
I'