Getting Axis fault when using SJSAS 8.1
I am working on an application that uses axis 1.1, when I try to invoke a web service I am getting this Exception
NESTED-EXCEPTION: org.apache.axis.AxisFault
MSG: ; nested exception is:
java.lang.NullPointerException
at org.apache.axis.AxisFault.makeFault(AxisFault.java:129)
at org.apache.axis.client.Call.invoke(Call.java:2251)
at org.apache.axis.client.Call.invoke(Call.java:2171)
at org.apache.axis.client.Call.invoke(Call.java:1691)
at newpakage.remote.user.soap.UserServiceSoapBindingStub.getUser(UserServiceSoapBi ndingStub.java:171)
.......
and
NESTED-EXCEPTION: java.lang.NullPointerException
MSG: <none>
at java.util.Hashtable.put(Hashtable.java:396)
at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl.setProperty(SAXParserImpl .java:395)
at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContex tImpl.java:246)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:376)
at org.apache.axis.client.Call.invokeEngine(Call.java:2583)
at org.apache.axis.client.Call.invoke(Call.java:2553)
at org.apache.axis.client.Call.invoke(Call.java:2248)
at org.apache.axis.client.Call.invoke(Call.java:2171)
at org.apache.axis.client.Call.invoke(Call.java:1691)
at newpakage.remote.user.soap.UserServiceSoapBindingStub.getUser(UserServiceSoapBi ndingStub.java:171)
.....
I think this is because of a bug in Axis 1.1 and also because of xerces that is shipped with JDK 1.5.
This exception is seen only on SJSAS 8.1 installed on solaris , It 's working fine on SJSAS 8.1 installed on Windows. Like in Tomcat 5.5 is there any compatibility kit for SJSAS 8.1 to work with j2sdk 1.4.2 . Please provide me link if any.

