You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by sv...@apache.org on 2006/10/29 16:45:11 UTC

svn commit: r468925 [4/7] - in /webservices/juddi/extras: ./ browser/ browser/web-gui/ browser/web-gui/images/ jbossauthenticator/ jbossauthenticator/src/ jbossauthenticator/src/org/ jbossauthenticator/src/org/apache/ jbossauthenticator/src/org/apache/...

Added: webservices/juddi/extras/soapconsole/webapp/delete_tModel.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/delete_tModel.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/delete_tModel.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/delete_tModel.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,69 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "delete_tModel";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137736" target="doc">delete_tModel</a> API call is used to logically delete 
+one or more <a href="uddiv2data.html#_Toc25130775" target="doc">tModel</a> structures. Logical deletion hides 
+the deleted tModels from <a href="uddiv2api.html#_Toc25137716" target="doc">find_tModel</a> result sets but 
+does not physically delete them. Deleting an already deleted <a href="uddiv2data.html#_Toc25130775" target="doc">tModel</a> 
+has no effect. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element will be returned to the caller 
+within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP Fault</a> containing information about the 
+<a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <delete_tModel generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <tModelKey>***</tModelKey>
+    </delete_tModel>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/discard_authToken.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/discard_authToken.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/discard_authToken.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/discard_authToken.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,71 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "discard_authToken";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137737" target="doc">discard_authToken</a> API call 
+is used to inform an Operator Site that the authentication token is to be discarded, 
+effectively ending the session. Subsequent calls that use the same 
+<a href="uddiv2data.html#_Toc25130794" target="doc">authToken</a> will be 
+rejected.  This message is optional for Operator Sites that do not manage session state 
+or that do not support the <a href="uddiv2api.html#_Toc25137739" target="doc">get_authToken</a> 
+message.  If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <discard_authToken generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+    </discard_authToken>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_binding.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_binding.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_binding.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_binding.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,73 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_binding";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137712" target="doc">find_binding</a> API call returns
+a <a href="uddiv2data.html#_Toc25130796" target="doc">bindingDetail</a> message that contains 
+zero or more <a href="uddiv2data.html#_Toc25130769" target="doc">bindingTemplate</a> structures 
+matching the criteria specified in the argument list. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else {
+%><?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_binding serviceKey="***" maxRows="100" generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <findQualifiers>
+        <findQualifier>***</findQualifier>
+      </findQualifiers>      
+      <tModelBag>
+        <tModelKey>***</tModelKey>
+      </tModelBag>
+    </find_binding>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_business.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_business.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_business.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_business.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,83 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_business";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137713" target="doc">find_business</a> API call returns
+a <a href="uddiv2data.html#_Toc25130802" target="doc">businessList</a> message that contains 
+zero or more <a href="uddiv2data.html#_Toc25130802" target="doc">businessInfo</a> structures 
+matching the criteria specified in the argument list. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_business maxRows="100" generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <findQualifiers>
+        <findQualifier>***</findQualifier>
+      </findQualifiers>      
+      <name>***</name>
+      <discoveryURLs>
+        <discoveryURL>***</discoveryURL>
+      </discoveryURLs>
+      <identifierBag>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </identifierBag>
+      <categoryBag>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </categoryBag>
+      <tModelBag>
+        <tModelKey>***</tModelKey>
+      </tModelBag>
+    </find_business>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_publisher.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_publisher.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_publisher.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_publisher.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,65 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_publisher";
+   String requestType = "admin";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The find_publisher API call returns a publisherList message that matches the 
+conditions specified in the arguments. 
+If any error occurs in processing this API call, a dispositionReport element 
+will be returned to the caller within a SOAP Fault containing a message
+describing the error in detail. 
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_publisher maxRows="100" generic="1.0" xmlns="urn:juddi-org:api_v1">
+      <name>***</name>
+    </find_publisher>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_relatedBusinesses.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_relatedBusinesses.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_relatedBusinesses.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_relatedBusinesses.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,71 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_relatedBusinesses";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137714" target="doc">find_relatedBusinesses</a> API call returns
+a <a href="uddiv2data.html#_Toc25130808" target="doc">relatedBusinessesList</a> message that contains 
+zero or more <a href="uddiv2data.html#_Toc25130808" target="doc">relatedBusinessInfo</a> structures matching the criteria specified in the argument list. If 
+an error occurs while processing this API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> 
+element will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_relatedBusinesses generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <findQualifiers>
+        <findQualifier>***</findQualifier>
+      </findQualifiers>      
+      <businessKey>***</businessKey>
+      <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+    </find_relatedBusinesses>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_service.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_service.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_service.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_service.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,77 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_service";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137715" target="doc">find_service</a> API call returns
+a <a href="uddiv2data.html#_Toc25130812" target="doc">serviceList</a> message that contains 
+zero or more <a href="uddiv2data.html#_Toc25130812" target="doc">serviceInfo</a> structures 
+matching the criteria specified in the argument list. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_service businessKey="***" generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <findQualifiers>
+        <findQualifier>***</findQualifier>
+      </findQualifiers>      
+      <name>***</name>
+      <categoryBag>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </categoryBag>
+      <tModelBag>
+        <tModelKey>***</tModelKey>
+      </tModelBag>
+    </find_service>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/find_tModel.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/find_tModel.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/find_tModel.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/find_tModel.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,77 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "find_tModel";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137716" target="doc">find_tModel</a> API call returns
+a <a href="uddiv2data.html#_Toc25130816" target="doc">tModelList</a> message that contains 
+zero or more <a href="uddiv2data.html#_Toc25130816" target="doc">tModelInfo</a> structures 
+matching the criteria specified in the argument list. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <find_tModel generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <findQualifiers>
+        <findQualifier>***</findQualifier>
+      </findQualifiers>      
+      <name>***</name>
+      <identifierBag>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </identifierBag>
+      <categoryBag>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </categoryBag>
+    </find_tModel>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/footer.html
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/footer.html?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/footer.html (added)
+++ webservices/juddi/extras/soapconsole/webapp/footer.html Sun Oct 29 07:45:08 2006
@@ -0,0 +1,50 @@
+
+</td>
+<td valign="top">
+<div class="link">
+<strong>jUDDI API</strong> (proprietary)<br/>
+<a href="get_registryInfo.jsp" title="The get_registryInfo API call is used to get a list of properties published by the jUDDI registry such as registry version or the supported UDDI version.">get_registryInfo</a><br/>
+<a href="find_publisher.jsp" title="The find_publisher API call returns a publisherList message that matches the conditions specified in the arguments.">find_publisher</a><br/> 
+<a href="get_publisherDetail.jsp" title="The get_publisherDetail API call is used to request full information about a known publisher structure.">get_publisherDetail</a><br/> 
+<a href="save_publisher.jsp" title="The save_publisher API call adds or updates one or more publisher elements.">save_publisher</a>
+<a href="delete_publisher.jsp" title="The delete_publisher API call causes one or more instances of publisher data to be deleted from the jUDDI registry.">delete_publisher</a><br/>
+<p></p>
+<strong>UDDI Inquiry API</strong><br/>
+<a href="find_business.jsp" title="The find_business API call returns a businessList message that matches the conditions specified in the arguments.">find_business</a><br/>
+<a href="find_service.jsp" title="The find_service API call returns a serviceList message that matches the conditions specified in the arguments.">find_service</a><br/>
+<a href="find_binding.jsp" title="The find_binding API call returns a bindingDetail message that contains zero or more bindingTemplate structures matching the criteria specified in the argument list.">find_binding</a><br/>
+<a href="find_tModel.jsp" title="This find_tModel API call is for locating a list of tModel entries that match a set of specific criteria. The response will be a list of abbreviated information about registered tModel data that matches the criteria specified.  This result will be returned in a tModelList message.">find_tModel</a><br/>
+<a href="find_relatedBusinesses.jsp" title="The find_relatedBusinesses API call returns a relatedBusinessesList message containing results that match the conditions specified in the arguments.">find_relatedBusinesses</a><br/>
+<a href="get_businessDetail.jsp" title="The get_businessDetail API call returns complete businessEntity information for one or more specified businessEntity registrations matching on the businessKey values specified.">get_businessDetail</a><br/> 
+<a href="get_businessDetailExt.jsp" title="The get_businessDetailExt API call returns extended businessEntity information for one or more specified businessEntity registrations.  This message returns exactly the same information as the get_businessDetail message, but may contain additional attributes if the source is an external registry (e.g. not an Operator Site) that is compatible with this API specification.">get_businessDetailExt</a><br/> 
+<a href="get_serviceDetail.jsp" title="The get_serviceDetail API call is used to request full information about a known businessService structure.">get_serviceDetail</a><br/> 
+<a href="get_bindingDetail.jsp" title="The get_bindingDetail API call is for requesting the run-time bindingTemplate information for the purpose of invoking a registered business API.">get_bindingDetail</a><br/>
+<a href="get_tModelDetail.jsp" title="The get_tModelDetail API call is used to request full information about /known tModel data by key.">get_tModelDetail</a>
+<p></p>
+<strong>UDDI Publish API</strong><br/>
+<a href="get_authToken.jsp" title="The get_authToken API call is used to obtain an authentication token.  Authentication tokens are opaque values that are required for all other publisher API calls.  This message is not required for Operator Sites that have an external mechanism defined for users to get an authentication token.  This API is provided for implementations that do not have some other method of obtaining an authentication token or certificate, or that choose to use user ID and password based authentication.">get_authToken</a><br/> 
+<a href="get_registeredInfo.jsp" title="The get_registeredInfo API call is used to get an abbreviated list of all businessEntity and tModel data that are controlled by the individual associated with the credentials passed.">get_registeredInfo</a><br/> 
+<a href="discard_authToken.jsp" title="The discard_authToken API call is used to inform an Operator Site that the authentication token is to be discarded, effectively ending the session.  Subsequent calls that use the same authToken will be rejected.  This message is optional for Operator Sites that do not manage session state or that do not support the get_authToken message.">discard_authToken</a><br/> 
+<a href="save_business.jsp" title="The save_business API call is used to save or update information about a complete businessEntity element.  This API has the broadest scope of all of the save_xx API calls in the publisher API, and can be used to make sweeping changes to the published information for one or more businessEntity elements controlled by an individual.">save_business</a><br/> 
+<a href="save_service.jsp" title="The save_service API call adds or updates one or more businessService elements.">save_service</a><br/> 
+<a href="save_binding.jsp" title="The save_binding API call is used to save or update a complete bindingTemplate element.  This message can be used to add or update one or more bindingTemplate elements as well as the container/contained relationship that each bindingTemplate has with one or more existing businessService elements.">save_binding</a><br/> 
+<a href="save_tModel.jsp" title="The save_tModel API call adds or updates one or more registered tModel elements.">save_tModel</a><br/> 
+<a href="delete_business.jsp" title="The delete_business API call is used to remove one or more business registrations (e.g. registered businessEntity data) and all direct contents from a UDDI registry.">delete_business</a><br/> 
+<a href="delete_service.jsp" title="The delete_service API call is used to remove one or more previously businessService elements from the UDDI registry and from its containing businessEntity parent.">delete_service</a><br/> 
+<a href="delete_binding.jsp" title="The delete_binding API call causes one or more instances of bindingTemplate data to be deleted from the UDDI registry.">delete_binding</a><br/> 
+<a href="delete_tModel.jsp" title="The delete_tModel API call is used to logically delete one or more tModel structures. Logical deletion hides the deleted tModels from find_tModel result sets but does not physically delete it. Deleting an already deleted tModel has no effect.">delete_tModel</a><br/> 
+<a href="add_publisherAssertions.jsp" title="The add_publisherAssertions API call causes one or more publisherAssertions to be added to an individual publisher?s assertion collection.">add_publisherAssertions</a><br/>
+<a href="set_publisherAssertions.jsp" title="The set_publisherAssertions API call is used to manage all of the tracked relationship assertions associated with an individual publisher account.">set_publisherAssertions</a>
+<a href="get_publisherAssertions.jsp" title="The get_publisherAssertions API call is used to obtain the full set of publisher assertions that is associated with an individual publisher account.">get_publisherAssertions</a><br/> 
+<a href="delete_publisherAssertions.jsp" title="The delete_publisherAssertions API call causes one or more publisherAssertion elements to be removed from a publisher?s assertion collection.">delete_publisherAssertions</a><br/> 
+<a href="get_assertionStatusReport.jsp" title="The get_assertionStatusReport API call provides administrative support for determining the status of current and outstanding publisher assertions that involve any of the business registrations managed by the individual publisher account.  Using this message, a publisher can see the status of assertions that they have made, as well as see assertions that others have made that involve businessEntity structures controlled by the calling publisher account.">get_assertionStatusReport</a><br/> 
+</div>
+</td>
+</tr>
+</table>
+
+<table width="100%" border="0">
+<tr><td height="50" align="center" valign="bottom" nowrap><div class="footer">&nbsp;</div></td></tr>
+</table>
+</body>
+</html>
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_assertionStatusReport.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_assertionStatusReport.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_assertionStatusReport.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_assertionStatusReport.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,70 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_assertionStatusReport";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137738" target="doc">get_assertionStatusReport</a> API call 
+provides administrative support for determining the status of current and outstanding 
+<a href="uddiv2data.html#_Toc25130781" target="doc">publisherAssertions</a> that 
+involve any of the <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> 
+registrations managed by the individual publisher account. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_assertionStatusReport generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <completionStatus>***</completionStatus>
+    </get_assertionStatusReport>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_authToken.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_authToken.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_authToken.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_authToken.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,68 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_authToken";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137739" target="doc">get_authToken</a> API call 
+is used to obtain an authentication token (<a href="uddiv2data.html#_Toc25130794" target="doc">authToken</a>). Authentication 
+tokens are opaque values that are required for all other publisher API calls. If an 
+error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_authToken generic="2.0" xmlns="urn:uddi-org:api_v2" 
+      userID="***" 
+      cred="***"/>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_bindingDetail.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_bindingDetail.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_bindingDetail.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_bindingDetail.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,67 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_bindingDetail";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137717" target="doc">get_bindingDetail</a> API call is 
+for requesting the run-time <a href="uddiv2data.html#_Toc25130769" target="doc">bindingTemplate</a> 
+information for the purpose of invoking a registered business API. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_bindingDetail generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <bindingKey>***</bindingKey>
+    </get_bindingDetail>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_businessDetail.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_businessDetail.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_businessDetail.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_businessDetail.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,68 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_businessDetail";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137718" target="doc">get_businessDetail</a> API call 
+returns complete <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> information 
+for one or more specified <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> 
+registrations matching on the businessKey values specified. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_businessDetail generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <businessKey>***</businessKey>
+    </get_businessDetail>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_businessDetailExt.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_businessDetailExt.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_businessDetailExt.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_businessDetailExt.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,70 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_businessDetailExt";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137719" target="doc">get_businessDetailExt</a> API call 
+returns extended <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> information 
+for one or more specified <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> 
+registrations. This message returns exactly the same information as 
+the <a href="uddiv2api.html#_Toc25137718" target="doc">get_businessDetail</a> message, 
+but may contain additional attributes. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_businessDetailExt generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <businessKey>***</businessKey>
+    </get_businessDetailExt>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_publisherAssertions.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_publisherAssertions.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_publisherAssertions.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_publisherAssertions.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,67 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_publisherAssertions";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137740" target="doc">get_publisherAssertions</a> API call 
+is used to obtain the full set of <a href="uddiv2data.html#_Toc25130781" target="doc">publisherAssertions</a> that 
+is associated with an individual publisher account.If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_publisherAssertions generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+    </get_publisherAssertions>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_publisherDetail.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_publisherDetail.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_publisherDetail.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_publisherDetail.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,65 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_publisherDetail";
+   String requestType = "admin";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The get_publisherDetail API call is used to request full information about a 
+known publisher structure. 
+If any error occurs in processing this API call, a dispositionReport element 
+will be returned to the caller within a SOAP Fault containing a message
+describing the error in detail. 
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_publisherDetail generic="1.0" xmlns="urn:juddi-org:api_v1">
+      <publisherID>***</publisherID>
+    </get_publisherDetail>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_registeredInfo.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_registeredInfo.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_registeredInfo.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_registeredInfo.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,68 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_registeredInfo";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137741" target="doc">get_registeredInfo</a> API call 
+is used to obtain an abbreviated list of all <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> 
+and <a href="uddiv2data.html#_Toc25130775" target="doc">tModel</a> data that are controlled 
+by the individual associated with the credentials passed. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_registeredInfo generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+    </get_registeredInfo>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_registryInfo.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_registryInfo.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_registryInfo.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_registryInfo.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,63 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_registryInfo";
+   String requestType = "admin";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The get_registryInfo API call is used to get a list of properties published by 
+the jUDDI registry such as registry version or the supported UDDI version.
+If any error occurs in processing this API call, a dispositionReport element 
+will be returned to the caller within a SOAP Fault containing a message
+describing the error in detail. 
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_registryInfo generic="1.0" xmlns="urn:juddi-org:api_v2"/>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_serviceDetail.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_serviceDetail.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_serviceDetail.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_serviceDetail.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,67 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_serviceDetail";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137720" target="doc">get_serviceDetail</a> API call is used to 
+request full information about a known <a href="uddiv2data.html#_Toc25130765" target="doc">businessService</a>
+structure. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_serviceDetail generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <serviceKey>***</serviceKey>
+    </get_serviceDetail>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/get_tModelDetail.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/get_tModelDetail.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/get_tModelDetail.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/get_tModelDetail.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,67 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "get_tModelDetail";
+   String requestType = "inquiry";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137721" target="doc">get_tModelDetail</a> API call is used 
+to request full information about a known <a href="uddiv2data.html#_Toc25130775" target="doc">tModel</a> 
+data by key. If an error occurs while processing this 
+API call, a <a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <get_tModelDetail generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <tModelKey>***</tModelKey>
+    </get_tModelDetail>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/header.html
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/header.html?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/header.html (added)
+++ webservices/juddi/extras/soapconsole/webapp/header.html Sun Oct 29 07:45:08 2006
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
+<head>
+<title>jUDDI Web Services Registry</title>
+<link rel="stylesheet" href="style.css"/>
+</head>
+<body>
+<div class="nav" align="right"><font size="-2"><a href="http://ws.apache.org/juddi/" target="_top">jUDDI@Apache</a></font></div>
+<h1>jUDDI Console (Beta)</h1>
+<table border="0" cellpadding="8" width="300">
+<tr>
+<td valign="top">

Added: webservices/juddi/extras/soapconsole/webapp/index.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/index.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/index.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/index.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,3 @@
+<jsp:include page="header.html" />
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/save_binding.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/save_binding.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/save_binding.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/save_binding.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,71 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "save_binding";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137742" target="doc">save_binding</a> API call is used 
+to save or update information about a complete <a href="uddiv2data.html#_Toc25130769" target="doc">bindingTemplate</a> 
+element. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <save_binding generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <bindingTemplate bindingKey="" serviceKey="***">
+        <description xml:lang="en">***</description>
+        <accessPoint URLType="http">***</accessPoint>
+      </bindingTemplate>
+    </save_binding>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/save_business.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/save_business.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/save_business.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/save_business.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,78 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "save_business";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137743" target="doc">save_business</a> API call is used 
+to save or update information about a complete <a href="uddiv2data.html#_Toc25130756" target="doc">businessEntity</a> 
+element. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <save_business generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <businessEntity businessKey="">
+        <name>***</name>
+        <description>***</description>
+        <contacts>
+          <contact useType="***">
+            <personName>***</personName>
+            <phone>***</phone>
+            <email>***</email>
+          </contact>
+        </contacts>
+      </businessEntity>
+    </save_business>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/save_publisher.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/save_publisher.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/save_publisher.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/save_publisher.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,73 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "save_publisher";
+   String requestType = "admin";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The save_publisher API call adds or updates one or more publisher elements.
+If any error occurs in processing this API call, a dispositionReport element 
+will be returned to the caller within a SOAP Fault containing an error number 
+indicating an
+<a href="/uddi_errors#E_authTokenExpired">E_authTokenExpired</a> or 
+<a href="/uddi_errors#E_authTokenRequired">E_authTokenRequired</a> error was 
+encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <save_publisher generic="1.0" xmlns="urn:juddi-org:api_v1">
+      <authInfo>*****</authInfo>
+      <publisher 
+         publisherID="*****" 
+         publisherName="*****" 
+         admin="true" 
+         enabled="false" 
+         emailAddress="*****"/>
+    </save_publisher>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/save_service.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/save_service.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/save_service.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/save_service.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,85 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "save_service";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137744" target="doc">save_service</a> API call is used 
+to add or update one or more <a href="uddiv2data.html#_Toc25130765" target="doc">businessService</a> 
+elements. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <save_service generic="2.0" xmlns="urn:uddie-org:api_v2">
+      <authInfo>***</authInfo>
+      <businessService businessKey="***" serviceKey="">
+        <name>***</name>
+        <description>***</description>
+        <bindingTemplates>
+          <bindingTemplate bindingKey="">
+            <accessPoint URLType="http">***</accessPoint>
+            <tModelInstanceDetails>
+              <tModelInstanceInfo tModelKey="***">
+                <instanceDetails>
+                  <overviewDoc>
+                    <overviewURL>***</overviewURL>
+                  </overviewDoc>
+                </instanceDetails>
+              </tModelInstanceInfo>
+            </tModelInstanceDetails>
+          </bindingTemplate>
+        </bindingTemplates>
+      </businessService>
+    </save_service>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/save_tModel.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/save_tModel.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/save_tModel.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/save_tModel.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,82 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "save_tModel";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137745" target="doc">save_tModel</a> API call is used 
+to add or update one or more registered <a href="uddiv2data.html#_Toc25130775" target="doc">tModel</a> 
+elements. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off>
+<%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <save_tModel generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <tModel tModelKey="">
+        <name>***</name>
+        <description>***</description>
+        <overviewDoc>
+          <description>***</description>
+          <overviewURL>***</overviewURL>
+        </overviewDoc>
+        <identifierBag>
+          <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+        </identifierBag>
+        <categoryBag>
+          <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+        </categoryBag>
+      </tModel>
+    </save_tModel>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file

Added: webservices/juddi/extras/soapconsole/webapp/set_publisherAssertions.jsp
URL: http://svn.apache.org/viewvc/webservices/juddi/extras/soapconsole/webapp/set_publisherAssertions.jsp?view=auto&rev=468925
==============================================================================
--- webservices/juddi/extras/soapconsole/webapp/set_publisherAssertions.jsp (added)
+++ webservices/juddi/extras/soapconsole/webapp/set_publisherAssertions.jsp Sun Oct 29 07:45:08 2006
@@ -0,0 +1,71 @@
+<jsp:include page="header.html" />
+
+<%
+   String requestName = "set_publisherAssertions";
+   String requestType = "publish";
+   String requestKey = requestName+":request";
+   String responseKey = requestName+":response";
+   String requestTimeKey = requestName+":time";
+%>
+
+<h3><%= requestName%></h3>
+<div class="link">
+The <a href="uddiv2api.html#_Toc25137746" target="doc">set_publisherAssertions</a> API call is used 
+to manage all of the tracked relationship assertions associated with an individual publisher account. If an error occurs while processing this API call, a 
+<a href="uddiv2api.html#_Toc25137750" target="doc">dispositionReport</a> element 
+will be returned to the caller within a <a href="uddiv2api.html#_Toc25137756" target="doc">SOAP 
+Fault</a> containing information about the <a href="uddiv2api.html#_Toc25137748" target="doc">error</a> that 
+was encountered.
+</div>
+
+<form method="post" action="controller.jsp">
+<textarea class=msgs id=soap_request name=soap_request rows=15 cols=75 wrap=off><%
+String requestMessage = (String)session.getAttribute(requestKey);
+if (requestMessage != null) {
+  out.print(requestMessage);
+} else { %>
+<?xml version="1.0" encoding="utf-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+  <soapenv:Body>
+    <set_publisherAssertions generic="2.0" xmlns="urn:uddi-org:api_v2">
+      <authInfo>***</authInfo>
+      <publisherAssertion>
+        <fromKey>***</fromKey>
+        <toKey>***</toKey>
+        <keyedReference tModelKey="***" keyName="***" keyValue="***" />
+      </publisherAssertion>
+    </set_publisherAssertions>
+  </soapenv:Body>
+</soapenv:Envelope>
+<% } %>
+</textarea>
+
+<%
+String requestTime = (String)session.getAttribute(requestTimeKey);
+if (requestTime == null) {
+  requestTime = "0";
+} %>
+<table cellpadding="4" width="100%">
+<tr>
+<td>
+<input type="hidden" name="request_name" value=<%=requestName%>>
+<input type="hidden" name="request_type" value=<%=requestType%>>
+<input type="submit" name="validate_button" value="Validate">
+<input type="submit" name="submit_button" value="Submit">
+<input type="submit" name="reset_button" value="Reset">
+</td>
+<td align="right">
+Time: <strong><%= requestTime%></strong> milliseconds
+</td>
+</tr>
+</table>
+
+<textarea class=msgs id=soap_response name=soap_response rows=25 cols=75 wrap=off><%
+String responseMessage = (String)session.getAttribute(responseKey);
+if (responseMessage != null) {
+  out.print(responseMessage);
+} %>
+</textarea>
+</form>
+
+<jsp:include page="footer.html" />
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org