• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Strange problem - works on maven glassfish but not on Tomcat

 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I am quite new to tomcat and webapp. I have a project that implements wsdl2java with axis2. When compile it by mvn install command, the project compiles and it undergoes a test process. As far as I understand during the test a glassfish server is launched and the project is deployed. The test are passed (no errors, the application produces the expected results). However when I take the war file and deploy it on tomcat my application has some problems with handling a POST request that takes a multipart. The methods looks like that:

The tomcat error is the following:

As I wrote before everything works in glassfish test environment. The Tomcat crashes. I try to access the server with a java client or even a simple html post form - all with the same results. I guess It has something to do with adding axis2 framework since this problem did not occur before adding it.

Can any one help?
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Could it be this line:

It looks like it uses a class from Jersey - is this compatible with Axis?
Best wishes!
 
Adam Kronicki
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank for the notice but I guess it goes deeper into axis problems. First I just skipped the Multipart handling part of the code and just launched axis and it also does not work but the error is different. Then I have put the axis code into a simple @GET method (so in fact no multipart issue) and again the same problem. The error is the following now:

 
Adam Kronicki
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone contribute?? I also thought it would be a good ide to psot the pom.xml file

 
Or we might never have existed at all. Freaky. So we should cherish everything. Even this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic