[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

classic ASp using SOAP

Asked by globalterminal in Active Server Pages (ASP), SOAP

Tags: ASP, SOAP, XML

i really need to help getting started.  I want to use existing classic ASP environment and make SOAP calls to an application.  If i could just get started it would be greatly appreciated. i have attached example XML that works inside the application testing tool where one can simply paste XML and submit to the application... and i also have attached the XML schema.  Any help would be greatly appreciated.
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:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
XML to pass:
<gate>
    <record-scan scan-set-id="6584930">
        <gate-id>MG</gate-id>
        <stage-id>office</stage-id>
        <lane-id>L1</lane-id>
        <truck license-nbr="MFE590P" trucking-co-id="ACME"/>
        <timestamp>2007-10-01T17:49:22</timestamp>
    </record-scan>
</gate>
-------------------------------------------------------------------------------------------------------
schema file
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2008 sp1 (http://www.altova.com) by Serge (Home) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:argo="http://www.navis.com/argo" targetNamespace="http://www.navis.com/argo" elementFormDefault="unqualified" attributeFormDefault="unqualified">
	<xs:include schemaLocation="gate-types.xsd"/>
	<xs:complexType name="GateWebserviceRequestType">
		<xs:annotation>
			<xs:documentation>Action to be processed by the gate webservice</xs:documentation>
		</xs:annotation>
		<xs:choice>
			<xs:element name="record-scan" type="argo:ScanType"/>
			<xs:element name="process-truck">
				<xs:complexType>
					<xs:complexContent>
						<xs:extension base="argo:ScanType">
                            <xs:sequence minOccurs="0">
                                <xs:element name="truck-visit" type="argo:TruckVisitType"/>
                                <xs:element name="timestamp" type="xs:dateTime"/>
							</xs:sequence>
                            <xs:attribute name="send-to-trouble" type="xs:boolean" use="optional" default="false"/>
							<xs:attribute name="no-content" type="xs:boolean" use="optional" default="false"/>
							<xs:attribute name="xps" type="xs:boolean" use="optional" default="true"/>
							<xs:attribute name="retry" type="xs:boolean" use="optional" default="true"/>
						</xs:extension>
					</xs:complexContent>
				</xs:complexType>
			</xs:element>
            <xs:element name="submit-transaction">
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="gate-id" minOccurs="0"/>
                        <xs:element name="stage-id"/>
                        <xs:element name="lane-id" minOccurs="0"/>
                        <xs:element name="truck" type="argo:TruckType" minOccurs="0"/>
                        <xs:element name="driver" type="argo:DriverType" minOccurs="0"/>
                        <xs:element name="truck-visit" type="argo:TruckVisitType" minOccurs="0"/>
                        <xs:element name="truck-transaction" type="argo:TruckTransactionType"/>
                        <xs:element name="timestamp" type="xs:dateTime" minOccurs="0"/>
                    </xs:sequence>
                    <xs:attribute name="list-appointments" type="xs:boolean" use="optional" default="false"/>
                    <xs:attribute name="no-content" type="xs:boolean" use="optional" default="false"/>
                    <xs:attribute name="xps" type="xs:boolean" use="optional" default="true"/>
                    <xs:attribute name="retry" type="xs:boolean" use="optional" default="true"/>
                </xs:complexType>
            </xs:element>
			<xs:element name="stage-done">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="gate-id"/>
						<xs:element name="stage-id"/>
						<xs:element name="lane-id" minOccurs="0"/>
						<xs:element name="truck" type="argo:TruckType" minOccurs="0"/>
                        <xs:element name="driver" type="argo:DriverType" minOccurs="0"/>
                        <xs:element name="truck-visit" type="argo:TruckVisitType" minOccurs="0"/>
					</xs:sequence>
					<xs:attribute name="no-content" type="xs:boolean" use="optional" default="false"/>
					<xs:attribute name="xps" type="xs:boolean" use="optional" default="true"/>
					<xs:attribute name="retry" type="xs:boolean" use="optional" default="true"/>
				</xs:complexType>
			</xs:element>
			<xs:element name="request-pickup-appointments">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="gate-id"/>
						<xs:element name="truck-visit" type="argo:TruckVisitType"/>
						<xs:element name="timestamp" type="xs:dateTime" minOccurs="0"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="create-truck-visit" type="argo:TruckScanType"/>
			<xs:element name="read-preadvise">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="container">
							<xs:complexType>
								<xs:attribute name="eqid" type="xs:string" use="required"/>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="need-assistance">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="gate-id"/>
						<xs:element name="stage-id"/>
						<xs:element name="lane-id"/>
						<xs:element name="truck-visit" type="argo:TruckVisitType"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="cancel-transaction">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="truck-transaction">
							<xs:complexType>
								<xs:attribute name="tran-key" type="xs:long" use="required"/>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="notify-arrival">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="gate-id" minOccurs="0"/>
						<xs:element name="stage-id"/>
						<xs:element name="exchange-area-id" minOccurs="0"/>
						<xs:element name="lane-id" minOccurs="0"/>
						<xs:element name="truck-visit" type="argo:TruckVisitType"/>
						<xs:element name="timestamp" type="xs:dateTime" minOccurs="0"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="request-visit-details">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="truck" type="argo:TruckType" minOccurs="0"/>
						<xs:element name="driver" type="argo:DriverType" minOccurs="0"/>
						<xs:element name="truck-visit" type="argo:TruckVisitType" minOccurs="0"/>
					</xs:sequence>
					<xs:attribute name="no-content" type="xs:boolean" use="optional" default="false"/>
					<xs:attribute name="include-complete" type="xs:boolean" use="optional" default="false"/>
				</xs:complexType>
			</xs:element>
            <xs:element name="create-appointment">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="appointment-date" type="xs:date"/>
						<xs:element name="gate-id"/>
						<xs:element name="driver" type="argo:DriverType" minOccurs="0"/>
						<xs:element name="truck" type="argo:TruckType" minOccurs="0"/>
						<xs:element name="booking" minOccurs="0">
							<xs:complexType>
								<xs:attribute name="booking-nbr"/>
								<xs:attribute name="line"/>
								<xs:attribute name="freight-kind"/>
								<xs:attribute name="train-id"/>
								<xs:attribute name="train-date" type="xs:dateTime"/>
							</xs:complexType>
						</xs:element>
						<xs:element name="tran-type">
							<xs:simpleType>
								<xs:restriction base="xs:string">
									<xs:enumeration value="RE"/>
									<xs:enumeration value="RI"/>
									<xs:enumeration value="RM"/>
									<xs:enumeration value="RC"/>
                                    <xs:enumeration value="RB"/>
                                    <xs:enumeration value="DE"/>
                                    <xs:enumeration value="DI"/>
                                    <xs:enumeration value="DM"/>
									<xs:enumeration value="DC"/>
                                    <xs:enumeration value="TC"/>
                                    <xs:enumeration value="UK"/>
                                    <!-- 2008-06-03 jku ARGO-12109 1.5.5 Added support for trucker-friendly subtypes. -->
                                    <xs:enumeration value="PUC"/>
                                    <xs:enumeration value="PUE"/>
                                    <xs:enumeration value="PUI"/>
                                    <xs:enumeration value="PUM"/>
                                    <xs:enumeration value="DOC"/>
                                    <xs:enumeration value="DOE"/>
                                    <xs:enumeration value="DOI"/>
                                    <xs:enumeration value="DOM"/>
                                </xs:restriction>
							</xs:simpleType>
						</xs:element>
						<xs:element name="container" type="argo:ContainerType" minOccurs="0"/>
						<xs:element name="chassis" type="argo:ChassisType" minOccurs="0"/>
                        <xs:element name="import-release-nbr" minOccurs="0"/>
                    </xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="read-order">
				<xs:complexType>
					<xs:choice>
						<xs:element name="eq-order" type="argo:EqOrderType"/>
						<xs:element name="container" type="argo:ContainerType"/>
					</xs:choice>
				</xs:complexType>
			</xs:element>
			</xs:choice>
		<xs:attribute name="locale" type="xs:string" use="optional"/>
	</xs:complexType>
	<xs:element name="gate" type="argo:GateWebserviceRequestType">
		<xs:annotation>
			<xs:documentation>Root Element for the gate webservice message</xs:documentation>
		</xs:annotation>
	</xs:element>
</xs:schema>
[+][-]10/16/09 03:36 AM, ID: 25588214Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/16/09 01:12 PM, ID: 25592933Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
[+][-]10/16/09 01:42 PM, ID: 25593139Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Active Server Pages (ASP), SOAP
Tags: ASP, SOAP, XML
Sign Up Now!
Solution Provided By: carrzkiss
Participating Experts: 1
Solution Grade: A
 
[+][-]10/20/09 10:32 AM, ID: 25616450Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
[+][-]10/20/09 12:14 PM, ID: 25617394Expert Comment

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 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625