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"

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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