Index.jsp Sample
This topic inludes the source code for the Index.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 <!--Generated by Weblogic Workshop-->
02 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
03 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
04 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
05 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
06 <html>
07 <head>
08 <netui:base/>
09 <link href="../../../resources/css/style.css" type="text/css" rel="stylesheet"/>
10 </head>
11 <body>
12 <jsp:include page="../../../resources/jsp/header.jsp"/>
13 <h3>Calling a (Synchronous) Web Service from a Page Flow</h3>
14 <p>This sample demonstrates how to call a (synchronous) web service from a Page Flow.
15 <p>Clicking the link below invokes the HelloWorld.jws web service.
16 <blockquote>
17
18 <p><netui:anchor action="HelloWorld.do">
19 Get message from the HelloWorld web service</netui:anchor>
20
21 </blockquote>
22 <hr>
23 <p><netui:anchor href="/WebApp/controls/controlsController.jpf">Back to Control Samples</netui:anchor>
24
25
26 </body>
27 </html>
|