dims        2005/06/28 08:21:53

  Added:       targets/xmlrpc/xref-test/org/apache/xmlrpc Jira61.html
  Log:
  latest xmlrpc site.
  
  Revision  Changes    Path
  1.1                  
ws-site/targets/xmlrpc/xref-test/org/apache/xmlrpc/Jira61.html
  
  Index: Jira61.html
  ===================================================================
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
  <html xmlns="http://www.w3.org/1999/xhtml"; xml:lang="en" lang="en">
  <head>
  <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" 
/><title>Jira61 xref</title>
  <link type="text/css" rel="stylesheet" href="../../../stylesheet.css" />
  </head>
  <body>
  <pre>
  
  <a name="1" href="#1">1</a>   <strong>package</strong> <a 
href="../../../org/apache/xmlrpc/package-summary.html">org.apache.xmlrpc</a>;
  <a name="2" href="#2">2</a>   
  <a name="3" href="#3">3</a>   <strong>import</strong> java.io.IOException;
  <a name="4" href="#4">4</a>   <strong>import</strong> java.util.Vector;
  <a name="5" href="#5">5</a>   
  <a name="6" href="#6">6</a>   <strong>import</strong> 
junit.framework.TestCase;
  <a name="7" href="#7">7</a>   
  <a name="8" href="#8">8</a>   
  <a name="9" href="#9">9</a>   <strong>public</strong> <strong>class</strong> 
Jira61 <strong>extends</strong> TestCase {
  <a name="10" href="#10">10</a>      <strong>public</strong> 
<strong>class</strong> TestLoopBack {
  <a name="11" href="#11">11</a>          <em>/**<em>*</em></em>
  <a name="12" href="#12">12</a>  <em>         * @throws XmlRpcException</em>
  <a name="13" href="#13">13</a>  <em>         */</em>
  <a name="14" href="#14">14</a>          <strong>public</strong> 
<strong>void</strong> createItem() throws XmlRpcException {
  <a name="15" href="#15">15</a>              <strong>throw</strong> 
<strong>new</strong> XmlRpcException(7,<span class="string">"Not found"</span>);
  <a name="16" href="#16">16</a>          }
  <a name="17" href="#17">17</a>      }
  <a name="18" href="#18">18</a>  
  <a name="19" href="#19">19</a>      
  <a name="20" href="#20">20</a>      <strong>public</strong> 
<strong>void</strong> testException() throws IOException {
  <a name="21" href="#21">21</a>          WebServer webserver = 
<strong>new</strong> WebServer(0);
  <a name="22" href="#22">22</a>          TestLoopBack tt = 
<strong>new</strong> TestLoopBack();
  <a name="23" href="#23">23</a>          webserver.addHandler (<span 
class="string">"examples"</span>, tt);
  <a name="24" href="#24">24</a>          webserver.start();
  <a name="25" href="#25">25</a>          XmlRpcClient xmlrpc = 
<strong>new</strong> XmlRpcClient(<span 
class="string">"http://localhost:";</span> + 
webserver.serverSocket.getLocalPort() + <span class="string">"/RPC2"</span>);
  <a name="26" href="#26">26</a>          Vector params = <strong>new</strong> 
Vector ();
  <a name="27" href="#27">27</a>          <strong>boolean</strong> ok = false;
  <a name="28" href="#28">28</a>          <strong>try</strong> {
  <a name="29" href="#29">29</a>                xmlrpc.execute(<span 
class="string">"examples.createItem"</span>, params);
  <a name="30" href="#30">30</a>          } <strong>catch</strong> 
(XmlRpcException e) {
  <a name="31" href="#31">31</a>                ok = <strong>true</strong>;
  <a name="32" href="#32">32</a>          }
  <a name="33" href="#33">33</a>          assertTrue(ok);
  <a name="34" href="#34">34</a>      }
  <a name="35" href="#35">35</a>  }
  </pre>
  <hr/><div id="footer">This page was automatically generated by <a 
href="http://maven.apache.org/";>Maven</a></div></body>
  </html>
  
  
  
  

Reply via email to