Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > e5b501e96823201f44cb057859a8bf79 > files > 3056

gsoap-2.8.67-2.mga7.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta http-equiv="cache-control" content="no-cache">
<title>Genivia - XML Data Binding</title>
<link href="genivia_tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="genivia_content.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="top">
 <div id="titlearea">
  <table height="72px" width="100%" cellspacing="0" cellpadding="0">
   <tbody>
    <tr>
     <td width="10%">&nbsp;</td>
     <td width="175px"><a href="https://www.genivia.com"><img alt="Genivia" src="GeniviaLogo2_trans_noslogan.png"/></a></td>
     <td class="tab_home"><a href="https://www.genivia.com">Home</a></td>
     <td class="tab_home"><a href="https://www.genivia.com/docs.html">Documentation</a></td>
     <td>
      <div style="float: right; font-size: 18px; font-weight: bold;">XML Data Binding</div>
      <br>
      <div style="float: right; font-size: 10px;">updated Sat Jun 9 2018 by Robert van Engelen</div>
     </td>
     <td width="10%">&nbsp;</td>
    </tr>
   </tbody>
  </table>
 </div>
<!-- Generated by Doxygen 1.8.11 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div class="header">
  <div class="headertitle">
<div class="title">XML Data Binding </div>  </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><p>SOAP/XML services use data bindings contractually bound by WSDL and auto- generated by wsdl2h and soapcpp2 (see Service Bindings). Plain data bindings are adopted from XML schemas as part of the WSDL types section or when running wsdl2h on a set of schemas to produce non-SOAP-based XML data bindings.</p>
<p>The following readers and writers are C/C++ data type (de)serializers auto- generated by wsdl2h and soapcpp2. Run soapcpp2 on this file to generate the (de)serialization code, which is stored in soapC.c[pp]. Include "soapH.h" in your code to import these data type and function declarations. Only use the soapcpp2-generated files in your project build. Do not include the wsdl2h- generated .h file in your code.</p>
<p>Data can be read and deserialized from:</p><ul>
<li>an int file descriptor, using soap-&gt;recvfd = fd</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (istream, stringstream), using soap-&gt;is = (istream*)...</li>
<li>a C string, using soap-&gt;is = (const char*)...</li>
<li>any input, using the soap-&gt;frecv() callback</li>
</ul>
<p>Data can be serialized and written to:</p><ul>
<li>an int file descriptor, using soap-&gt;sendfd = (int)...</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (ostream, stringstream), using soap-&gt;os = (ostream*)...</li>
<li>a C string, using soap-&gt;os = (const char**)...</li>
<li>any output, using the soap-&gt;fsend() callback</li>
</ul>
<p>The following options are available for (de)serialization control:</p><ul>
<li>soap-&gt;encodingStyle = NULL; to remove SOAP 1.1/1.2 encodingStyle</li>
<li>soap_mode(soap, SOAP_XML_TREE); XML without id-ref (no cycles!)</li>
<li>soap_mode(soap, SOAP_XML_GRAPH); XML with id-ref (including cycles)</li>
<li>soap_set_namespaces(soap, struct Namespace *nsmap); to set xmlns bindings</li>
</ul>
<h1><a class="anchor" id="wst"></a>
Top-level root elements of schema "http://docs.oasis-open.org/ws-sx/ws-trust/200512/"</h1>
<ul>
<li>&lt;wst:RequestSecurityToken&gt; <a class="el" href="wst_8h.html#a6b9b684d1f6ba0840781c9603def346c">_wst__RequestSecurityToken</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div><div class="line">soap_POST_recv__wst__RequestSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_type.html">_wst__RequestSecurityToken</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:TokenType&gt; <a class="el" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__TokenType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__TokenType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__TokenType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__TokenType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__TokenType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div><div class="line">soap_POST_recv__wst__TokenType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#afd9110885f7777e47a8a4a0e63b497be">_wst__TokenType</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestType&gt; <a class="el" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div><div class="line">soap_POST_recv__wst__RequestType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af47f47933bb76be91eeef3121ca58935">_wst__RequestType</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestSecurityTokenResponse&gt; <a class="el" href="wst_8h.html#a9a752fb66cd2ac7b09889ac80de5a59e">_wst__RequestSecurityTokenResponse</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div><div class="line">soap_POST_recv__wst__RequestSecurityTokenResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_type.html">_wst__RequestSecurityTokenResponse</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestedSecurityToken&gt; <a class="el" href="wst_8h.html#a0d5e4199fe1acc2a5033366435623ae7">_wst__RequestedSecurityToken</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div><div class="line">soap_POST_recv__wst__RequestedSecurityToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_security_token_type.html">_wst__RequestedSecurityToken</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:BinarySecret&gt; <a class="el" href="wst_8h.html#afd3d069fc38d38469a7a2863fd132f87">_wst__BinarySecret</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__BinarySecret(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__BinarySecret(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__BinarySecret(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__BinarySecret(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__BinarySecret(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div><div class="line">soap_POST_recv__wst__BinarySecret(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_secret_type.html">_wst__BinarySecret</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Claims&gt; <a class="el" href="wst_8h.html#a6f37b1a2c59ada8a586a300270b52786">_wst__Claims</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Claims(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Claims(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Claims(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Claims(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Claims(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div><div class="line">soap_POST_recv__wst__Claims(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____claims_type.html">_wst__Claims</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Entropy&gt; <a class="el" href="wst_8h.html#add808d445db6e7338c76d674c09cf486">_wst__Entropy</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Entropy(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Entropy(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Entropy(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Entropy(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Entropy(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div><div class="line">soap_POST_recv__wst__Entropy(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____entropy_type.html">_wst__Entropy</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Lifetime&gt; <a class="el" href="wst_8h.html#a2f85fbf03773450ed74d0d4a0c07dfa2">_wst__Lifetime</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Lifetime(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Lifetime(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Lifetime(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Lifetime(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Lifetime(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div><div class="line">soap_POST_recv__wst__Lifetime(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____lifetime_type.html">_wst__Lifetime</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestSecurityTokenCollection&gt; <a class="el" href="wst_8h.html#a8e1c92b29837851de4a68f4aceb94b68">_wst__RequestSecurityTokenCollection</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div><div class="line">soap_POST_recv__wst__RequestSecurityTokenCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_collection_type.html">_wst__RequestSecurityTokenCollection</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestSecurityTokenResponseCollection&gt; <a class="el" href="wst_8h.html#a85e1f3ff2eaae2c7fcc7709e1cdf6252">_wst__RequestSecurityTokenResponseCollection</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div><div class="line">soap_POST_recv__wst__RequestSecurityTokenResponseCollection(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__RequestSecurityTokenResponseCollection</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:ComputedKey&gt; <a class="el" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__ComputedKey(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__ComputedKey(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__ComputedKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__ComputedKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__ComputedKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div><div class="line">soap_POST_recv__wst__ComputedKey(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#aab9e8415771305480ecfb977a95dc823">_wst__ComputedKey</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestedAttachedReference&gt; <a class="el" href="wst_8h.html#a467e1c917a1dd45dce2e79532c94186d">_wst__RequestedAttachedReference</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div><div class="line">soap_POST_recv__wst__RequestedAttachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedAttachedReference</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestedUnattachedReference&gt; <a class="el" href="wst_8h.html#adff61809926514fe967ec5434580b3be">_wst__RequestedUnattachedReference</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div><div class="line">soap_POST_recv__wst__RequestedUnattachedReference(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_reference_type.html">_wst__RequestedUnattachedReference</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestedProofToken&gt; <a class="el" href="wst_8h.html#ae9210078c65a2264334f5f32ffae5997">_wst__RequestedProofToken</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div><div class="line">soap_POST_recv__wst__RequestedProofToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_proof_token_type.html">_wst__RequestedProofToken</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:IssuedTokens&gt; <a class="el" href="wst_8h.html#adb27af7e35ea1c598b6e3b502d9a4c57">_wst__IssuedTokens</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div><div class="line">soap_POST_recv__wst__IssuedTokens(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_security_token_response_collection_type.html">_wst__IssuedTokens</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RenewTarget&gt; <a class="el" href="wst_8h.html#a232389629b2c98793a32da56a4e66d84">_wst__RenewTarget</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RenewTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RenewTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RenewTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RenewTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RenewTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div><div class="line">soap_POST_recv__wst__RenewTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renew_target_type.html">_wst__RenewTarget</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:AllowPostdating&gt; <a class="el" href="wst_8h.html#aa81103f843613c9c6c7e65edf02bd621">_wst__AllowPostdating</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div><div class="line">soap_POST_recv__wst__AllowPostdating(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____allow_postdating_type.html">_wst__AllowPostdating</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Renewing&gt; <a class="el" href="wst_8h.html#a1a5309f6502a986085b892ae9651089f">_wst__Renewing</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Renewing(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Renewing(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Renewing(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Renewing(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Renewing(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div><div class="line">soap_POST_recv__wst__Renewing(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____renewing_type.html">_wst__Renewing</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:CancelTarget&gt; <a class="el" href="wst_8h.html#a060f8b1891dbbe796fc574682a1848f2">_wst__CancelTarget</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__CancelTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__CancelTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__CancelTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__CancelTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__CancelTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div><div class="line">soap_POST_recv__wst__CancelTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____cancel_target_type.html">_wst__CancelTarget</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestedTokenCancelled&gt; <a class="el" href="wst_8h.html#a9845323187f1a7ff85fbd935abd18e9d">_wst__RequestedTokenCancelled</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div><div class="line">soap_POST_recv__wst__RequestedTokenCancelled(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____requested_token_cancelled_type.html">_wst__RequestedTokenCancelled</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:ValidateTarget&gt; <a class="el" href="wst_8h.html#a16d1dd8409ac63d9720441a00d43cd76">_wst__ValidateTarget</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div><div class="line">soap_POST_recv__wst__ValidateTarget(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____validate_target_type.html">_wst__ValidateTarget</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Status&gt; <a class="el" href="wst_8h.html#aa159decf5cca3161827689668a7b97f5">_wst__Status</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Status(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Status(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Status(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Status(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Status(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div><div class="line">soap_POST_recv__wst__Status(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____status_type.html">_wst__Status</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:SignChallenge&gt; <a class="el" href="wst_8h.html#aa6c51e46b95c668c7b666a1735ee2951">_wst__SignChallenge</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__SignChallenge(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__SignChallenge(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__SignChallenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__SignChallenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__SignChallenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div><div class="line">soap_POST_recv__wst__SignChallenge(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallenge</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:SignChallengeResponse&gt; <a class="el" href="wst_8h.html#aca98672b17f02275124c92ee18c93ee0">_wst__SignChallengeResponse</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div><div class="line">soap_POST_recv__wst__SignChallengeResponse(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____sign_challenge_type.html">_wst__SignChallengeResponse</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Challenge&gt; <a class="el" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Challenge(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Challenge(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Challenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Challenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Challenge(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div><div class="line">soap_POST_recv__wst__Challenge(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a4ab583407950a03c05915a9d40211e43">_wst__Challenge</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:BinaryExchange&gt; <a class="el" href="wst_8h.html#a1f6f3262b792e955b3be4f2c2e463511">_wst__BinaryExchange</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div><div class="line">soap_POST_recv__wst__BinaryExchange(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____binary_exchange_type.html">_wst__BinaryExchange</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:RequestKET&gt; <a class="el" href="wst_8h.html#a0353fca6a368659e132a15adae3feaf2">_wst__RequestKET</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__RequestKET(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__RequestKET(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__RequestKET(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__RequestKET(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__RequestKET(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div><div class="line">soap_POST_recv__wst__RequestKET(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____request_k_e_t_type.html">_wst__RequestKET</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:KeyExchangeToken&gt; <a class="el" href="wst_8h.html#ab7623f1db6207853cff47311d799703f">_wst__KeyExchangeToken</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div><div class="line">soap_POST_recv__wst__KeyExchangeToken(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____key_exchange_token_type.html">_wst__KeyExchangeToken</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Authenticator&gt; <a class="el" href="wst_8h.html#addd0d822af31f93d7d27ef0b1d59a08c">_wst__Authenticator</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Authenticator(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Authenticator(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Authenticator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Authenticator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Authenticator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div><div class="line">soap_POST_recv__wst__Authenticator(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____authenticator_type.html">_wst__Authenticator</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:CombinedHash&gt; <a class="el" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__CombinedHash(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__CombinedHash(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__CombinedHash(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__CombinedHash(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__CombinedHash(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div><div class="line">soap_POST_recv__wst__CombinedHash(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad4e9f4908713e6b4f59900f4007df6b5">_wst__CombinedHash</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:OnBehalfOf&gt; <a class="el" href="wst_8h.html#ab412471b30de3884f447500b9a760879">_wst__OnBehalfOf</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div><div class="line">soap_POST_recv__wst__OnBehalfOf(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____on_behalf_of_type.html">_wst__OnBehalfOf</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Issuer&gt; <a class="el" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div><div class="line">soap_POST_recv__wst__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6a5757de4114a35b682440d206facd7d">_wst__Issuer</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:AuthenticationType&gt; <a class="el" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div><div class="line">soap_POST_recv__wst__AuthenticationType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae4d9c97e0619f5075c7df30ed9a3237f">_wst__AuthenticationType</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:KeyType&gt; <a class="el" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__KeyType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__KeyType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__KeyType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__KeyType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__KeyType(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div><div class="line">soap_POST_recv__wst__KeyType(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af5c911f7600475a9bafc8ad91ff5a7b9">_wst__KeyType</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:KeySize&gt; <a class="el" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__KeySize(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__KeySize(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__KeySize(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__KeySize(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__KeySize(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div><div class="line">soap_POST_recv__wst__KeySize(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a55c1481cad9ac851fd516f74b714db38">_wst__KeySize</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:SignatureAlgorithm&gt; <a class="el" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div><div class="line">soap_POST_recv__wst__SignatureAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af26e7acb20358cb36182930f73a9dd8a">_wst__SignatureAlgorithm</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:EncryptionAlgorithm&gt; <a class="el" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div><div class="line">soap_POST_recv__wst__EncryptionAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ad538acbf3a1d08ef7bf1843324185246">_wst__EncryptionAlgorithm</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:CanonicalizationAlgorithm&gt; <a class="el" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div><div class="line">soap_POST_recv__wst__CanonicalizationAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a18ca0e6a789cc3f9a0f0e55d01f835d7">_wst__CanonicalizationAlgorithm</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:ComputedKeyAlgorithm&gt; <a class="el" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div><div class="line">soap_POST_recv__wst__ComputedKeyAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a6c9e0edd6d195c19973d0066d7ad3033">_wst__ComputedKeyAlgorithm</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Encryption&gt; <a class="el" href="wst_8h.html#ac1a0197b06bb3ba5667be90e75a4ebb2">_wst__Encryption</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Encryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Encryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Encryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Encryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Encryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div><div class="line">soap_POST_recv__wst__Encryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____encryption_type.html">_wst__Encryption</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:ProofEncryption&gt; <a class="el" href="wst_8h.html#a99f4b9af842a209223f94c705a8de02a">_wst__ProofEncryption</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div><div class="line">soap_POST_recv__wst__ProofEncryption(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____proof_encryption_type.html">_wst__ProofEncryption</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:UseKey&gt; <a class="el" href="wst_8h.html#a27b145b4334f81f5dc225f44dd13b45f">_wst__UseKey</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__UseKey(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__UseKey(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__UseKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__UseKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__UseKey(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div><div class="line">soap_POST_recv__wst__UseKey(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____use_key_type.html">_wst__UseKey</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:KeyWrapAlgorithm&gt; <a class="el" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div><div class="line">soap_POST_recv__wst__KeyWrapAlgorithm(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a002f9681399a7777857d20c974d3e715">_wst__KeyWrapAlgorithm</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:SignWith&gt; <a class="el" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__SignWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__SignWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__SignWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__SignWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__SignWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div><div class="line">soap_POST_recv__wst__SignWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#ae103a5fb232ad3dd503c66b7cda85d15">_wst__SignWith</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:EncryptWith&gt; <a class="el" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__EncryptWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__EncryptWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__EncryptWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__EncryptWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__EncryptWith(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div><div class="line">soap_POST_recv__wst__EncryptWith(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a9646c1e7287a7c744e7ad57f029e70ab">_wst__EncryptWith</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:DelegateTo&gt; <a class="el" href="wst_8h.html#a54173048bdcbe8b1cc0c61b06cc7bb48">_wst__DelegateTo</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__DelegateTo(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__DelegateTo(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__DelegateTo(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__DelegateTo(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__DelegateTo(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div><div class="line">soap_POST_recv__wst__DelegateTo(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____delegate_to_type.html">_wst__DelegateTo</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Forwardable&gt; <a class="el" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Forwardable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Forwardable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Forwardable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Forwardable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Forwardable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div><div class="line">soap_POST_recv__wst__Forwardable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#af95fcccc2897b30541e683c41df0ed70">_wst__Forwardable</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Delegatable&gt; <a class="el" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Delegatable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Delegatable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Delegatable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Delegatable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Delegatable(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div><div class="line">soap_POST_recv__wst__Delegatable(<span class="keyword">struct</span> soap*, <a class="code" href="wst_8h.html#a3067e5fbac2547adbccb7d6cda79f502">_wst__Delegatable</a>*);</div></div><!-- fragment --></li>
<li>&lt;wst:Participants&gt; <a class="el" href="wst_8h.html#afffcc871b36418a2c3a1b1062549d80e">_wst__Participants</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wst__Participants(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wst__Participants(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__wst__Participants(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__wst__Participants(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__wst__Participants(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div><div class="line">soap_POST_recv__wst__Participants(<span class="keyword">struct</span> soap*, <a class="code" href="structwst_____participants_type.html">_wst__Participants</a>*);</div></div><!-- fragment --></li>
</ul>
<p>Top-level root element "http://www.w3.org/2001/04/xmlenc#":CipherData of type "http://www.w3.org/2001/04/xmlenc#":CipherDataType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":CipherReference of type "http://www.w3.org/2001/04/xmlenc#":CipherReferenceType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":EncryptedData of type "http://www.w3.org/2001/04/xmlenc#":EncryptedDataType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":EncryptedKey of type "http://www.w3.org/2001/04/xmlenc#":EncryptedKeyType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":AgreementMethod of type "http://www.w3.org/2001/04/xmlenc#":AgreementMethodType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":EncryptionProperties of type "http://www.w3.org/2001/04/xmlenc#":EncryptionPropertiesType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://www.w3.org/2001/04/xmlenc#":EncryptionProperty of type "http://www.w3.org/2001/04/xmlenc#":EncryptionPropertyType. Note: use wsdl2h option -g to auto-generate a top-level root element declaration and processing code.</p>
<p>SOAP/XML services use data bindings contractually bound by WSDL and auto- generated by wsdl2h and soapcpp2 (see Service Bindings). Plain data bindings are adopted from XML schemas as part of the WSDL types section or when running wsdl2h on a set of schemas to produce non-SOAP-based XML data bindings.</p>
<p>The following readers and writers are C/C++ data type (de)serializers auto- generated by wsdl2h and soapcpp2. Run soapcpp2 on this file to generate the (de)serialization code, which is stored in soapC.c[pp]. Include "soapH.h" in your code to import these data type and function declarations. Only use the soapcpp2-generated files in your project build. Do not include the wsdl2h- generated .h file in your code.</p>
<p>XML content can be retrieved from:</p><ul>
<li>a file descriptor, using soap-&gt;recvfd = fd</li>
<li>a socket, using soap-&gt;socket = ...</li>
<li>a C++ stream, using soap-&gt;is = ...</li>
<li>a buffer, using the soap-&gt;frecv() callback</li>
</ul>
<p>XML content can be stored to:</p><ul>
<li>a file descriptor, using soap-&gt;sendfd = fd</li>
<li>a socket, using soap-&gt;socket = ...</li>
<li>a C++ stream, using soap-&gt;os = ...</li>
<li>a buffer, using the soap-&gt;fsend() callback</li>
</ul>
<h1><a class="anchor" id="xenc"></a>
Top-level root elements of schema "http://www.w3.org/2001/04/xmlenc#"</h1>
<ul>
<li>&lt;xenc:CipherData&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:CipherReference&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:EncryptedData&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:EncryptedKey&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:AgreementMethod&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:ReferenceList&gt; <a class="el" href="struct__xenc_____reference_list.html">_xenc__ReferenceList</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__xenc__ReferenceList(<span class="keyword">struct</span> soap*, <span class="keyword">struct</span> <a class="code" href="struct__xenc_____reference_list.html">_xenc__ReferenceList</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__xenc__ReferenceList(<span class="keyword">struct</span> soap*, <span class="keyword">struct</span> <a class="code" href="struct__xenc_____reference_list.html">_xenc__ReferenceList</a>*);</div></div><!-- fragment --></li>
<li>&lt;xenc:EncryptionProperties&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;xenc:EncryptionProperty&gt; (use wsdl2h option -g to auto-generate)</li>
</ul>
<p>Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":SecurityContextToken of XSD type "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":SecurityContextTokenType.</p>
<dl class="section note"><dt>Note</dt><dd>Use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Identifier of XSD type xs:anyURI. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Instance of XSD type xs:string. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":DerivedKeyToken of XSD type "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":DerivedKeyTokenType. </dd>
<dd>
Use wsdl2h option -g to auto-generate a top-level root element declaration and processing code. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Name of XSD type xs:anyURI. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Label of XSD type xs:string. Top-level root element "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Nonce of XSD type xs:base64Binary. Top-level attribute "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Instance of simpleType xs:string. Top-level attribute "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Nonce of simpleType xs:base64Binary. Top-level attribute "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512":Length of simpleType xs:unsignedLong. </dd>
<dd>
Use wsdl2h option -g to auto-generate a top-level attribute declaration and processing code.</dd></dl>
<p>SOAP/XML services use data bindings contractually bound by WSDL and auto- generated by wsdl2h and soapcpp2 (see Service Bindings). Plain data bindings are adopted from XML schemas as part of the WSDL types section or when running wsdl2h on a set of schemas to produce non-SOAP-based XML data bindings.</p>
<p>The following readers and writers are C/C++ data type (de)serializers auto- generated by wsdl2h and soapcpp2. Run soapcpp2 on this file to generate the (de)serialization code, which is stored in soapC.c[pp]. Include "soapH.h" in your code to import these data type and function declarations. Only use the soapcpp2-generated files in your project build. Do not include the wsdl2h- generated .h file in your code.</p>
<p>Data can be read in XML and deserialized from:</p><ul>
<li>a file descriptor, using soap-&gt;recvfd = fd</li>
<li>a socket, using soap-&gt;socket = ...</li>
<li>a C++ stream, using soap-&gt;is = ...</li>
<li>a buffer, using the soap-&gt;frecv() callback</li>
</ul>
<p>Data can be serialized in XML and written to:</p><ul>
<li>a file descriptor, using soap-&gt;sendfd = fd</li>
<li>a socket, using soap-&gt;socket = ...</li>
<li>a C++ stream, using soap-&gt;os = ...</li>
<li>a buffer, using the soap-&gt;fsend() callback</li>
</ul>
<p>The following options are available for (de)serialization control:</p><ul>
<li>soap-&gt;encodingStyle = NULL; to remove SOAP 1.1/1.2 encodingStyle</li>
<li>soap_mode(soap, SOAP_XML_TREE); XML without id-ref (no cycles!)</li>
<li>soap_mode(soap, SOAP_XML_GRAPH); XML with id-ref (including cycles)</li>
<li>soap_set_namespaces(soap, struct Namespace *nsmap); to set xmlns bindings</li>
</ul>
<h1><a class="anchor" id="wsc"></a>
Top-level root elements of schema "http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512"</h1>
<ul>
<li>&lt;SecurityContextToken&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;Identifier&gt; _wsc__Identifier <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wsc__Identifier(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wsc__Identifier(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div></div><!-- fragment --></li>
<li>&lt;Instance&gt; _wsc__Instance <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wsc__Instance(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wsc__Instance(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div></div><!-- fragment --></li>
<li>&lt;DerivedKeyToken&gt; (use wsdl2h option -g to auto-generate)</li>
<li>&lt;Name&gt; _wsc__Name <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wsc__Name(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wsc__Name(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div></div><!-- fragment --></li>
<li>&lt;Label&gt; _wsc__Label <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wsc__Label(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wsc__Label(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div></div><!-- fragment --></li>
<li>&lt;Nonce&gt; _wsc__Nonce <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__wsc__Nonce(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__wsc__Nonce(<span class="keyword">struct</span> soap*, <span class="keywordtype">char</span>*);</div></div><!-- fragment --></li>
</ul>
<p>SOAP/XML services use data bindings contractually bound by WSDL and auto- generated by wsdl2h and soapcpp2 (see Service Bindings). Plain data bindings are adopted from XML schemas as part of the WSDL types section or when running wsdl2h on a set of schemas to produce non-SOAP-based XML data bindings.</p>
<p>The following readers and writers are C/C++ data type (de)serializers auto- generated by wsdl2h and soapcpp2. Run soapcpp2 on this file to generate the (de)serialization code, which is stored in soapC.c[pp]. Include "soapH.h" in your code to import these data type and function declarations. Only use the soapcpp2-generated files in your project build. Do not include the wsdl2h- generated .h file in your code.</p>
<p>Data can be read and deserialized from:</p><ul>
<li>an int file descriptor, using soap-&gt;recvfd = fd</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (istream, stringstream), using soap-&gt;is = (istream*)...</li>
<li>a C string, using soap-&gt;is = (const char*)...</li>
<li>any input, using the soap-&gt;frecv() callback</li>
</ul>
<p>Data can be serialized and written to:</p><ul>
<li>an int file descriptor, using soap-&gt;sendfd = (int)...</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (ostream, stringstream), using soap-&gt;os = (ostream*)...</li>
<li>a C string, using soap-&gt;os = (const char**)...</li>
<li>any output, using the soap-&gt;fsend() callback</li>
</ul>
<p>The following options are available for (de)serialization control:</p><ul>
<li>soap-&gt;encodingStyle = NULL; to remove SOAP 1.1/1.2 encodingStyle</li>
<li>soap_mode(soap, SOAP_XML_TREE); XML without id-ref (no cycles!)</li>
<li>soap_mode(soap, SOAP_XML_GRAPH); XML with id-ref (including cycles)</li>
<li>soap_set_namespaces(soap, struct Namespace *nsmap); to set xmlns bindings</li>
</ul>
<h1><a class="anchor" id="saml1"></a>
Top-level root elements of schema "urn:oasis:names:tc:SAML:1.0:assertion"</h1>
<ul>
<li>&lt;saml1:AssertionIDReference&gt; <a class="el" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div><div class="line">soap_POST_recv__saml1__AssertionIDReference(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a87f2c59ed212c1bce4d4eafaf9e62f5a">_saml1__AssertionIDReference</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Assertion&gt; <a class="el" href="saml1_8h.html#a56193a84cc96a113110c966de9b689bb">_saml1__Assertion</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div><div class="line">soap_POST_recv__saml1__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____assertion_type.html">_saml1__Assertion</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Conditions&gt; <a class="el" href="saml1_8h.html#a999946275390edaf4342e3a27d56c007">_saml1__Conditions</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div><div class="line">soap_POST_recv__saml1__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____conditions_type.html">_saml1__Conditions</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Condition&gt; <a class="el" href="saml1_8h.html#a45a22e59e95f941c1b0ea21e75082cea">_saml1__Condition</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div><div class="line">soap_POST_recv__saml1__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____condition_abstract_type.html">_saml1__Condition</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AudienceRestrictionCondition&gt; <a class="el" href="saml1_8h.html#a33ef4b4e1e8d7873abc5b9ad1159b8c2">_saml1__AudienceRestrictionCondition</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div><div class="line">soap_POST_recv__saml1__AudienceRestrictionCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____audience_restriction_condition_type.html">_saml1__AudienceRestrictionCondition</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Audience&gt; <a class="el" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div><div class="line">soap_POST_recv__saml1__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#ad312009c0d56b787edaaaaa7596edb8f">_saml1__Audience</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:DoNotCacheCondition&gt; <a class="el" href="saml1_8h.html#a313758cd27a5d97d98811cedf2a21d8d">_saml1__DoNotCacheCondition</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div><div class="line">soap_POST_recv__saml1__DoNotCacheCondition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____do_not_cache_condition_type.html">_saml1__DoNotCacheCondition</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Advice&gt; <a class="el" href="saml1_8h.html#a684e5a61ad3bd6c8976e1c4c38dfe1c2">_saml1__Advice</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div><div class="line">soap_POST_recv__saml1__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____advice_type.html">_saml1__Advice</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Statement&gt; <a class="el" href="saml1_8h.html#a12a55bfbe05bcfbfce2138aeae2b8cf6">_saml1__Statement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div><div class="line">soap_POST_recv__saml1__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____statement_abstract_type.html">_saml1__Statement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:SubjectStatement&gt; <a class="el" href="saml1_8h.html#a56196e79a0467652cf2715c0d22f313c">_saml1__SubjectStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div><div class="line">soap_POST_recv__saml1__SubjectStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_statement_abstract_type.html">_saml1__SubjectStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Subject&gt; <a class="el" href="saml1_8h.html#a361cac370986c5f63ee02f4e37470427">_saml1__Subject</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div><div class="line">soap_POST_recv__saml1__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_type.html">_saml1__Subject</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:NameIdentifier&gt; <a class="el" href="saml1_8h.html#a5ae9f4bc5f09b527b8a2f6b5f5923ca7">_saml1__NameIdentifier</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div><div class="line">soap_POST_recv__saml1__NameIdentifier(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____name_identifier_type.html">_saml1__NameIdentifier</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:SubjectConfirmation&gt; <a class="el" href="saml1_8h.html#a7234206c8ac9be2fd50744d2ae63eb40">_saml1__SubjectConfirmation</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div><div class="line">soap_POST_recv__saml1__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_confirmation_type.html">_saml1__SubjectConfirmation</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:SubjectConfirmationData&gt; <a class="el" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div><div class="line">soap_POST_recv__saml1__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#aa450c078cdef14f8225a337d0b4d92a6">_saml1__SubjectConfirmationData</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:ConfirmationMethod&gt; <a class="el" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div><div class="line">soap_POST_recv__saml1__ConfirmationMethod(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#addb3929272ea2d1103745328098951a2">_saml1__ConfirmationMethod</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AuthenticationStatement&gt; <a class="el" href="saml1_8h.html#a7feb4a853588696dafd03fd419ec48c9">_saml1__AuthenticationStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div><div class="line">soap_POST_recv__saml1__AuthenticationStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authentication_statement_type.html">_saml1__AuthenticationStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:SubjectLocality&gt; <a class="el" href="saml1_8h.html#a2062efe03ce402c0945ba967f1f6df8e">_saml1__SubjectLocality</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div><div class="line">soap_POST_recv__saml1__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____subject_locality_type.html">_saml1__SubjectLocality</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AuthorityBinding&gt; <a class="el" href="saml1_8h.html#ac6bcc85a03629ed4f0a6551913f15f06">_saml1__AuthorityBinding</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div><div class="line">soap_POST_recv__saml1__AuthorityBinding(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authority_binding_type.html">_saml1__AuthorityBinding</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AuthorizationDecisionStatement&gt; <a class="el" href="saml1_8h.html#a3f929c10d54867166583d5e7174564df">_saml1__AuthorizationDecisionStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div><div class="line">soap_POST_recv__saml1__AuthorizationDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____authorization_decision_statement_type.html">_saml1__AuthorizationDecisionStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Action&gt; <a class="el" href="saml1_8h.html#aa8c09f9474ce013b228ab7962da867ad">_saml1__Action</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div><div class="line">soap_POST_recv__saml1__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____action_type.html">_saml1__Action</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Evidence&gt; <a class="el" href="saml1_8h.html#a0adefdefa8916dd4fbc37c1958b58006">_saml1__Evidence</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div><div class="line">soap_POST_recv__saml1__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____evidence_type.html">_saml1__Evidence</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AttributeStatement&gt; <a class="el" href="saml1_8h.html#a8eb8d55f9afd3a1f7b27d849badde2e5">_saml1__AttributeStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div><div class="line">soap_POST_recv__saml1__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_statement_type.html">_saml1__AttributeStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AttributeDesignator&gt; <a class="el" href="saml1_8h.html#a93a9048d65a5727617c92d5a73522b63">_saml1__AttributeDesignator</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div><div class="line">soap_POST_recv__saml1__AttributeDesignator(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_designator_type.html">_saml1__AttributeDesignator</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:Attribute&gt; <a class="el" href="saml1_8h.html#a5c439c50a6c462758ad98ff2cb5764f9">_saml1__Attribute</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div><div class="line">soap_POST_recv__saml1__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml1_____attribute_type.html">_saml1__Attribute</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml1:AttributeValue&gt; <a class="el" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div><div class="line">soap_POST_recv__saml1__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml1_8h.html#a897fb1dbdfcb1f446413b4ea228cc2a3">_saml1__AttributeValue</a>*);</div></div><!-- fragment --></li>
</ul>
<p>SOAP/XML services use data bindings contractually bound by WSDL and auto- generated by wsdl2h and soapcpp2 (see Service Bindings). Plain data bindings are adopted from XML schemas as part of the WSDL types section or when running wsdl2h on a set of schemas to produce non-SOAP-based XML data bindings.</p>
<p>The following readers and writers are C/C++ data type (de)serializers auto- generated by wsdl2h and soapcpp2. Run soapcpp2 on this file to generate the (de)serialization code, which is stored in soapC.c[pp]. Include "soapH.h" in your code to import these data type and function declarations. Only use the soapcpp2-generated files in your project build. Do not include the wsdl2h- generated .h file in your code.</p>
<p>Data can be read and deserialized from:</p><ul>
<li>an int file descriptor, using soap-&gt;recvfd = fd</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (istream, stringstream), using soap-&gt;is = (istream*)...</li>
<li>a C string, using soap-&gt;is = (const char*)...</li>
<li>any input, using the soap-&gt;frecv() callback</li>
</ul>
<p>Data can be serialized and written to:</p><ul>
<li>an int file descriptor, using soap-&gt;sendfd = (int)...</li>
<li>a socket, using soap-&gt;socket = (int)...</li>
<li>a C++ stream (ostream, stringstream), using soap-&gt;os = (ostream*)...</li>
<li>a C string, using soap-&gt;os = (const char**)...</li>
<li>any output, using the soap-&gt;fsend() callback</li>
</ul>
<p>The following options are available for (de)serialization control:</p><ul>
<li>soap-&gt;encodingStyle = NULL; to remove SOAP 1.1/1.2 encodingStyle</li>
<li>soap_mode(soap, SOAP_XML_TREE); XML without id-ref (no cycles!)</li>
<li>soap_mode(soap, SOAP_XML_GRAPH); XML with id-ref (including cycles)</li>
<li>soap_set_namespaces(soap, struct Namespace *nsmap); to set xmlns bindings</li>
</ul>
<h1><a class="anchor" id="saml2"></a>
Top-level root elements of schema "urn:oasis:names:tc:SAML:2.0:assertion"</h1>
<ul>
<li>&lt;saml2:BaseID&gt; <a class="el" href="saml2_8h.html#ae48c9ab5ba43d3f1a4ceebc3f0aa61e1">_saml2__BaseID</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__BaseID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__BaseID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__BaseID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__BaseID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__BaseID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div><div class="line">soap_POST_recv__saml2__BaseID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____base_i_d_abstract_type.html">_saml2__BaseID</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:NameID&gt; <a class="el" href="saml2_8h.html#a2884b96a3cad4eb19687c240ba9a5ee7">_saml2__NameID</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__NameID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__NameID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__NameID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__NameID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__NameID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div><div class="line">soap_POST_recv__saml2__NameID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__NameID</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:EncryptedID&gt; <a class="el" href="saml2_8h.html#ab1f01b71c496121138ac4d61d8e6999e">_saml2__EncryptedID</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div><div class="line">soap_POST_recv__saml2__EncryptedID(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedID</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Issuer&gt; <a class="el" href="saml2_8h.html#a6936919e9114676c71c74bfe7cc89568">_saml2__Issuer</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Issuer(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div><div class="line">soap_POST_recv__saml2__Issuer(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____name_i_d_type.html">_saml2__Issuer</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AssertionIDRef&gt; <a class="el" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div><div class="line">soap_POST_recv__saml2__AssertionIDRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#aa7a9748292b342c8ef5dd73ea043ec73">_saml2__AssertionIDRef</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AssertionURIRef&gt; <a class="el" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div><div class="line">soap_POST_recv__saml2__AssertionURIRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a858f7df7f642671f9873a497dc4b1cdc">_saml2__AssertionURIRef</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Assertion&gt; <a class="el" href="saml2_8h.html#a46aafcc9743e439b19dd461b3154a222">_saml2__Assertion</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Assertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div><div class="line">soap_POST_recv__saml2__Assertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____assertion_type.html">_saml2__Assertion</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Subject&gt; <a class="el" href="saml2_8h.html#a26822430e3edfee4b0aa60a94c875406">_saml2__Subject</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Subject(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div><div class="line">soap_POST_recv__saml2__Subject(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_type.html">_saml2__Subject</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:SubjectConfirmation&gt; <a class="el" href="saml2_8h.html#af7571b3616548bbda3ddd85e8cd96f7d">_saml2__SubjectConfirmation</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div><div class="line">soap_POST_recv__saml2__SubjectConfirmation(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_type.html">_saml2__SubjectConfirmation</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:SubjectConfirmationData&gt; <a class="el" href="saml2_8h.html#ad7171c327ea96a6403236299181ba3c8">_saml2__SubjectConfirmationData</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div><div class="line">soap_POST_recv__saml2__SubjectConfirmationData(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_confirmation_data_type.html">_saml2__SubjectConfirmationData</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Conditions&gt; <a class="el" href="saml2_8h.html#afaa22de2cd1cb6cb4d9cefa51e13c7f0">_saml2__Conditions</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Conditions(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div><div class="line">soap_POST_recv__saml2__Conditions(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____conditions_type.html">_saml2__Conditions</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Condition&gt; <a class="el" href="saml2_8h.html#a62dd8b697261e173c9018384f1f88bb5">_saml2__Condition</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Condition(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div><div class="line">soap_POST_recv__saml2__Condition(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____condition_abstract_type.html">_saml2__Condition</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AudienceRestriction&gt; <a class="el" href="saml2_8h.html#a7c807fcec5e59dc0e2b13d0153efd913">_saml2__AudienceRestriction</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div><div class="line">soap_POST_recv__saml2__AudienceRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____audience_restriction_type.html">_saml2__AudienceRestriction</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Audience&gt; <a class="el" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Audience(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div><div class="line">soap_POST_recv__saml2__Audience(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a15651f024303698a69fb4684c73a7787">_saml2__Audience</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:OneTimeUse&gt; <a class="el" href="saml2_8h.html#a9e941d21bc4b73b14f51551f20ac8f85">_saml2__OneTimeUse</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div><div class="line">soap_POST_recv__saml2__OneTimeUse(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____one_time_use_type.html">_saml2__OneTimeUse</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:ProxyRestriction&gt; <a class="el" href="saml2_8h.html#a97c7ee023e6df5b191d7d6cde628e4ea">_saml2__ProxyRestriction</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div><div class="line">soap_POST_recv__saml2__ProxyRestriction(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____proxy_restriction_type.html">_saml2__ProxyRestriction</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Advice&gt; <a class="el" href="saml2_8h.html#aa3eb1857da821d7113b1b4e105b75d9f">_saml2__Advice</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Advice(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div><div class="line">soap_POST_recv__saml2__Advice(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____advice_type.html">_saml2__Advice</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:EncryptedAssertion&gt; <a class="el" href="saml2_8h.html#abd7aae3cd69e3776d6d9b1b33348aa80">_saml2__EncryptedAssertion</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div><div class="line">soap_POST_recv__saml2__EncryptedAssertion(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAssertion</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Statement&gt; <a class="el" href="saml2_8h.html#a9480ffec64a2098158e882d71ecc2d6f">_saml2__Statement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Statement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div><div class="line">soap_POST_recv__saml2__Statement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____statement_abstract_type.html">_saml2__Statement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthnStatement&gt; <a class="el" href="saml2_8h.html#a8b0716e6fe1f17c90026c009c7dc1532">_saml2__AuthnStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div><div class="line">soap_POST_recv__saml2__AuthnStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_statement_type.html">_saml2__AuthnStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:SubjectLocality&gt; <a class="el" href="saml2_8h.html#a95923608e7849d3b74281ce4f6e20bf5">_saml2__SubjectLocality</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div><div class="line">soap_POST_recv__saml2__SubjectLocality(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____subject_locality_type.html">_saml2__SubjectLocality</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthnContext&gt; <a class="el" href="saml2_8h.html#ac5d8ae075790192b70b818d6abc0c4b5">_saml2__AuthnContext</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div><div class="line">soap_POST_recv__saml2__AuthnContext(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authn_context_type.html">_saml2__AuthnContext</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthnContextClassRef&gt; <a class="el" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div><div class="line">soap_POST_recv__saml2__AuthnContextClassRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a7941053a557154e4e64632d1ac1b4723">_saml2__AuthnContextClassRef</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthnContextDeclRef&gt; <a class="el" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div><div class="line">soap_POST_recv__saml2__AuthnContextDeclRef(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#afb20f730c295ad197ff708dfe5c66a6f">_saml2__AuthnContextDeclRef</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthnContextDecl&gt; <a class="el" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div><div class="line">soap_POST_recv__saml2__AuthnContextDecl(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a278336c3317c18dfc291be9edf0c830f">_saml2__AuthnContextDecl</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthenticatingAuthority&gt; <a class="el" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div><div class="line">soap_POST_recv__saml2__AuthenticatingAuthority(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a553145161ecd412c57da2b7541db433e">_saml2__AuthenticatingAuthority</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AuthzDecisionStatement&gt; <a class="el" href="saml2_8h.html#ad891dd438713c52b4ff9fc97d6024cb4">_saml2__AuthzDecisionStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div><div class="line">soap_POST_recv__saml2__AuthzDecisionStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____authz_decision_statement_type.html">_saml2__AuthzDecisionStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Action&gt; <a class="el" href="saml2_8h.html#a5da44f05fbe69e2db63055202a797d47">_saml2__Action</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Action(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div><div class="line">soap_POST_recv__saml2__Action(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____action_type.html">_saml2__Action</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Evidence&gt; <a class="el" href="saml2_8h.html#a29191e74f225002f77a86dca6360721c">_saml2__Evidence</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Evidence(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div><div class="line">soap_POST_recv__saml2__Evidence(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____evidence_type.html">_saml2__Evidence</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AttributeStatement&gt; <a class="el" href="saml2_8h.html#a81af668792229ae5b8a425073a0515dd">_saml2__AttributeStatement</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div><div class="line">soap_POST_recv__saml2__AttributeStatement(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_statement_type.html">_saml2__AttributeStatement</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:Attribute&gt; <a class="el" href="saml2_8h.html#ac7a38117b5444ec935a484f45cddb1f1">_saml2__Attribute</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__Attribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div><div class="line">soap_POST_recv__saml2__Attribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____attribute_type.html">_saml2__Attribute</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:AttributeValue&gt; <a class="el" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div><div class="line">soap_POST_recv__saml2__AttributeValue(<span class="keyword">struct</span> soap*, <a class="code" href="saml2_8h.html#a2809ab4e62d4dd2ab192f1e66a29b898">_saml2__AttributeValue</a>*);</div></div><!-- fragment --></li>
<li>&lt;saml2:EncryptedAttribute&gt; <a class="el" href="saml2_8h.html#a3308c836ae1446ab831374b405caeb7b">_saml2__EncryptedAttribute</a> <div class="fragment"><div class="line"><span class="comment">// Reader (returns SOAP_OK on success):</span></div><div class="line">soap_read__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div><div class="line"><span class="comment">// Writer (returns SOAP_OK on success):</span></div><div class="line">soap_write__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div><div class="line"><span class="comment">// REST GET (returns SOAP_OK on success):</span></div><div class="line">soap_GET__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div><div class="line"><span class="comment">// REST PUT (returns SOAP_OK on success):</span></div><div class="line">soap_PUT__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div><div class="line"><span class="comment">// REST POST (returns SOAP_OK on success):</span></div><div class="line">soap_POST_send__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <span class="keyword">const</span> <span class="keywordtype">char</span> *URL, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div><div class="line">soap_POST_recv__saml2__EncryptedAttribute(<span class="keyword">struct</span> soap*, <a class="code" href="structsaml2_____encrypted_element_type.html">_saml2__EncryptedAttribute</a>*);</div></div><!-- fragment --> </li>
</ul>
</div></div><!-- contents -->
<hr class="footer">
<address class="footer">
Copyright (C) 2018, Robert van Engelen, Genivia Inc., All Rights Reserved.
</address>
<address class="footer"><small>
Converted on Sat Jun 9 2018 10:03:21 by <a target="_blank" href="http://www.doxygen.org/index.html">Doxygen</a> 1.8.11</small></address>
<br>
<div style="height: 246px; background: #DBDBDB;">
</body>
</html>