Result.jsp Sample
This topic inludes the source code for the Result.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/controls/webservice/helloworld/
Sample Source Code
01 <%@page contentType="text/html;charset=UTF-8" language="java"%>
02 <%@taglib prefix="netui" uri="netui-tags-html.tld"%>
03 <html>
04 <head>
05 <title>Result from Synchronous Web Service</title>
06 <netui:base/>
07 <link href="/WebApp/resources/css/style.css" type="text/css" rel="stylesheet"/>
08 </head>
09 <body>
10 <jsp:include page="/resources/jsp/header.jsp"/>
11 <br>
12 <br>
13
14 <blockquote>
15
16 <p>The message from the HelloWorld web service is:</p>
17
18 <p><netui:label style="font-weight:bold;" value="{pageFlow.result}" />
19
20
21 </blockquote>
22 <hr>
23 <p><netui:anchor action="begin">Re-run this sample</netui:anchor></p>
24 <p><netui:anchor href="/WebApp/controls/controlsController.jpf">Back to Control Samples</netui:anchor>
25
26 </body>
27 </html>
|