|
I'm getting the following error when i run wsdl2perl
Creating complexType class NBBS/runReport.pm
/usr/lib/perl5/site_perl/5.8.8/SOAP/WSDL/Generator/Template/XSD\complexType.tt NOT_FOUND error - http://nbbs.netopia.com/nbi/v2.0/Types/ string_128 not found at /usr/lib/perl5/site_perl/5.8.8/SOAP/WSDL/Base.pm line 62
it seems that i can't find the type string_128, but if i look into the .xsd for the type i see:
<xs:simpleType name="string_128">
<xs:restriction base="xs:string">
<xs:maxLength value="128" />
</xs:restriction>
that simple type is used in a couple of complex types like:
<xs:complexType name="NameValuePair">
<xs:sequence>
<xs:element name="Name" type="tns:var_name" />
<xs:element name="Value" type="tns:string_128" />
</xs:sequence>
I'm using SOAP::WSDL version: 2.00.10 on Linux with perl version 5.8.8.
If someone needs to have a look at the xsd itself i can post it later.
Thanks. |