12filename ft15f001 temp;
19 %put Initialising sendObj: ;
24 %
if (%symexist(sasjs_tables) and %length(&sasjs_tables)>0)
25 %then %
do i=1 %to %sysfunc(countw(&sasjs_tables));
26 %let table=%scan(&sasjs_tables,&i);
27 %webout(OBJ,&table,missing=STRING)
29 %
else %
do i=1 %to &_webin_file_count;
30 %webout(OBJ,&&_webin_name&i,missing=STRING)
36%put creating web service: &mcTestAppLoc/services;
38 path=&mcTestAppLoc/services,
42%put created web service: &mcTestAppLoc/services;
46 desc=No errors after service creation,
47 outds=work.test_results
53data work.somedata1 work.somedata2;
61%ms_testservice(&mcTestAppLoc/services/sendObj,
62 inputdatasets=work.somedata1 work.somedata2,
71 set testlib1.somedata1;
72 if x=1 and y=' t"w"o' and z="Z" then call symputx('test1','PASS');
78 set testlib1.somedata2;
79 if x=1 and y=' t"w"o' and z="Z" then call symputx('test2','PASS');
86 desc=somedata1 created correctly,
87 outds=work.test_results
91 desc=somedata2 created correctly,
92 outds=work.test_results