anonymous wrote : I did get this working, but I had to back out the Seam jars from CVS, as I couldn't figure out how to avoid hitting the Seam "ExceptionInterceptor".
@Interceptor(within=ExceptionInterceptor.class)
anonymous wrote : One question - how did the Seam ExceptionInterceptor class bypass my "catch" clause? In the "save()" method that I included above, the catch clause was never reached if I used the 9/10/2006 CVS jars. Instead, the Seam exception interceptor kicked in, even if I changed my catch to "Throwable". That is, I was single stepping through the code, and once I threw the null pointer with "user.toString()", it went straight to your interceptor!
This is really difficult to believe....
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971598#3971598
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971598
my web.xml looks like this...
| <servlet>
| <servlet-name>EchoMe</servlet-name>
| <servlet-class>com.vicor.distributedcapture.webservice.SimpleWSTest</servlet-class>
| </servlet>
| <servlet-mapping>
| <servlet-name>EchoMe</servlet-name>
| <url-pattern>/*</url-pattern>
| </servlet-mapping>
|
| <servlet>
| <servlet-name>WebTest</servlet-name>
| <servlet-class>com.vicor.distributedcapture.webservice.WebServiceTest</servlet-class>
| </servlet>
| <servlet-mapping>
| <servlet-name>WebTest</servlet-name>
| <url-pattern>/*</url-pattern>
| </servlet-mapping>
|
The webservices appear to deploy okay, however, when i veryify the wsdl through the browser at http://localhost:8080/jbossws/services both wsdls point to the same wsdl (the EchoMe wsdl). it's like the second webservice doesn't exist.
How do I set up jboss to know about both web services in the web.xml file?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971596#3971596
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971596