Advertisement

06.21.2008 at 04:48PM PDT, ID: 23505155 | Points: 500
[x]
Attachment Details

Issue with WSDL generation for SOAP service

Asked by imaginative in Web Services Description Language, Extensible Markup Language (XML), SOAP

For some reason, the following WSDL is giving me issues.  I'll attach it below.  Can anyone see what's wrong with it?

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
<?xml version="1.0" encoding="UTF-8" ?>
<definitions name="limelock"
	targetNamespace="http://foo.com/demo"
	xmlns:tns="http://foo.com/demo"
	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap"
	xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding"
	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	xmlns="http://schemas.xmlsoap.org/wsdl/">
	
	<message name="DemoRequest">
		<part name="param1" type="xsd:string" />
	</message>
 
	<message name="DemoResponse">
		<part name="Result" type="xsd:string" />
	</message>
 
	<portType name="DemoPortType">
		<operation name="demo2">
			<input message="tns:DemoRequest" />
			<output message="tns:DemoResponse" />
		</operation>
	</portType>
 
	<binding name="DemoBinding" type="tns:DemoPortType">
		<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
		<operation name="demo2">
			<soap:operation soapAction="http://foo.com/demo" />
			<input>
				<soap:body use="encoded" namespace="http://foo.com/demo" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</input>
			<output>
				<soap:body use="encoded" namespace="http://foo.com/demo" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
			</output>
		</operation>
	</binding>
 
	<service name="DemoService">
		<port name="DemoPort" binding="DemoBinding">
			<soap:address location="http://foo.com/demo" />
		</port>
	</service> 
 
</definitions>
 
Loading Advertisement...
 
[+][-]06.22.2008 at 06:30AM PDT, ID: 21840640

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 14-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]06.22.2008 at 10:32AM PDT, ID: 21841469

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 14-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20081112-EE-VQP-43 / EE_QW_2_20070628