Tagged Questions

1
vote
1answer
59 views

Define contextroot inside WAR file

I have an automated deployment script to deploy multiple WAR files in WAS 7. So, I would like to define contextroot inside the WAR file itself. It should automatically set to " ... -contextroot xxxx ...
0
votes
0answers
66 views

jboss 6 - if the context root is specified in application.xml as well as in jboss-web.xml, which wins?

An application I am working on is encapsulated inside an ear file, which contains a jar (containing EJB files) and a war (having, apart from its normal contents, package hierarchy of action classes, ...
0
votes
1answer
113 views

errors deploying WAR in root context on GlassFish 3.1

I'm using GlassFish 3.1 on Mac. I did a clean GlassFish installation. I created a simple WAR with a index.jsp like so: <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML ...
0
votes
2answers
52 views

How to split war files if the file size is large and deploy it in same context root

We are having a war file containing jsp fils which is about 40 MB. when we deploy this file its taking long time to deploy. so we want to split the files in different wars, If we split files the ...
0
votes
2answers
720 views

Is it possible to have a servlet forward to a jsp outside of its context root?

We currently have an appserver setup where EVERYTHING is off of one big context root, and we copy class files and restart app servers to deploy. Not ideal. I'm trying to set up an ant script to do the ...