get_registryinfo.jsp

来自「uddi注册中心」· JSP 代码 · 共 63 行

JSP
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 messagedescribing 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" />

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?