BookmarkSubscribeRSS Feed
brendanb
Obsidian | Level 7
Hi, I am using SAS ECM on Linux. Trying to update a case by adding an attachment. I am making the web service call to the ECM web service from the workspcae server, so the file is on the machine. I get the web service error below, basically stating the file is not found. I have check the file exists in the location, change the perms fo te folders to 775. The user running soap request is the owner of the file. Pleade asist. Thank you in advance. CODE to BUILD SOAP REQUEST: Request CODE: %LET ecmwsdir = %sysfunc(pathname(work)); %LET soapXMLFile = %sysfunc(pathname(work))/ECMXML_request.xml; filename request "%sysfunc(pathname(work))/ECMXML_request.xml"; filename response "%sysfunc(pathname(work))/ECMXML_response.xml"; %let caseid=2020-674899; data _null_; file "&soapXMLFile"; put ''; put ''; aa=''; put aa; put ' '; put '' ; put ' Test attachment for subpoena case' ; put ' '; put ' ' ; put ''; put ''; run; proc soap in=request out=response srsurl="&websvrprot.://&websvrnm.:&websvrport./SASWIPSoapServices/services/ServiceRegistry" url="&websvrprot.://&websvrnm.:&websvrport./SASEntCaseManagement/service" soapaction="http://sas.com/solutions/casemgmt/webservice/CaseManagementServiceInterface/create" WSSUSERNAME="aaa" WSSPASSWORD="fffff" ; run; data _null_ ;infile response ;input ;put _infile_ ;run ; the REQUEST XML Test attachment for subpoena case the RESPOSE XML File not found: "/grid/fnbfraud/FNB_Fraud/SASEnterpriseCaseManagement/sasdav/subpoenas/ecmdocs/test.zip"

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 0 replies
  • 478 views
  • 0 likes
  • 1 in conversation