Hello fellow developers,
I'm having a hard time to make a very simple ws app work. Right now, after configuring everything by the book, or better, by the reference (v2.0) and my wsdl generation does not work. I want to know if I'm missing something on this specific configuration. So, with this on my spring-ws context:
And my web.xml mapping is:Code:<ws:dynamic-wsdl id="alarm" portTypeName="Alarm" locationUri="/services/"> <ws:xsd location="/WEB-INF/xsd/Alarms.xsd" /> </ws:dynamic-wsdl>
I would have, theoretically, my wsdl published atCode:<servlet-mapping> <servlet-name>alarm-server</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping>
http://localhost:8080/alarm-server/services/alarm.wsdl
given that my servlet name is "alarm-server", but is always 404. The bean of class DefaultWsdl11Definition is created with id="alarm" and no error is reported on my log files in debug level.
I'm deploying it to virgo-2.1.0 and with spring-ws-2.0.2.
Tks for any help
Paulo


Reply With Quote
