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;
52%mx_testservice(&mcTestAppLoc/services/sendObj,
53 inputdatasets=work.somedata1 work.somedata2,
61 set testlib1.somedata1;
62 if x=1 and y=' t"w"o' and z="Z" and y2=' two' then call symputx('test1','PASS');
68 set testlib1.somedata2;
69 if x=1 and y=' t"w"o' and z="Z" and y2=' two' then call symputx('test2','PASS');
76 desc=somedata1 created correctly,
77 outds=work.test_results
81 desc=somedata2 created correctly,
82 outds=work.test_results