Example: web_service_set_security_saml_ex and web_service_cancel_security_saml_ex

This example shows getting a SAML token, using it in a service request, and then canceling it.

web_service_set_security_saml_ex("IssuerUrl=https://myserver/sts/STSWebHost/Saml20STSService.svc",	
	"Username=test", 
	"Password=test", 
	"TokenType=SAML2.0", 
	"KeyType=Bearer", 
	"AudienceUris=https://RelyingParty/*", 
	LAST);

web_service_call( "StepName=Add_101",
	"SOAPMethod=Calculator|WS2007FederationHttpBinding_ICalculator|Add",
	"ResponseParam=response",
	"Service=Calculator",	
	"ExpectedResponse=SoapResult",
	"Snapshot=t1568875776.inf",
	BEGIN_ARGUMENTS,
	"n1=1",
	"n2=2",
	END_ARGUMENTS,
	BEGIN_RESULT,
	END_RESULT,
	LAST);

web_service_cancel_security_saml_ex();