[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-05 Thread rukus
I've tried to create ws with netbeans ide and there is same exception - then i've tried to create it with idea and it works fine... looks like this is netbeans bug (i've seen some bug connected with RPC style binding in it's bug tracking system) View the original post :

[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-04 Thread [EMAIL PROTECTED]
Hi, the ClassLoader will be the difference. Richard View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4101673#4101673 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4101673 ___

[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-02 Thread alfred.rsa
Hi guys I took the exact same web service and deployed it in my web module and now it works. What could be the reason that it does not work when deploying in the ejb module? Regards Alfred View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4101234#4101234 Reply

[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-02 Thread alfred.rsa
This is my request POST http://10.204.72.87:8080/BFlo-BFlo-ejb/DownloadRequest HTTP/1.1 SOAPAction: Accept: text/xml, multipart/related, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 Content-Type: text/xml;charset=utf-8 User-Agent: hudson-jaxws-2.1.2-nightly-push-32 Host:

[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-02 Thread rukus
Hi! Post here code of your webservice, client and web.xml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4101161#4101161 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4101161 ___

[jboss-user] [JBossWS] - Re: NoSuchMethodError exception on webservice invocation

2007-11-02 Thread alfred.rsa
Hi Rukus My WebService is: @WebService() @Stateless() public class DownloadRequest { @WebMethod(operationName = requestDataQueue) public String requestDataQueue(@WebParam(name = fileID) String fileID) { return Test; } } I have no web.xml as the webservice is in my ejb