15filename ft15f001 temp;
17 %put Initialising sendObj: ;
22 %
if %symexist(sasjs_tables) %then %
do i=1 %to %sysfunc(countw(&sasjs_tables));
23 %let table=%scan(&sasjs_tables,&i);
24 %webout(OBJ,&table,missing=STRING)
26 %
else %
do i=1 %to &_webin_file_count;
27 %webout(OBJ,&&_webin_name&i,missing=STRING)
32%mx_createwebservice(path=&mcTestAppLoc/services,name=sendObj)
36 desc=No errors after service creation,
37 outds=work.test_results
43data work.somedata1 work.somedata2;
51%mx_testservice(&mcTestAppLoc/services/sendObj,
52 inputdatasets=work.somedata1 work.somedata2,
60 set testlib1.somedata1;
61 if x=1 and y=' t"w"o' and z="Z" then call symputx('test1','PASS');
67 set testlib1.somedata2;
68 if x=1 and y=' t"w"o' and z="Z" then call symputx('test2','PASS');
75 desc=somedata1 created correctly,
76 outds=work.test_results
80 desc=somedata2 created correctly,
81 outds=work.test_results