Hello. I run with java 1.7_60, 1.7_65, 1.8_20. Also tried with 1.7 compiled and 1.8 compile. The JDK or JRE version did not seem to metter.
With TomEE 1.7.1, it did run with version 1.7_60. I did not try othe JDK versions. I will try on Ubuntu also, cause i'd like to know if its maybe Linux distriuvtion dependent. For know I tested only on Centos. But on different machines and versions. BR Matej 2014-09-15 14:41 GMT+02:00 hanasaki jiji <[email protected]>: > Would you confirm the java version the code was compiled on and run on is > the same for the platforms that worked and didn't work (other than the OS) > On Sep 14, 2014 6:57 AM, "Matej" <[email protected]> wrote: > > > Hi. > > > > No the path was like /home/tomee/apache-tomee-plus-1.7.0/webapps/ROOT and > > then 1.7.1 which started to work. Everything ascii. > > > > BR > > > > Matej > > > > 2014-09-14 13:48 GMT+02:00 Romain Manni-Bucau <[email protected]>: > > > > > Hi > > > > > > no, there is really no link at all, this one was "scan the container". > > > > > > When I spoke about the path I was speaking about the absolute path > > > (/opt/oops a space/or_maybe_a_plus/..../tomee/) > > > > > > > > > Romain Manni-Bucau > > > Twitter: @rmannibucau > > > Blog: http://rmannibucau.wordpress.com/ > > > LinkedIn: http://fr.linkedin.com/in/rmannibucau > > > Github: https://github.com/rmannibucau > > > > > > > > > 2014-09-14 13:47 GMT+02:00 Matej <[email protected]>: > > > > Hi. > > > > > > > > No, the App was on the ROOT, and the servelet path was /testservlet > .I > > > also > > > > tested on not root, it aso did not work. > > > > > > > > Could this have fixed it: > > > https://issues.apache.org/jira/browse/TOMEE-1330 > > > > > > > > Matej > > > > > > > > 2014-09-14 13:34 GMT+02:00 Romain Manni-Bucau <[email protected] > >: > > > > > > > >> was the path containing a char which needs to be encoded in URLs? > > > >> > > > >> > > > >> Romain Manni-Bucau > > > >> Twitter: @rmannibucau > > > >> Blog: http://rmannibucau.wordpress.com/ > > > >> LinkedIn: http://fr.linkedin.com/in/rmannibucau > > > >> Github: https://github.com/rmannibucau > > > >> > > > >> > > > >> 2014-09-14 13:33 GMT+02:00 Matej <[email protected]>: > > > >> > Hello Andy. > > > >> > > > > >> > I can do that. But it seems it's been already fixed in 1.7.1. I > have > > > >> tested > > > >> > this now. > > > >> > > > > >> > The strange thing was, the bug was only experienced on my Centos > > Linux > > > >> > platform. > > > >> > > > > >> > So probably no JIRA needed. > > > >> > > > > >> > BR > > > >> > > > > >> > Matej > > > >> > > > > >> > 2014-09-14 10:14 GMT+02:00 Andy Gumbrecht <[email protected]>: > > > >> > > > > >> >> Hi Matej, > > > >> >> > > > >> >> Is it possible for you to create a JIRA issue here: > > > >> >> https://issues.apache.org/jira/browse/TOMEE > > > >> >> > > > >> >> Please attach anything that may help diagnose the issue, like log > > > files > > > >> >> and config info etc. > > > >> >> > > > >> >> This will help us track and keep a record of the resolution. > > > >> >> > > > >> >> Thanks very much, > > > >> >> > > > >> >> Andy. > > > >> >> > > > >> >> > > > >> >> On 14/09/2014 09:28, Romain Manni-Bucau wrote: > > > >> >> > > > >> >>> Linux=? > > > >> >>> > > > >> >>> we have test + I use it on ubuntu with success > > > >> >>> > > > >> >>> > > > >> >>> Romain Manni-Bucau > > > >> >>> Twitter: @rmannibucau > > > >> >>> Blog: http://rmannibucau.wordpress.com/ > > > >> >>> LinkedIn: http://fr.linkedin.com/in/rmannibucau > > > >> >>> Github: https://github.com/rmannibucau > > > >> >>> > > > >> >>> > > > >> >>> 2014-09-13 19:54 GMT+02:00 Matej <[email protected]>: > > > >> >>> > > > >> >>>> It's reproducable but only on Linux. > > > >> >>>> > > > >> >>>> @WebServlet(name = "MyServlet", urlPatterns = "/testservlet") > > > >> >>>> public class TestServlet extends HttpServlet { > > > >> >>>> > > > >> >>>> private static final long serialVersionUID = 1L; > > > >> >>>> > > > >> >>>> @Override > > > >> >>>> protected void doGet(HttpServletRequest request, > > > >> HttpServletResponse > > > >> >>>> response) > > > >> >>>> throws ServletException, IOException { > > > >> >>>> > > > >> >>>> response.getWriter().println("Hello World!"); > > > >> >>>> > > > >> >>>> } > > > >> >>>> } > > > >> >>>> > > > >> >>>> This for instance works on Windows and not on Linux, producing > > 404 > > > not > > > >> >>>> found on /project/testservlet. > > > >> >>>> > > > >> >>>> No dependcies in pom only javaee-api > > > >> >>>> > > > >> >>>> BR > > > >> >>>> > > > >> >>>> Matej > > > >> >>>> > > > >> >>>> 2014-09-13 10:40 GMT+02:00 Romain Manni-Bucau < > > > [email protected] > > > >> >: > > > >> >>>> > > > >> >>>> Hi > > > >> >>>>> > > > >> >>>>> are you able to reproduce it? Is it from WEB-INF/classes or > > from a > > > >> lib? > > > >> >>>>> > > > >> >>>>> If a lib it can be excluded (excluded prefixes are > > > >> >>>>> > > > >> >>>>> http://svn.apache.org/repos/asf/tomee/tomee/trunk/ > > > >> >>>>> container/openejb-core/src/main/resources/default.exclusions > > > >> >>>>> ) > > > >> >>>>> > > > >> >>>>> > > > >> >>>>> Romain Manni-Bucau > > > >> >>>>> Twitter: @rmannibucau > > > >> >>>>> Blog: http://rmannibucau.wordpress.com/ > > > >> >>>>> LinkedIn: http://fr.linkedin.com/in/rmannibucau > > > >> >>>>> Github: https://github.com/rmannibucau > > > >> >>>>> > > > >> >>>>> > > > >> >>>>> 2014-09-13 10:18 GMT+02:00 Matej <[email protected]>: > > > >> >>>>> > > > >> >>>>>> Hello all. > > > >> >>>>>> > > > >> >>>>>> Is there maybe a bug in TomEE not scaning the @WebServlet > > > >> annotation > > > >> >>>>>> > > > >> >>>>> under > > > >> >>>>> > > > >> >>>>>> linux. > > > >> >>>>>> > > > >> >>>>>> I am facing a strange problem. Where upgrading from 1.6.x to > > 1.7 > > > the > > > >> >>>>>> WebServlet annotation stoped working under linux.... giving > 404 > > > >> >>>>>> > > > >> >>>>>> I tried with many different attribute combinations, also > > changing > > > >> jdk, > > > >> >>>>>> > > > >> >>>>> jre > > > >> >>>>> > > > >> >>>>>> version 1.7, 1.8. Also tried with different projects, > > machines... > > > >> >>>>>> Altough > > > >> >>>>>> Linux was always Centos > > > >> >>>>>> > > > >> >>>>>> On Windows no issues. > > > >> >>>>>> > > > >> >>>>>> Everything seems to work from web.xml on both platforms. > > > >> >>>>>> > > > >> >>>>>> BR > > > >> >>>>>> > > > >> >>>>>> Matej > > > >> >>>>>> > > > >> >>>>> > > > >> >> > > > >> > > > > > >
