Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If it is proxy functionality you are looking for you can use <a href="https://github.com/dsmiley/HTTP-Proxy-Servlet" rel="nofollow">this project</a>.</p> <p>If you're using <a href="http://maven.apache.org/" rel="nofollow">maven</a>:</p> <pre><code> &lt;dependency&gt; &lt;groupId&gt;org.mitre.dsmiley.httpproxy&lt;/groupId&gt; &lt;artifactId&gt;smiley-http-proxy-servlet&lt;/artifactId&gt; &lt;version&gt;1.2&lt;/version&gt; &lt;/dependency&gt; </code></pre> <p>If you're not using maven you can probably just get the jar file from the Github repository.</p> <p>Then in your web.xml you can point it to wherever your actual service is:</p> <pre><code>&lt;servlet&gt; &lt;servlet-name&gt;sampleProxy&lt;/servlet-name&gt; &lt;servlet-class&gt;org.mitre.dsmiley.httpproxy.ProxyServlet&lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;targetUri&lt;/param-name&gt; &lt;param-value&gt;http://localhost:9200/&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;log&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;sampleProxy&lt;/servlet-name&gt; &lt;url-pattern&gt;/sample/*&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; </code></pre> <p>( And if the WSDL of your actual service has an endpoint defined in it to the actual service, just keep a local copy of the WSDL, change the endpoints and you're done. )</p> <p>This is probably as time efficient as it gets, and requires next to no experience.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload