BookmarkSubscribeRSS Feed
kovalzdw
Calcite | Level 5

Hi Everyone,

I have SAS DI Job which is responsible for requesting SOAP Service using PROC SOAP. Recently this service was upgraded, what lead to minor changes in it's request. 

Main issue that occured was to change namespace in SOAP Envelope from this:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">

to this:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">

SOAP Envelope is defined in "data _null_" statement where I prepare whole request body. At first I changed SOAP Envelope as in the above code, but when I looked in service logs I noticed that SAS automaticly wrapped my prepared request in another SOAP Envelope, which then looked like this:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
			<soap:Header/>
			<soap:Body>
				...
			</soap:Body>
		</soap:Envelope>
	</soapenv:Body>
</soapenv:Envelope>

The way I request this service is quite simple and looks like this. I replaced content of parameters, but I believe they are correct.

proc soap in=request
	out=response 
	url="XXX" 
	soapaction="XXX"
	webauthdomain = "XXX"
	debug="/tmp/soapSPLDAS.log"
	; 
run;

 

As I found out later, the difference in namespaces may be a consequence of upgrading SOAP version from 1.1 to 1.2. SAS version I'm currently using is 9.4M7.

Now it all breaks down to question, how can I request SOAP service with this change in namespace? Can I somehow owerwrite whole SOAP Envelope? Is there a way to change SOAP version to 1.2 in SAS so I can use different namespace in envelope? 

Please let me know if I should provide more information.

 

Thanks for Your help.

 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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