[jboss-user] [JBossWS] - Re: Problem Accessing Web Service

2007-07-18 Thread djayakaran
Thanks Alessio. I'll check your suggestion out and post a reply when I resolve the problem. David View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4065433#4065433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4065433

[jboss-user] [JBossWS] - Re: Problem Accessing Web Service

2007-07-02 Thread djayakaran
I'm still having the problem. Am I missing something obvious? Tried everything I know to do... can someone please help? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4059660#4059660 Reply to the post :

[jboss-user] [JBossWS] - Re: Problem Accessing Web Service

2007-06-25 Thread djayakaran
I've tried everything short of looking into JBoss's source code to see why it's throwing the exception: Here's a portion of the call stack in the exception: javax.xml.ws.WebServiceException: SEI is missing @WebService annotation: interface ws.currencyconverter.CurrencyWS at

[jboss-user] [JBossWS] - Re: Problem Accessing Web Service

2007-06-21 Thread djayakaran
Here's the code I wrote to invoke the web service: { CurrencyForm form = null; CurrencyWSService svc = null; form = populateCurrencyForm(); // Souce, target currencies svc = new CurrencyWSService(); CurrencyWS currencyWS = svc.getCurrencyWSPort();

[jboss-user] [JBossWS] - Problem Accessing Web Service

2007-06-19 Thread djayakaran
Hi, I deployed a very simple web service to JBoss-4.2.0.GA, and used JBoss's wsconsume utility to generates stubs. I ran the client in its own JVM as a java application. It invokes the web service... no problem! Then I coded a servlet (actually an Action class much like Struts) to call the