Hi Pid,
I wonder where the war-files are uploaded to? When uploading a war-file
via HTMLManagerServlet a new error message will be shown:
> MESSAGE: FAIL - File upload failed, no file
Do I need to enable file uploads somewhere? Is there a way to enable the
Deployer via code or by adding new JARs?
Cheers and thanks in davance
Darky
Am 03.07.2011 13:33, schrieb Pid:
On 01/07/2011 20:49, Dark Before Dawn wrote:
Hi Pid, hi Cuck!
thanks for your help. Your suggestions fixed the naming issues :) thanks!
But the error still occurs.
FAIL - Encountered exception javax.management.InstanceNotFoundException:
Tomcat:type=Deployer,host=localhost
The Deployer isn't in the list of MBeans visible in your JConsole
screenshot, which is probably why you can't connect to it.
I don't know why that is, but presumably the embedded code doesn't
enable it.
I noticed an empty javax.management.ObjectName[0] Array, when browsing Servlet
via jconsole. This could be in correlation to the exception above.
The two things are not related. The empty array refers to child objects
of the servlet (should there be any? no...), not the webapp.
p
See screenshots for further reference.
If this is over we definitively need to grab some beer, I am buying :)
Am 01.07.2011 17:54, schrieb Pid:
On 01/07/2011 12:44, Dark Before Dawn wrote:
Hi Pid,
i guess the problem is that the manager-servlet's context is "mounted"
at root and the ServletMapping points to /manager.
server.addContext("", baseDirectory);
ctx.addServletMapping("/manager/*", manager-servlet);
So all relative paths will point to root
That's easy to change, no?
server.addContext("/manager", baseDirectory);
ctx.addServletMapping("/text/*", manager-servlet);
Note the additional '*' in the security collection:
collection.addPattern("/text/*");
(The role usually assigned for the text manager servlet is "manager-script")
p
ie:
localhost/manager/html vs localhost/html
I don't know what I am exactly searching for at jconsole, so here is a overview
:)
Thnx and cheers
Darky
Am 01.07.2011 12:46, schrieb Pid:
On 01/07/2011 10:40, Dark Before Dawn wrote:
Hi again,
this is realy driving me nuts for weeks :)
FAIL - Encountered exception javax.management.InstanceNotFoundException:
Tomcat:type=Deployer,host=localhost
1. Connect to your running instance with JConsole*.
2. Examine the MBeans published by the instance.
3. Confirm that you are connecting to the correct MBean.
I wouldn't expect:
"Tomcat:type=Deployer,host=localhost"
to work.
p
* or VisualVM with the JConsole plugin enabled.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org