Sfoglia il codice sorgente

Merge pull request #7000 from JamesDeFabia/13072SOAPCALLedits

HPCC-13072 Edit SOAPCALL examples in Prog Guide

Reviewed-By: Anthony Fishbeck <anthony.fishbeck@lexisnexis.com>
Reviewed-By: Lorraine Chapman <lorraine.chapman@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 10 anni fa
parent
commit
d7d21c14f1

+ 1 - 1
docs/ECLProgrammersGuide/PRG_Mods/ECL Code Files/Soapcall1.ecl

@@ -4,7 +4,7 @@
 IMPORT $;
 
 OutRec1 := $.DeclareData.Layout_Person;
-RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/roxieoverview1.1';
+RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/roxieoverview1.1';
 svc     := 'RoxieOverview1.1';
 
 InputRec := RECORD

+ 1 - 1
docs/ECLProgrammersGuide/PRG_Mods/ECL Code Files/Soapcall2.ecl

@@ -4,7 +4,7 @@
 IMPORT $;
 
 OutRec1 := $.DeclareData.Layout_Person;
-RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/roxieoverview1.1';
+RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/roxieoverview1.1';
 svc     := 'RoxieOverview1.1';
 
 //recordset in, recordset out

+ 2 - 2
docs/ECLProgrammersGuide/PRG_Mods/ECL Code Files/Soapcall4.ecl

@@ -1,7 +1,7 @@
-//
+//
 //  Example code - use without restriction.  
 //
-RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/soapcall3.1';			//Roxie
+RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/soapcall3.1';			//Roxie
 svc     := 'soapcall3.1';
 
 InRec := RECORD

+ 3 - 3
docs/ECLProgrammersGuide/PRG_Mods/PrG_SOAPCALL_fromTHOR_to_ROXIE.xml

@@ -24,7 +24,7 @@
     <programlisting>IMPORT $;
 
 OutRec1 := $.DeclareData.Layout_Person;
-RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/roxieoverview1.1';
+RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/roxieoverview1.1';
 svc     := 'RoxieOverview1.1';
      
 InputRec := RECORD
@@ -57,7 +57,7 @@ OUTPUT(ManyRec1);</programlisting>
     <programlisting>IMPORT $;
 
 OutRec1 := $.DeclareData.Layout_Person;
-RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/roxieoverview1.1';
+RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/roxieoverview1.1';
 svc     := 'RoxieOverview1.1';
 //recordset in, recordset out
 InRec := RECORD
@@ -259,7 +259,7 @@ END;</programlisting>
     like this (the only difference would be the IP and port you target for the
     query (contained in Soapcall4.ECL)):</para>
 
-    <programlisting>RoxieIP := 'http://192.168.11.130:8002/WsEcl/soap/query/myroxie/soapcall3.1'; //Roxie
+    <programlisting>RoxieIP := 'http://127.0.0.1:8002/WsEcl/soap/query/roxie/soapcall3.1'; //Roxie
 svc     := 'soapcall3.1';
 
 InRec := RECORD