Tagged Questions
The contextroot tag has no wiki summary.
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 ...
1
vote
1answer
870 views
groovy webtest chokes on context root in url invoke
I am trying to wrap my head around canoo webtest
I setup a simple groovy webtest.
I have even made and run the xml equivalent and I get the same error when it tries to encode the url.
I get an error ...
0
votes
0answers
21 views
Is there a generic way to specify the context-root for a WebService?
I'm new to writing web services, and am struggling with understanding how to specify the context root.
I've got my class annotated with
@Service
@javax.jws.WebService(endpointInterface= ...
0
votes
1answer
47 views
Change context root in grails 2
I'm migrating an app from grails 1.3.6 to 2.0 and I need to change its context root. If I remember correctly, in 1.3.6 I installed the template plugin and changed:
<context-param>
...
0
votes
1answer
60 views
how to set java web application's context root when working with reverse proxy
My old way using mod_jk in apache and configure virtual host in tomcat
In the JSP file, I refer to CSS as below
/<%=request.getContextPath()%>/css/styles.css
while the home link is set to
...
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
53 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
0answers
73 views
Accessing docBase property of another servlet in Tomcat 7
The web application I am working on needs to return dynamic URLs to clients (the HATEOAS principle of the REST methodology). Some of the paths involve files that live in a static folder on the file ...
0
votes
1answer
178 views
customize web application root context in apache
I have web application abc.war and I want to deploy it on Apache Tomcat.
The problem is that, by default, the path to this application is http://<server-name>/abc
but I want to access it as ...
0
votes
2answers
925 views
Flex: How can I use the @ContextRoot in a Button or LinkButton
I'm trying to create a button that will simply link back to the context root. I noticed flex has a @ContextRoot attribute that appears to work only in certain cases. For example, if I try to use it ...
0
votes
2answers
289 views
How can I install one Web Application in two context roots in JBoss 4?
My goal is to install only one WAR file but to use test or production settings (for example to point to different databases) depending on the context root.
mydomain.com/MyWebApp will use production ...
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 ...