BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ShirleyD
Fluorite | Level 6

I am using (SAS 9.4 M5 on Linux)  PROC HTTP to call an in-house Windows API.

I use POST and pass JSON file in, and it returns a JSON file. 

To speed the process up I want to GZIP the JSON in and out.

The input of the GZIP'd JSON works fine for all file sizes.

The output in JSON format works for all file sizes.

The output in GZIP'd format works if the resulting .gz file is < 65 KB, BUT fails for anything larger.

 

I can run the cURL from DOS which passes .gz file from Linux box location via the windows API and it writes a resulting .gz file to Linux (whether input large or small).

 

What can i add to the filename statement for the .gz file - to resolve size issue? 

What can i add to the proc http ? 

 

filename inZIPd "&theFilePath./&theDSname._toACS.json.gz";

filename outZIPd "&theFilePath./&theDSname._resp.json.gz";

 

proc http
url = &URLString.
method = "POST"
in = inZIPd
out = outZIPd;

headers
"Content-Type" = "application/json"
"Content-Encoding" = "gzip"
"Accept" = "application/json"
"Accept-Encoding" = "gzip"
;
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
SimonDawson
SAS Employee
After a bit of investigation we understand the cause of this issue. It relates to mishandling a response that includes both the Transfer-Encoding and Content-Encoding headers together.

If a response includes one or the other by itself the HTTP procedure correctly processes the responses per the RFC you mentioned, this issue only manifests if both headers are included. This will be looked at and addressed in a future release.

View solution in original post

8 REPLIES 8
alexal
SAS Employee

@ShirleyD ,

 

I would recommend you open a track with SAS Technical Support here: https://support.sas.com/ctx/supportform/createForm 

RichardDeVen
Barite | Level 11

What is the server response ?  You can capture the response with option

HEADEROUT=<fileref>
ShirleyD
Fluorite | Level 6

Thanks Richard, this is the result of adding headerout=<fileref>

 

Case : GZIP in JSON out, the header.txt file results are 

 

HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Type: application/json; charset=utf-8
Expires: -1
Server: Microsoft-IIS/10.0
Service-Version: 1.2.0.9825
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Thu, 07 May 2020 05:23:09 GMT
Content-Length: 15503684

 

Case : GZIP in and GZIP out (expected GZIP file > 64 KB)

 

HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Transfer-Encoding: chunked
Content-Type: application/json; charset=utf-8
Content-Encoding: gzip
Expires: -1
Vary: Accept-Encoding
Server: Microsoft-IIS/10.0
Service-Version: 1.2.0.9825
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Thu, 07 May 2020 05:28:48 GMT

ShirleyD
Fluorite | Level 6

Case : GZIP in and out of a small file - which works - the difference is 'transfer-encoding: chunked' is used on large .gz file. 

 

HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Type: application/json; charset=utf-8
Content-Encoding: gzip
Expires: -1
Vary: Accept-Encoding
Server: Microsoft-IIS/10.0
Service-Version: 1.2.0.9825
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Thu, 07 May 2020 05:32:43 GMT
Content-Length: 5506

SimonDawson
SAS Employee

@RichardDeVen your suggestion to review the file with a hex editor is a good one and precisely what I did when I reviewed the track opened by @ShirleyD.

 

It appears the HTTP procedure is not correctly handling the embed content length in the stream of data when the server sends a response with the a chunked transfer encoding. Once the investigation into this is completed I'll update this thread again.

ShirleyD
Fluorite | Level 6
When chunked there is extra info added to the resultant message which needs to be interpreted
see section 3.6.1
https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html
SimonDawson
SAS Employee
After a bit of investigation we understand the cause of this issue. It relates to mishandling a response that includes both the Transfer-Encoding and Content-Encoding headers together.

If a response includes one or the other by itself the HTTP procedure correctly processes the responses per the RFC you mentioned, this issue only manifests if both headers are included. This will be looked at and addressed in a future release.

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
  • 2613 views
  • 3 likes
  • 4 in conversation