You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by Adrian Almenar <aa...@conectium.com> on 2001/06/15 16:40:02 UTC

namespace URI for 'xsd

Im getting this when im using my client.
im starting with soap, so excuse me if this look like a stupid question.
Thanks,

Adrian

Generated fault:
 Fault Code: SOAP-ENV:Client
 Fault String: Unable to resolve namespace URI for 'xsd'.

What this mean, there is a missing library ???
or what ???
this are the server and client responses i get

Client Request:

POST /soap/servlet/rpcrouter HTTP/1.0
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: 452
SOAPAction: ""
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
	<SOAP-ENV:Body>
		<ns1:getNombre xmlns:ns1="urn:QueryServer"
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<usuarioid xsi:type="xsd:int">12</usuarioid>
		</ns1:getNombre>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


Server Response:

HTTP/1.0 500 Internal Server Error
Content-Type: text/xml; charset=utf-8
Content-Length: 476
Date: Fri, 15 Jun 2001 14:33:31 GMT
Server: Apache Tomcat/4.0-b5 (HTTP/1.1 Connector)
Set-Cookie: JSESSIONID=F061762479B3B0D9B9F3C035C281B4E4;Path=/soap
<?xml version='1.0' encoding='UTF-8'?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
	<SOAP-ENV:Fault>
		<faultcode>SOAP-ENV:Client</faultcode>
		<faultstring>Unable to resolve namespace URI for 'xsd'.</faultstring>
		 <faultactor>/soap/servlet/rpcrouter</faultactor>
	</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


---------------------------------------------------------------------
To unsubscribe, e-mail: soap-user-unsubscribe@xml.apache.org
For additional commands, email: soap-user-help@xml.apache.org


RE: namespace URI for 'xsd

Posted by "Matthew J. Duftler" <du...@watson.ibm.com>.
Hi Adrian,

Make sure you are not using Xerces v1.3.1. There is a known problem with the
namespace support in the version.

Thanks,
-Matt

> -----Original Message-----
> From: Adrian Almenar [mailto:aalmenar@conectium.com]
> Sent: Friday, June 15, 2001 10:40 AM
> To: Soap-User Mail List
> Subject: namespace URI for 'xsd
>
>
> Im getting this when im using my client.
> im starting with soap, so excuse me if this look like a stupid question.
> Thanks,
>
> Adrian
>
> Generated fault:
>  Fault Code: SOAP-ENV:Client
>  Fault String: Unable to resolve namespace URI for 'xsd'.
>
> What this mean, there is a missing library ???
> or what ???
> this are the server and client responses i get
>
> Client Request:
>
> POST /soap/servlet/rpcrouter HTTP/1.0
> Host: localhost
> Content-Type: text/xml; charset=utf-8
> Content-Length: 452
> SOAPAction: ""
> <?xml version='1.0' encoding='UTF-8'?>
> <SOAP-ENV:Envelope
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
> xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/1999/XMLSchema">
> 	<SOAP-ENV:Body>
> 		<ns1:getNombre xmlns:ns1="urn:QueryServer"
> SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
> <usuarioid xsi:type="xsd:int">12</usuarioid>
> 		</ns1:getNombre>
> 	</SOAP-ENV:Body>
> </SOAP-ENV:Envelope>
>
>
> Server Response:
>
> HTTP/1.0 500 Internal Server Error
> Content-Type: text/xml; charset=utf-8
> Content-Length: 476
> Date: Fri, 15 Jun 2001 14:33:31 GMT
> Server: Apache Tomcat/4.0-b5 (HTTP/1.1 Connector)
> Set-Cookie: JSESSIONID=F061762479B3B0D9B9F3C035C281B4E4;Path=/soap
> <?xml version='1.0' encoding='UTF-8'?>
> <SOAP-ENV:Envelope
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
> xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/1999/XMLSchema">
> <SOAP-ENV:Body>
> 	<SOAP-ENV:Fault>
> 		<faultcode>SOAP-ENV:Client</faultcode>
> 		<faultstring>Unable to resolve namespace URI for
> 'xsd'.</faultstring>
> 		 <faultactor>/soap/servlet/rpcrouter</faultactor>
> 	</SOAP-ENV:Fault>
> </SOAP-ENV:Body>
> </SOAP-ENV:Envelope>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: soap-user-unsubscribe@xml.apache.org
> For additional commands, email: soap-user-help@xml.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: soap-user-unsubscribe@xml.apache.org
For additional commands, email: soap-user-help@xml.apache.org


RE: namespace URI for 'xsd

Posted by "Matthew J. Duftler" <du...@watson.ibm.com>.
Hi Adrian,

Make sure you are not using Xerces v1.3.1. There is a known problem with the
namespace support in the version.

Thanks,
-Matt

> -----Original Message-----
> From: Adrian Almenar [mailto:aalmenar@conectium.com]
> Sent: Friday, June 15, 2001 10:40 AM
> To: Soap-User Mail List
> Subject: namespace URI for 'xsd
>
>
> Im getting this when im using my client.
> im starting with soap, so excuse me if this look like a stupid question.
> Thanks,
>
> Adrian
>
> Generated fault:
>  Fault Code: SOAP-ENV:Client
>  Fault String: Unable to resolve namespace URI for 'xsd'.
>
> What this mean, there is a missing library ???
> or what ???
> this are the server and client responses i get
>
> Client Request:
>
> POST /soap/servlet/rpcrouter HTTP/1.0
> Host: localhost
> Content-Type: text/xml; charset=utf-8
> Content-Length: 452
> SOAPAction: ""
> <?xml version='1.0' encoding='UTF-8'?>
> <SOAP-ENV:Envelope
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
> xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/1999/XMLSchema">
> 	<SOAP-ENV:Body>
> 		<ns1:getNombre xmlns:ns1="urn:QueryServer"
> SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
> <usuarioid xsi:type="xsd:int">12</usuarioid>
> 		</ns1:getNombre>
> 	</SOAP-ENV:Body>
> </SOAP-ENV:Envelope>
>
>
> Server Response:
>
> HTTP/1.0 500 Internal Server Error
> Content-Type: text/xml; charset=utf-8
> Content-Length: 476
> Date: Fri, 15 Jun 2001 14:33:31 GMT
> Server: Apache Tomcat/4.0-b5 (HTTP/1.1 Connector)
> Set-Cookie: JSESSIONID=F061762479B3B0D9B9F3C035C281B4E4;Path=/soap
> <?xml version='1.0' encoding='UTF-8'?>
> <SOAP-ENV:Envelope
> xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
> xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
> xmlns:xsd="http://www.w3.org/1999/XMLSchema">
> <SOAP-ENV:Body>
> 	<SOAP-ENV:Fault>
> 		<faultcode>SOAP-ENV:Client</faultcode>
> 		<faultstring>Unable to resolve namespace URI for
> 'xsd'.</faultstring>
> 		 <faultactor>/soap/servlet/rpcrouter</faultactor>
> 	</SOAP-ENV:Fault>
> </SOAP-ENV:Body>
> </SOAP-ENV:Envelope>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: soap-user-unsubscribe@xml.apache.org
> For additional commands, email: soap-user-help@xml.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: soap-user-unsubscribe@xml.apache.org
For additional commands, email: soap-user-help@xml.apache.org