[ 
https://issues.apache.org/jira/browse/AXIS2-3791?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12665821#action_12665821
 ] 

Gary McWilliams commented on AXIS2-3791:
----------------------------------------

Guys, I am getting a similar problem (attempting to deploy ODE, but getting a 
similar Axis error):

************ Start Display Current Environment ************
WebSphere Platform 6.1 [ND 6.1.0.0 b0620.14]  running with process name 
centos5Node01Cell\centos5Node01\server1 and process id 21247
Host Operating System is Linux, version 2.6.18-92.el5
Java version = J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223-20060504 (JIT 
enabled)
J9VM - 20060501_06428_lHdSMR
JIT  - 20060428_1800_r8
GC   - 20060501_AA, Java Compiler = j9jit23, Java VM name = IBM J9 VM
was.install.root = /opt/IBM/WebSphere/AppServer
user.install.root = /opt/IBM/WebSphere/AppServer/profiles/AppSrv01
Java Home = /opt/IBM/WebSphere/AppServer/java/jre
ws.ext.dirs = 
/opt/IBM/WebSphere/AppServer/java/lib:/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/classes:/opt/IBM/WebSphere/AppServer/classes:/opt/IBM/WebSphere/AppServer/lib:/opt/IBM/WebSphere/AppServer/installedChannels:/opt/IBM/WebSphere/AppServer/lib/ext:/opt/IBM/WebSphere/AppServer/web/help:/opt/IBM/WebSphere/AppServer/deploytool/itp/plugins/com.ibm.etools.ejbdeploy/runtime
Classpath = 
/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/properties:/opt/IBM/WebSphere/AppServer/properties:/opt/IBM/WebSphere/AppServer/lib/startup.jar:/opt/IBM/WebSphere/AppServer/lib/bootstrap.jar:/opt/IBM/WebSphere/AppServer/lib/j2ee.jar:/opt/IBM/WebSphere/AppServer/lib/lmproxy.jar:/opt/IBM/WebSphere/AppServer/lib/urlprotocols.jar:/opt/IBM/WebSphere/AppServer/deploytool/itp/batchboot.jar:/opt/IBM/WebSphere/AppServer/deploytool/itp/batch2.jar:/opt/IBM/WebSphere/AppServer/java/lib/tools.jar
Java Library path = 
/opt/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/WebSphere/AppServer/java/jre/bin/j9vm:/opt/IBM/WebSphere/AppServer/java/jre/bin:/opt/IBM/WebSphere/AppServer/bin:/usr/lib:/opt/IBM/WebSphere/AppServer/lib/WMQ/java/lib
************* End Display Current Environment *************
t.init(AxisServlet.java:487)
        at javax.servlet.GenericServlet.init(GenericServlet.java:256)
        at 
org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:413)
        at 
org.apache.ode.axis2.hooks.ODEAxisServlet.init(ODEAxisServlet.java:51)
        at 
org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:487)
        at javax.servlet.GenericServlet.init(GenericServlet.java:256)
        at 
org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:413)
        at 
org.apache.ode.axis2.hooks.ODEAxisServlet.init(ODEAxisServlet.java:51)
        at 
org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:487)
        at javax.servlet.GenericServlet.init(GenericServlet.java:256)
        at 
org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:413)

loops repeatedly.

Is there a "best" way to resolve this?
Or is this an entirely different issue?

> Endlesloop in AxisServlet init (Websphere 6.1 deployment)
> ---------------------------------------------------------
>
>                 Key: AXIS2-3791
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3791
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Improvement
>          Components: transports
>    Affects Versions: 1.3
>         Environment: Solaris-10
> Websphere 6.1
> java version "1.5.0_13"
> Java(TM) 2 Runtime Environment, Standard Edition (IBM build 1.5.0_13-b05 
> 20071004)
> Java HotSpot(TM) Server VM (build 1.5.0_13-b05, mixed mode)
> IBM Java ORB build orb50-20070915 (SR6)
> XML build XSLT4J Java 2.7.9
> XML build IBM JAXP 1.3.7
> XML build XML4J 4.4.11
>            Reporter: martin voegeli
>            Assignee: Deepal Jayasinghe
>            Priority: Minor
>   Original Estimate: 0.17h
>  Remaining Estimate: 0.17h
>
> Wrong usage of servlet init procedure leads to endlessloop, if container 
> issues init method twice.
> => 
> http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/GenericServlet.html#init(javax.servlet.ServletConfig)
>  
> [5/7/08 14:55:37:535 MEST] 00000036 ServletWrappe E   SRVE0100E: Did not 
> realize  init() exception thrown by servlet AxisServlet: 
> java.lang.StackOverflowError
>        at javax.servlet.GenericServlet.init(GenericServlet.java:256)
>        at 
> org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:413)
>        at 
> org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:487)
>        at javax.servlet.GenericServlet.init(GenericServlet.java:256)
>        at 
> org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:413)
>        at 
> org.apache.axis2.transport.http.AxisServlet.init(AxisServlet.java:487)
> AxisServlet.java:
>    public void init(ServletConfig config) throws ServletException {
> 413        super.init(config);
>        try {
>            this.servletConfig = config;
>   ...
> GenericServlet.java
>    public void init(ServletConfig config)
>        throws ServletException
>    {
>        this.config = config;
>        init();
>    }
> AxisServlet.java:487:
>    /**
>     * Convenient method to re-initialize the ConfigurationContext
>     *
>     * @throws ServletException
>     */
>    public void init() throws ServletException {
>        if (this.servletConfig != null) {
> 487            init(this.servletConfig);
>        }
>    } 
> After reinstalling the websphere server, the issue was resolved. Seems, that 
> WAS6.1 has some buggy state too. Maybe you can handover the issue to IBM ;-)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to