This is a multi-part message in MIME format.
Hi,
when trying to convert the attached wsdl file to java I get the following error. Does
anyone know why this error occurs ? My network connection is fine
>java org.apache.axis.wsdl.WSDL2Java test1.wsdl
java.net.ConnectException: Connection timed out: connect
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(Unknown Source)
at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at sun.net.NetworkClient.doConnect(Unknown Source)
at sun.net.www.http.HttpClient.openServer(Unknown Source)
at sun.net.www.http.HttpClient.openServer(Unknown Source)
at sun.net.www.http.HttpClient.<init>(Unknown Source)
at sun.net.www.http.HttpClient.<init>(Unknown Source)
at sun.net.www.http.HttpClient.New(Unknown Source)
at sun.net.www.http.HttpClient.New(Unknown Source)
at sun.net.www.http.HttpClient.New(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at java.net.URL.openStream(Unknown Source)
at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
at org.apache.xerces.impl.XMLEntityManager.startDocumentEntity(Unknown Source)
at org.apache.xerces.impl.XMLDocumentScannerImpl.setInputSource(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:322)
at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:367)
at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:350)
at
org.apache.axis.wsdl.symbolTable.SymbolTable.lookForImports(SymbolTable.java:656)
at
org.apache.axis.wsdl.symbolTable.SymbolTable.lookForImports(SymbolTable.java:661)
at
org.apache.axis.wsdl.symbolTable.SymbolTable.lookForImports(SymbolTable.java:661)
at
org.apache.axis.wsdl.symbolTable.SymbolTable.lookForImports(SymbolTable.java:661)
at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:552)
at org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:421)
at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:408)
at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:393)
at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:245)
at java.lang.Thread.run(Unknown Source)
<?xml version="1.0"?>
<definitions
name="Test1"
targetNamespace="http://localhost:8000/Test1.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:cc-corba="http://schemas.capescience.com/ext-types/capeclear-corba-types.xsd"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://localhost:8000/Test1.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsd1="http://localhost:8000/Test1.xsd">
<types>
<xsd:schema
targetNamespace="http://localhost:8000/Test1.xsd"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:doc="http://www.capescience.com/doc"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:import
namespace="http://schemas.capescience.com/ext-types/capeclear-corba-types.xsd"
schemaLocation="http://schemas.capescience.com/ext-types/capeclear-corba-types.xsd"/>
<xsd:complexType name="ManagedGenericIRPConstDefs.VersionNumberSet">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:sequence>
<xsd:element
maxOccurs="unbounded"
minOccurs="0"
name="item"
type="xsd1:ManagedGenericIRPConstDefs.VersionNumber"/>
</xsd:sequence>
<xsd:attribute
ref="SOAP-ENC:arrayType"
wsdl:arrayType="xsd1:ManagedGenericIRPConstDefs.VersionNumber[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.MethodList">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:sequence>
<xsd:element
maxOccurs="unbounded"
minOccurs="0"
name="item"
type="xsd1:ManagedGenericIRPConstDefs.Method"/>
</xsd:sequence>
<xsd:attribute
ref="SOAP-ENC:arrayType"
wsdl:arrayType="xsd1:ManagedGenericIRPConstDefs.Method[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:simpleType name="ManagedGenericIRPConstDefs.ParameterName">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="ManagedGenericIRPConstDefs.UnsignedShortTypeOpt">
<xsd:sequence>
<xsd:element name="discriminator" type="xsd:boolean"/>
<xsd:choice>
<xsd:element
doc:doc="true"
maxOccurs="1"
minOccurs="0"
name="value"
type="xsd:unsignedShort"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.Method">
<xsd:sequence>
<xsd:element
maxOccurs="1"
minOccurs="1"
name="name"
nillable="true"
type="xsd1:ManagedGenericIRPConstDefs.MethodName"/>
<xsd:element
maxOccurs="1"
minOccurs="1"
name="parameter_list"
nillable="true"
type="xsd1:ManagedGenericIRPConstDefs.ParameterList"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.UnsignedLongTypeOpt">
<xsd:sequence>
<xsd:element name="discriminator" type="xsd:boolean"/>
<xsd:choice>
<xsd:element
doc:doc="true"
maxOccurs="1"
minOccurs="0"
name="value"
type="xsd:unsignedInt"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="ManagedGenericIRPConstDefs.Signal">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="OK"/>
<xsd:enumeration value="Failure"/>
<xsd:enumeration value="PartialFailure"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ManagedGenericIRPConstDefs.MethodName">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="ManagedGenericIRPConstDefs.LongTypeOpt">
<xsd:sequence>
<xsd:element name="discriminator" type="xsd:boolean"/>
<xsd:choice>
<xsd:element
doc:doc="true"
maxOccurs="1"
minOccurs="0"
name="value"
type="xsd:int"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.ParameterList">
<xsd:complexContent>
<xsd:restriction base="SOAP-ENC:Array">
<xsd:sequence>
<xsd:element
maxOccurs="unbounded"
minOccurs="0"
name="item"
type="xsd1:ManagedGenericIRPConstDefs.ParameterName"/>
</xsd:sequence>
<xsd:attribute
ref="SOAP-ENC:arrayType"
wsdl:arrayType="xsd1:ManagedGenericIRPConstDefs.ParameterName[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.ShortTypeOpt">
<xsd:sequence>
<xsd:element name="discriminator" type="xsd:boolean"/>
<xsd:choice>
<xsd:element
doc:doc="true"
maxOccurs="1"
minOccurs="0"
name="value"
type="xsd:short"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ManagedGenericIRPConstDefs.StringTypeOpt">
<xsd:sequence>
<xsd:element name="discriminator" type="xsd:boolean"/>
<xsd:choice>
<xsd:element
doc:doc="true"
maxOccurs="1"
minOccurs="0"
name="value"
type="xsd:string"/>
</xsd:choice>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="ManagedGenericIRPConstDefs.VersionNumber">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
</xsd:schema>
</types>
<!--Created by Cape Clear Studio, WSDL Generator - Version 4.7 Build 0660 Patch level 2 on Wed Mar 24 21:35:56 GMT 2004 See http://www.capeclear.com for more details-->
</definitions>---------RE24RJSDC3UM7IGNFYM4863W--