Many, many thanks for all the help.
Looking in the logs on a deploy (thanks mveitas) the urls were not mapped.
My package name was incorrect in my component-scan :(
Now having fixed that I can...
Type: Posts; User: galt; Keyword(s):
Many, many thanks for all the help.
Looking in the logs on a deploy (thanks mveitas) the urls were not mapped.
My package name was incorrect in my component-scan :(
Now having fixed that I can...
Thanks for your help Grzegorz.
It has been awhile since I've worked on a web application, a bit rusty.
I changed my controller mapping to:
@RequestMapping("index")
Moved the jsp's to...
Trying to figure out why I keep getting a 404 trying to hit my index.jsp.
web.xml
<servlet>
<servlet-name>usageadmin</servlet-name>
...
Thank you both for the reply
I moved the service to the context config file and everything works.
I wasn't aware that the location of the elements the different config files was important. Now...
Working on a small Spring WS application. I started by looking in depth at the airline example from spring-WS.
Basically the client sends a few elements of data to the server and the
server...
Grzegorz,
Many thanks for the reply.
I am using 1.5.9, but you are right that the class name referenced in the log file does not exist as a class in any of the spring ws jar files.
Looking...
I'm new to Spring WS - I think everything is correct but I get that the endpoint cannot be found. I've been going in circles.
Any help is very much appreciated, I'm stuck at this point.
Here...
I am getting this error when sending a request to this endpoint:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'endpointMapping' defined in ServletContext...
I cannot figure out why the endpoint is not found, checked for similar posts and resolutions, nothing jumped out at me as my problem.
From the server log:
The key seems to be mapped to the...
I have configured everything as in the tutorial but no wsdl is generated. The war deploys fine.
Can anyone see what I have wrong? Thanks
spring-ws-servlet.xml
<bean id="usage"...
New to spring-ws. I am using airline example as a guide, looking at spring-ws-reference.pdf and various google results. Spring-WS seems very full featured, I am struggling to figure out which...
New to STS, looking at web services.
I setup a project in STS for the WS airline example, created a war and deployed it on tomcat.
Then started to build my own web service (in a different...