You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@beehive.apache.org by Britton D Nielsen <bd...@unlnotes.unl.edu> on 2005/02/21 17:22:17 UTC

javax.xml.rpc.JAXRPCException: Null qualified name specified.

I am trying to create a web service using XmlBeans databinding that
exposes this method:

 

EnvelopeDocument process(EnvelopeDocument request)

 

When I access the wsdl for this service I get the following.

 

Fault - ; nested exception is: 
        javax.xml.rpc.JAXRPCException: Null qualified name specified.













 
AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode: 
 faultString: javax.xml.rpc.JAXRPCException: Null qualified name
specified.
 faultActor: 
 faultNode: 
 faultDetail: 
        {http://xml.apache.org/axis/}hostname:AlliedLaptop3

 

The interesting thing is when I expose the method as:

 

EnvelopeType process(EnvelopeType request)

 

everything works properly!  The schema I'm using:

 

            <xs:element name="Envelope" type="EnvelopeType"></xs:element>

            <xs:complexType name="EnvelopeType">

                        <xs:sequence>

                                    <xs:element name="Sender">

                                                <xs:complexType>

                                                            <xs:sequence>

 
<xs:element name="Id" type="xs:string"/>

 
<xs:element name="User" type="xs:string"/>

                                                            </xs:sequence>

                                                </xs:complexType>

                                    </xs:element>

                                    .

                        </xs:sequence>

            </xs:complexType>

 

Any thoughts?  Let me know if you need more information.

 

Thanks,

Britton