Skip to content

Commit db64c02

Browse files
committed
PR WIP
Signed-off-by: Dave Streeter <dave.streeter@lexisnexisrisk.com>
1 parent d1ac470 commit db64c02

14 files changed

Lines changed: 21 additions & 21 deletions

helm/examples/certmanager/localhttpcall.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ responseRecord :=
99

1010
//mtls: tells HTTPCALL/SOAPCALL to use mutual TLS, using the local client and CA certificates
1111
//
12-
string hostURL := 'mtls:https://eclservices:8009/WsSmc/HttpEcho?name=doe,joe&number=1';
12+
string hostURL := 'mtls:https://eclservices:8010/WsSmc/HttpEcho?name=doe,joe&number=1';
1313

1414
echoResult := HTTPCALL(hostURL,'GET', 'text/xml', responseRecord, xpath('Envelope/Body/HttpEchoResponse'));
1515
output(echoResult, named('localHttpEchoResult'));

initfiles/examples/http/eclwatch_service_query.ecl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ END;
2626

2727
//Using an HTTP GET URL that returns JSON content:
2828

29-
OUTPUT(HTTPCALL('http://.:8009/WsResources/ServiceQuery.json?Type=EclWatch','GET', 'application/json', ServiceQueryResponse, XPATH('/ServiceQueryResponse'), LOG('http get json')), NAMED('http_get_json'));
29+
OUTPUT(HTTPCALL('http://.:8010/WsResources/ServiceQuery.json?Type=EclWatch','GET', 'application/json', ServiceQueryResponse, XPATH('/ServiceQueryResponse'), LOG('http get json')), NAMED('http_get_json'));
3030

3131
//Using a HTTP GET URL that returns XML content:
3232

33-
OUTPUT(HTTPCALL('http://.:8009/WsResources/ServiceQuery.xml?Type=EclWatch','GET', 'text/xml', ServiceQueryResponse, XPATH('/ServiceQueryResponse'), LOG('http get xml')), NAMED('http_get_xml'));
33+
OUTPUT(HTTPCALL('http://.:8010/WsResources/ServiceQuery.xml?Type=EclWatch','GET', 'text/xml', ServiceQueryResponse, XPATH('/ServiceQueryResponse'), LOG('http get xml')), NAMED('http_get_xml'));
3434

3535
//Using a JSON post
3636

37-
OUTPUT(HTTPCALL('http://.:8009/WsResources','ServiceQueryRequest', ServiceQueryRequest, ServiceQueryResponse, JSON, XPATH('ServiceQueryResponse'), LOG('http post json')), NAMED('http_post_json'));
37+
OUTPUT(HTTPCALL('http://.:8010/WsResources','ServiceQueryRequest', ServiceQueryRequest, ServiceQueryResponse, JSON, XPATH('ServiceQueryResponse'), LOG('http post json')), NAMED('http_post_json'));
3838

3939

4040

@@ -47,15 +47,15 @@ OUTPUT(HTTPCALL('http://.:8009/WsResources','ServiceQueryRequest', ServiceQueryR
4747
//
4848

4949

50-
OUTPUT(HTTPCALL('http://.:8009/WsResources/ServiceQuery','', ServiceQueryRequest, ServiceQueryResponse, FORMENCODED('esp'), XPATH('ServiceQueryResponse'), LOG('form encoded post json')), NAMED('form_post'));
50+
OUTPUT(HTTPCALL('http://.:8010/WsResources/ServiceQuery','', ServiceQueryRequest, ServiceQueryResponse, FORMENCODED('esp'), XPATH('ServiceQueryResponse'), LOG('form encoded post json')), NAMED('form_post'));
5151

5252

5353
//---------------- SOAP --------------------------------
5454

5555
//Using SOAP LITERAL:
5656

57-
OUTPUT(SOAPCALL('http://.:8009/WsResources','ServiceQueryRequest', ServiceQueryRequest, ServiceQueryResponse, LITERAL, XPATH('ServiceQueryResponse'), LOG('soap literal')), NAMED('soap_literal'));
57+
OUTPUT(SOAPCALL('http://.:8010/WsResources','ServiceQueryRequest', ServiceQueryRequest, ServiceQueryResponse, LITERAL, XPATH('ServiceQueryResponse'), LOG('soap literal')), NAMED('soap_literal'));
5858

5959
//Using ESP specific SOAP
6060

61-
OUTPUT(SOAPCALL('http://.:8009/WsResources','ServiceQuery', ServiceQueryRequest, ServiceQueryResponse, XPATH('ServiceQueryResponse'), LOG('soap esp')), NAMED('soap_esp'));
61+
OUTPUT(SOAPCALL('http://.:8010/WsResources','ServiceQuery', ServiceQueryRequest, ServiceQueryResponse, XPATH('ServiceQueryResponse'), LOG('soap esp')), NAMED('soap_esp'));

testing/regress/ecl-test-azure.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Regress":{
33
"roxieTestSocket": ":9876",
44
"espIp" : "127.0.0.1",
5-
"espSocket": "8009",
5+
"espSocket": "8010",
66
"dropzoneIp" : "127.0.0.1",
77
"dropzonePath" : "/var/lib/HPCCSystems/mydropzone/",
88
"espFileSprayService" : "FileSpray",

testing/regress/ecl-test-cluster160.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Regress":{
33
"roxieTestSocket": ":9876",
44
"espIp" : "10.173.160.101",
5-
"espSocket": "8009",
5+
"espSocket": "8010",
66
"dropzoneIp" :"10.173.160.101",
77
"dropzonePath" : "/var/lib/HPCCSystems/mydropzone/",
88
"espFileSprayService" : "FileSpray",

testing/regress/ecl-test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Regress":{
33
"roxieTestSocket": ":9876",
44
"espIp" : "127.0.0.1",
5-
"espSocket": "8009",
5+
"espSocket": "8010",
66
"dropzoneIp" : "127.0.0.1",
77
"dropzonePath" : "/var/lib/HPCCSystems/mydropzone/",
88
"espFileSprayService" : "FileSpray",

testing/regress/ecl/httpcall_multiheader.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ httpEchoServiceResponseRecord :=
2828
string content{xpath('Content')};
2929
END;
3030

31-
string TargetURL := 'http://' + TargetIP + ':8009/WsSmc/HttpEcho?name=doe,joe&number=1';
31+
string TargetURL := 'http://' + TargetIP + ':8010/WsSmc/HttpEcho?name=doe,joe&number=1';
3232

3333
string constHeader := 'constHeaderValue';
3434

testing/regress/ecl/httpcall_multiheader_proxy.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ httpEchoServiceResponseRecord :=
3131
string content{xpath('Content')};
3232
END;
3333

34-
string TargetURL := 'http://' + TargetIP + ':8009/WsSmc/HttpEcho?name=doe,joe&number=1';
34+
string TargetURL := 'http://' + TargetIP + ':8010/WsSmc/HttpEcho?name=doe,joe&number=1';
3535

3636
string constHeader := 'constHeaderValue';
3737

testing/regress/ecl/soapcall_multihttpheader.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ httpEchoServiceResponseRecord :=
2727
string content{xpath('Content')};
2828
END;
2929

30-
string TargetURL := 'http://' + TargetIP + ':8009/WsSmc/HttpEcho?name=doe,joe&number=1';
30+
string TargetURL := 'http://' + TargetIP + ':8010/WsSmc/HttpEcho?name=doe,joe&number=1';
3131

3232

3333
httpEchoServiceRequestRecord :=

testing/regress/ecl/soapcall_multihttpheader_proxy.ecl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ httpEchoServiceResponseRecord :=
3030
string content{xpath('Content')};
3131
END;
3232

33-
string TargetURL := 'http://' + TargetIP + ':8009/WsSmc/HttpEcho?name=doe,joe&number=1';
33+
string TargetURL := 'http://' + TargetIP + ':8010/WsSmc/HttpEcho?name=doe,joe&number=1';
3434

3535

3636
httpEchoServiceRequestRecord :=

testing/regress/ecl/split_test.ecl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ end;
152152

153153
// Variable spray tests
154154
#if (__CONTAINERIZED__)
155-
myRemoteEspFsURL := 'http://eclwatch:8009/FileSpray';
155+
myRemoteEspFsURL := 'http://eclwatch:8010/FileSpray';
156156
#else
157-
myRemoteEspFsURL := 'http://127.0.0.1:8009/FileSpray';
157+
myRemoteEspFsURL := 'http://127.0.0.1:8010/FileSpray';
158158
#end
159159

160160
sprayRec spray(sprayRec l) := TRANSFORM

0 commit comments

Comments
 (0)