BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
noffer
Obsidian | Level 7

Hi, I have a working ds2 prototype that does http posts to a service.  Here's the working code:

    /* HTTP POST in DS2, requests sent iteratively */
	proc ds2;
	data _null_;
		method init();
		end;
		method call_service(varchar(256) consUrlBase, varchar(256) uuid, varchar(256) brand, varchar(100) definition, varchar(2048) auth_token);
			filename response temp;
			filename request temp;
			dcl varchar(2050) authHeader;
			dcl varchar(1024) consUrl;
			dcl varchar(255) consPart jsonBody;
    		dcl package http h();
			dcl varchar(1024) body;
			dcl int status;
			dcl varchar(1024) contentType;

			
			/* set a couple variables*/

			/* use http package to call service */
			h.createPostMethod(consUrl);
			h.setOAuthToken(authHeader);
			/* set a couple headers */
			h.setRequestContentType('application/json; charset=utf-8');
			h.setRequestBodyAsString(jsonBody);
			h.executeMethod();
			status = h.getStatusCode();
			if status ^= 201 then do;
      			put 'ERROR: ' status ' response calling ' consUrl;
			end;
			h.delete();
			end;
		method run(); /* run step executes for each row in dataset */
			set work_dir.&dsname._&currdate.;
			call_service(cons_url_base, UUID, brnd_name, definition, auth_token);
			end;
		method term();
			put 'Done with ds2 logic!';
			end;
	enddata;
	run;

So the code executes and I get the 201 response I'm expecting.  Except I'm also getting the following warning... 

WARNING: Warning reported by DS2 package d2http:
WARNING: Aborted execution of HTTP POST method with URL: 

After 500 messages (or so it seems), I get: 

ERROR: Maximum number of error messages that can be recorded has been exceeded.

I'll routinely process thousands of records, so looking for a way to suppress the warning as it is causing the program to fail.

 

I'm also slightly suspicious of the dcl package http h(); ... maybe that should just be declared globally?  I'm not seeing any performance improvement by moving it.  (real time was slower, cpu time was less) I'm just following the sample code found here and other posts, so open to any guidance.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
noffer
Obsidian | Level 7

Solution was to add the following just above the h.delete() ....

h.abortMethod();

View solution in original post

8 REPLIES 8
Tom
Super User Tom
Super User

What is the error message you are getting?

noffer
Obsidian | Level 7

That's the fun part.  I'm getting warnings, but at some point its hitting some limit, and displaying the message I've included.

Tom
Super User Tom
Super User

Is there any reason why you are using DS2 for this?  

 

Why do you seem to be making a new HTTP object for each observation?  Can't you reuse a single object?  Are you trying to have DS2 make multiple HTTP requests at the same time?

noffer
Obsidian | Level 7

Using ds2 as this will move into a multi-threaded approach like here.  Yes, I thought to move the instantiation of the http object to a global var, but doesn't seem to make  a performance difference.

 

And why not use a proc http? That will make all calls at once, so if I have to make 10k calls, I wouldn't want to make all calls at once.

Patrick
Opal | Level 21

Are you sure your server can handle that many calls in a short time or that the server doesn't qualify these calls as a potential DoS attack and blocks you?

It might be worth considering to "combine" the calls and then sort out the response file.

noffer
Obsidian | Level 7

Thanks for you reply Patrick.  The web service currently processes 10-20k daily in bulk batches.  Sometimes a couple hundred thousand, which is why there's some motivation to streamline the process.  The current process, written years ago dumps the data to a file, which is then picked up by an external program that iterates through the file.  The ask is to move the logic into a multi-threaded SAS proc.  It doesn't help much if it throws an error after 500 calls.  I've opened a ticket with SAS support to see if there's any options that they can offer.

Tom
Super User Tom
Super User

With such volume it is probably worth exploring a different path.

Can't you just have them create a report that runs directly on the data without the HTTP interface?

That would be much less burden on everyone (and every system too).

noffer
Obsidian | Level 7

Solution was to add the following just above the h.delete() ....

h.abortMethod();

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 8 replies
  • 1205 views
  • 0 likes
  • 3 in conversation