SOAP: Difference between revisions

From LRREW
Jump to navigation Jump to search
(Created page with "{{WIP}} SOAP is a XML based protocol used for RPC and stuff. == Envelopes == <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="https://schemas.xmlsoap.org/soap/encoding/" xmlns:roblox="urn:Roblox"> <soap:Body> </soap:Body> </soap:Envelope>")
 
No edit summary
 
Line 5: Line 5:
== Envelopes ==
== Envelopes ==


  <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
  <soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/"
  xmlns:soapenc="https://schemas.xmlsoap.org/soap/encoding/"  
  xmlns:soapenc="https://schemas.xmlsoap.org/soap/encoding/"  
  xmlns:roblox="urn:Roblox">
  xmlns:roblox="urn:Roblox">

Latest revision as of 06:11, 5 July 2023

SOAP is a XML based protocol used for RPC and stuff.

Envelopes

<soap:Envelope xmlns:soap="https://schemas.xmlsoap.org/soap/envelope/"
	xmlns:soapenc="https://schemas.xmlsoap.org/soap/encoding/"					 
	xmlns:roblox="urn:Roblox">
	<soap:Body>	
	</soap:Body>
</soap:Envelope>