Error Message: org.w3c.dom.Node: method getLocalName()Ljava/lang/String;
not found

>From your stack trace, it seems like it is looking for this method:

String getLocalName()

and not

void getLocalName(String)

getLocalName() was added in DOM Level 2, (was not present in DOM Level 1),
so it seems like you have an old DOM Level 1 jar lying around,
which is getting picked up ahead of your new jar.

- Junaid





                                                                                       
                                                
                      [EMAIL PROTECTED]                                                
                                                
                                               To:       [EMAIL PROTECTED]      
                                                
                      10/29/2002 02:41         cc:                                     
                                                
                      PM                       Subject:  Re: How to make Axis work in 
WSAD                                             
                      Please respond to                                                
                                                
                      axis-user                                                        
                                                
                                                                                       
                                                
                                                                                       
                                                





I've been looking at this problem some more. My first thought was I have an
old xerces.jar, but I
don't think that's the case now.

Looking at the stack trace, it looks like
org.apache.axis.deployment.wsdd.WSDDDocument is
invoking getLocalName(String) on a org.w3c.dom.Node type object. However
the Node class does not
have a method with that signature. Therefore the NoSuchMethodError. I might
venture to guess
that this is an error in the WSDDDocument class, except for the fact that
this runs fine in the Tomcat
environment. So there goes that theory.

Anyone have any other ideas?


                                                                          
    David Pool/CA/KAIPERM@Kaiperm                                         
                                            To:                           
                                    [EMAIL PROTECTED]              
    10/28/2002 02:33 PM                     cc:                           
    Please respond to axis-user             Subject:        How to make   
                                    Axis work in WSAD                     
                                                                          






I have successfully installed Axis into Tomcat 4.1.10. I can bring up the
AdminServlet OK, the validation page looks OK, and I successfully ran the
Calculator.jws/CalClient  example program.

Now I'm trying to install Axis into WSAD 4.0 (Websphere Studio Application
Developer). The validation page looks OK, but the AdminServlet give me a
500 error:

Error Message: org.w3c.dom.Node: method getLocalName()Ljava/lang/String;
not found
Error Code: 500
Target Servlet: null
Error Stack:
java.lang.NoSuchMethodError: org.w3c.dom.Node: method getLocalName
()Ljava/lang/String; not found
    at
org.apache.axis.deployment.wsdd.WSDDDocument.<init>(WSDDDocument.java:104)
etc.

The calculator service does not work either in WSAD with the same error
message.

Is there anything I have to do especially for the WSAD environment to get
it to work? Any clues would be greatly appreciated.

Thanks,
Dave





Reply via email to