Hi,
 
After downloading and installing the latest (2/20) nightly build, ( http://cvs.apache.org/dist/axis/nightly/axis-c-1.6a.n-Win32-trace-bin.zip ), I get 'Unresolved externals' when I link my project.  All the link errors appear to be related to Axis_Array.  I'm building my project on Windows 2000 using Visual Studio 2002 (aka v. 7.0).  My project consists of the source files generated by WSDL2WS using the 'c++' and 'server' options.  My WSDL file is attached.  Any thoughts on what might cause this problem?  TIA.
 
Regards,
Brian
<?xml version="1.0" encoding="UTF-8" ?>
<definitions xmlns:wsi="http://ws-i.org/schemas/conformanceClaim/"; xmlns="http://schemas.xmlsoap.org/wsdl/"; xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"; xmlns:tns="http://localhost/wsdl/MyWS/1.0.0"; targetNamespace="http://localhost/wsdl/MyWS/1.0.0";>
<types>
	<xs:schema targetNamespace="http://localhost/wsdl/MyWS/1.0.0"; xmlns:tns="http://localhost/wsdl/MyWS/1.0.0"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
		<xs:complexType name="MyNumberType">
			<xs:sequence>
				<xs:element name="IntNumber" type="xs:int" minOccurs="0" maxOccurs =" unbounded" />
				<xs:element name="UIntNumber" type="xs:unsignedlnt" minOccurs="0" maxOccurs="unbounded" />
				<xs:element name="FloatNumber" type="xs:float" minOccurs="0" niaxOccurs="unbounded" />
			</xs:sequence>
		</xs:complexType>
		<xs:complexType name="NumberType">
			<xs:sequence>
				<xs:element name="Number" type="tns:MyNumberType" minOccurs="0" maxOccurs="unbounded" />
			</xs:sequence>
		</xs:complexType>
		<!-- -->
		<xs:element name="MyWSRequest">
			<xs:complexType>
				<xs:sequence>
					<xs:element name="Input" type="tns:NumberType" />
				</xs:sequence>
			</xs:complexType>
		</xs:element>
		<xs:element name="MyWSResponse">
			<xs:complexType>
				<xs:sequence>
					<xs:element name="Input" type="tns:NumberType" />
					<xs:element name="Output" type="tns:NumberType" />
				</xs:sequence>
			</xs:complexType>
		</xs:element>
	</xs:schema>
</types>
<message name="MyWSRequest">
	<part name="parameters" element="tns:MyWSRequest"/>
</message>
<message name="MyWSResponse">
	<part name="parameters" element="tns:MyWSResponse"/>
</message>
<portType name="MyWSInterface">
	<operation name="getMyWS">
		<input message="tns:MyWSRequest"/>
		<output message="tns:MyWSResponse"/>
	</operation>
</portType>
<binding name="MyWSSoapHttpBinding" type="tns:MyWSInterface">
	<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
	<operation name="getMyWS">
		<soap:operation soapAction="http://localhost/getMyWSReport"; style="document"/>
		<input>
			<soap:body use="literal"/>
		</input>
		<output>
			<soap:body use="literal"/>
		</output>
	</operation>
</binding>
<service name="MyWS">
	<port name="MyWSEndpoint" binding="tns:MyWSSoapHttpBinding">
		<soap:address location="http://localhost/axis/MyWS"/>
	</port>
</service>
</definitions>

Reply via email to