You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@xml.apache.org by Sean Walsh <sw...@home.com> on 2000/10/31 19:26:56 UTC

How to connect to MS Soap Listener? HELP!

If I set the URL of the call to this xml file and I wanted to call the
ListAlerts method, what would the targetURN be?  I've not had any success in
try to work with this file.

<?xml version="1.0"?>
<!-- Generated 10/3/2000 12:50:24 PM by Microsoft SOAP Toolkit Wizard,
Version 205.0.3 -->
<serviceDescription name="thisTest_API"
xmlns="urn:schemas-xmlsoap-org:sdl.2000-01-25"
xmlns:dt="http://www.w3.org/1999/XMLSchema" xmlns:Test_API="Test_API">
	<import namespace="Test_API" location="#Test_API"/>
	<soap xmlns="urn:schemas-xmlsoap-org:soap-sdl-2000-01-25">
		<interface name="Test_API">
			<requestResponse name="ListAlerts">
				<request ref="Test_API:ListAlerts"/>
				<response ref="Test_API:ListAlertsResponse"/>
				<parameterorder>Start NumRows TotalRows XMLRows</parameterorder>
			</requestResponse>
			<requestResponse name="RemoveAlert">
				<request ref="Test_API:RemoveAlert"/>
				<response ref="Test_API:RemoveAlertResponse"/>
				<parameterorder>AlertID Timestamp</parameterorder>
			</requestResponse>
			<requestResponse name="RemoveAllAlerts">
				<request ref="Test_API:RemoveAllAlerts"/>
				<response ref="Test_API:RemoveAllAlertsResponse"/>
				<parameterorder>Timestamp</parameterorder>
			</requestResponse>
		</interface>
		<service>
			<addresses>
				<address uri="http://00.0.00.0/v1/Test_API.sod"/>
			</addresses>
			<implements name="Test_API"/>
		</service>
	</soap>
	<Test_API:schema id="Test_API" targetNamespace="Test_API"
xmlns="http://www.w3.org/1999/XMLSchema">
		<element name="ListAlerts">
			<type>
				<element name="Start" type="dt:integer"/>
				<element name="NumRows" type="dt:integer"/>
				<element name="TotalRows" type="dt:integer"/>
				<element name="XMLRows" type="dt:xmlstring"/>
			</type>
		</element>
		<element name="ListAlertsResponse">
			<type>
				<element name="return" type="dt:integer"/>
				<element name="NumRows" type="dt:integer"/>
				<element name="TotalRows" type="dt:integer"/>
				<element name="XMLRows" type="dt:xmlstring"/>
			</type>
		</element>
		<element name="RemoveAlert">
			<type>
				<element name="AlertID" type="dt:integer"/>
				<element name="Timestamp" type="dt:string"/>
			</type>
		</element>
		<element name="RemoveAlertResponse">
			<type>
				<element name="return" type="dt:integer"/>
			</type>
		</element>
		<element name="RemoveAllAlerts">
			<type>
				<element name="Timestamp" type="dt:string"/>
			</type>
		</element>
		<element name="RemoveAllAlertsResponse">
			<type>
				<element name="return" type="dt:integer"/>
			</type>
		</element>
	</Test_API:schema>
</serviceDescription>