⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soapmessage.jsp

📁 ORACLE AQ sample 演示的如何出列
💻 JSP
字号:
<%--
  *  @author   Rajat Gupta
  *  @version  1.0
  *
  *  Development Environment        : Oracle9i JDeveloper
  *  Name of the Application        : SOAPMessage.jsp
  *  Creation/Modification History  :
  *
  *     Rajat Gupta     22-Jan-2002     Created
  *
  *  Overview of Application        :
  *    This JSP displays the SOAP message sent to the AQServlet. The SOAP
  *    message is used as an input to the IDAP.
--%>


<%@ page language="java" %>
<%@ page errorPage="Exception.jsp" %>
<HTML><HEAD>
<script language="JavaScript1.1">

    // This function submits the form to the ControllerServlet appending the
    // appropriate event.
    function submitForm(){
    document.DisplaySoapMessage.submit();
  }

</script>

<TITLE>Advanced Queuing Sample - Generated SOAP Message</TITLE>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<link rel="stylesheet" href="stylesheets/styles.css" type="text/css">
<META content="MSHTML 5.00.2314.1000" name=GENERATOR></HEAD>

<BODY bgColor=#ffffff  text=#000000>
<form name="DisplaySoapMessage" method="post" action="/aq/AQServlet">
<!-- Main table -->
  <jsp:include page="include/Top.jsp" />
             <SPAN class="greeting"> Hi <%= (String)session.getAttribute("Name")%>. You have logged in as a Customer.</SPAN>
                  <jsp:include page="include/Links.jsp" />  
     <!-- Heading of the page goes here -->

     <TR><TD class="mainHeading" align="center">SOAP message to be passed to Oracle database</TD></TR>
     <TR><TD>&nbsp;</TD></TR>
     <TR>
        <TD>
            <!-- 5th table starts here working area -->
            <TABLE border=0 cellPadding=0 cellSpacing=0 width=970 >
              <TBODY>
              <TR>
                <TD valign="top" width="15%" noWrap>&nbsp;</TD>
                <TD vAlign=top width="75%">
                  <!-- 6th table starts here-->
                  <TABLE border=1 borderColor="#9BCDFF" cellPadding=2 cellSpacing=0 width="100%">
                    <TBODY>
                    <TR align="center">
                      <textarea name="aqxmldoc" ENCTYPE="text/xml" rows="20" cols="100" onFocus="blur()">
<%=request.getAttribute("SoapMessage")%>
                      </textarea>

                    </TR>

                   </TBODY>
                  </TABLE>

            <!-- 6th table ends here -->
                </TD>
                <TD width="10%">&nbsp;</TD>
              </TR>
              <TR><TD colspan=3>&nbsp;</TD></TR>
              <TR>

            <TD colspan=3 align="center"> <img src="images/sendSOAPMess.gif" border=0 onMouseUp="submitForm()">
            </TD>
              </TR>
              </TBODY>
            </TABLE>
            <!-- 5th table ends here working area-->
        </TD>
      </TR>
      <TR>
        <TD vAlign=top align=left noWrap>&nbsp;</TD>
      </TR>
      <TR>
        <TD vAlign=top align=left ><image src="images/line.gif" height="3" width="970"></TD>
      </TR>
      <TR>
        
    <TD height=19 vAlign=top align="left"><font face="Arial, Helvetica" size=-2> 
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &copy; Copyright 2002 Oracle Corporation. 
      All rights reserved.</font> </TD>
      </TR>
    </TABLE>
    <!-- Main table ends here-->
</form>
</BODY>
</HTML>

⌨️ 快捷键说明

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