This content has been marked as final.
Show 3 replies
-
1. Re: JBoss and Web Services
keanthian Oct 20, 2004 9:34 AM (in response to starksm64)hi scott,
one quick question, does JBoss.Net support Document/Literal web service?
thanks. -
2. Re: JBoss and Web Services
thomas.diesler Oct 20, 2004 9:48 AM (in response to starksm64)Yes, it does. What's the issue?
-
3. 3851181
keanthian Oct 20, 2004 10:01 AM (in response to starksm64)My web service (Doc/Lit) is accepting 2 parameters, when my client application request the service, the server side manages to get the value for 1st paramater but for 2nd parameter, it always get null value.
Eg
public void myWebMethod(String firstParam, String secondParam){
//firstParam works fine
//secondParam always get null value
}
I'm have tried the same thing with Axis running in Tomcat, the same problem occurs.
Fyi, it works fine if i'm using rpc/lit or rpc/encoded.
thanks...