Hi again I think my problem is not the deploy. Let me explain: when I put the application into the server, if I try to go to browser (in the same network) and I write http://machineIP:port/jetspeed/portal it works ok, but if I write http://machineName.com/jetspeed/portal it won't works and I can't understand why. I thought the problem was with the deploy :(
This is kind of urgent... Thanks a lot Raquel 2008/4/22 David Sean Taylor <[EMAIL PROTECTED]>: > > On Apr 21, 2008, at 7:45 AM, Raquel Cruz wrote: > > Hi! > > > > Well, I've already install Maven 2 but it doesn't have the deploy > > option, I > > think! > > > > I think I need your help, step by step! > > > > As Dennis recommended, build your WAR file and drop it in > WEB-INF/deploy of the Jetspeed application > Or you can add the container to the web.xml of your app. In that case, it > can be dropped in Tomcat's webapps for example; > > <servlet> > <servlet-name>JetspeedContainer</servlet-name> > <display-name>Jetspeed Container</display-name> > <description>MVC Servlet for Jetspeed Portlet > Applications</description> > > > <servlet-class>org.apache.jetspeed.container.JetspeedContainerServlet</servlet-class> > <init-param> > <param-name>contextName</param-name> > <param-value>myPortletApp</param-value> > </init-param> > <load-on-startup>100</load-on-startup> > </servlet> > > <servlet-mapping> > <servlet-name> > JetspeedContainer > </servlet-name> > <url-pattern> > /container/* > </url-pattern> > </servlet-mapping> > >