One more zinger comin' up... Actually, this is the same zinger complete with 
the screw-up (mine) that caused it.

org.apache.axis2.AxisFault: null; nested exception is: 
java.lang.NullPointerException
    at org.apache.axis2.description.AxisService.getWSDL(AxisService.java:716)
    at org.apache.axis2.description.AxisService.printWSDL(AxisService.java:581)
    at 
org.apache.axis2.transport.http.ListingAgent.processListService(ListingAgent.java:167)
    at org.apache.axis2.transport.http.AxisServlet.doGet(AxisServlet.java:177)
[...snip...]
Caused by: java.lang.NullPointerException
    at 
org.apache.axis2.description.AxisService2OM.generateOM(AxisService2OM.java:128)
    at org.apache.axis2.description.AxisService.getWSDL(AxisService.java:711)

The NPE originates here (line 127-128 of AxisService2OM):

        Map nameSpaceMap = axisService.getNameSpacesMap();
        Iterator keys = nameSpaceMap.keySet().iterator();


The cause is that I typed this:

<parameter name="serviceClass">cbare.books.ws.BookWs</parameter>

When a shoulda typed this:

<parameter name="ServiceClass">cbare.books.ws.BookWs</parameter>

Granted, that's a class-A bonehead move on my part. But, perhaps my bumbling 
exposes a issue with the nullability or not of that nameSpaceMap.

Thanks,

-Chris





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to