以下のように定義された WSDL があります。定義の何が問題なのかわからないが、インポートしようとするたびにエラーが発生する
<definitions targetNamespace="myservices"
xmlns:nslt2="myxsdspace"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="urn:myservices"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/">
<types>
<schema elementFormDefault="unqualified"
targetNamespace="myservices" xmlns="http://www.w3.org/2001/XMLSchema"/>
<xsd:schema>
<xsd:import namespace="myxsdspace" schemaLocation="ApplicaitonForm_Latest.xsd"/>
</xsd:schema>
</types>
<message name="processRequest">
... ... ...
以下のエラーが発生し、解決策を見つけることができませんでした。
SOAP-ERROR: Parsing Schema: can't import schema from 'myxsd.xsd', unexpected 'targetNamespace'='myxsdspace
よろしくお願いします