Oleg Konovalov wrote:
Jason,

Is that two or one Web Project(s) ?

Looking at the servlet-mapping's url-pattern:

<servlet-mapping>
   <servlet-name>SpringMVC</servlet-name>
   <url-pattern>/spring/*</url-pattern>
</servlet-mapping>

<servlet-mapping>
   <servlet-name>Cocoon</servlet-name>
   <url-pattern>/*</url-pattern>
</servlet-mapping>

Looks like you put the SpringMVC project inside the Coocoon web project [<cocoon-app>/spring]. Or can they still be 2 separate web projects (with root on the same level, like /cocoon-app & /spring-app) ?

But AFAIK each web project must have it's own /WEB-INF/web.xml. Is that not correct ?


Both servlets are configured within the same servlet context, so they would result in URLs like:

http://localhost:8080/mycontext/spring/mySpringForm.form
http://localhost:8080/mycontext/cocoon-transformed-document.xml

The mappings are just saying that any path within the servlet context that starts with /spring/ will use the Spring servlet, and anything else will use the Cocoon servlet. It's all one "project", with a single web.xml file for the two servlets.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to