Legal | Privacy
Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g

In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the new web service functionality in Release 1 of JDeveloper 11g

To run the pages successfully, you must use IE7 or Firefox.

Topics

The tutorial covers the following topics:

Overview
Prerequisites

Building a POJO Annotation-Driven Service

Building a Declaratively-Driven POJO Web Service

Building a Web Service from an Existing WSDL

Building an Annotation-Driven EJB Web Service

Developing a Client for a Service Using Proxy Generation
Developing an ADF Client for a Service Using a Web Service Data Control
Summary

Place the cursor over this icon to load and view all the screenshots for this tutorial. (Caution: This action loads all screenshots simultaneously, so response time may be slow depending on your Internet connection.)

Note: Alternatively, you can place the cursor over an individual icon in the following steps to load and view only the screenshot associated with that step. You can hide an individual screenshot by clicking it.

Overview

The following are some core end-to-end scenarios for JDeveloper for web service development. The focus of these scenarios is to demonstrate (and test) Java EE 5 web services. In particular this means JAX-WS (Java API for XML Web Services) and annotation handling. JAX-WS enables you to enter annotations directly into the Java source without the need for a separate XML deployment descriptor.

The scenarios test the web services using the integrated server in JDeveloper.

The OBE contains six web service scenarios. The first three create POJO web services, each using a different approach: annotations, declarative development, and using a WSDL file. The fourth scenario creates a web service from an EJB 3.0 Session Bean.

The next scenarios focus on the client side. In the fifth one you create a web service proxy and a simple client to access it. In the sixth scenario you build an ADF client and add to it a data control based on a web service.

 

Back to Topic List

Prerequisites

Back to Topic List

Starting JDeveloper 11g

In the following steps, you start the JDeveloper 11g IDE.

1.

Right click the following link and select Save Link As... to save the WebService.zip file in the directory used for this tutorial (i.e. d:\Temp)

 

2.

Open the directory where the file is saved, right click the WebService.zip file and select WinZip --> Extract to here.

 

3.

Start JDeveloper by selecting Start > All Programs > Oracle Fusion Middleware > JDeveloper Studio 11.1.1.0.0

 

4.

If the Migrate User Settings dialog box opens, click NO.

If prompted for a User Role, choose Default.

Close the Tip of the Day window.

 

5.

The JDeveloper IDE should now be displayed.

Back to Topic

Back to Topic List

Opening a Startup Application and Project

1.

Select the Application Navigator tab and click Open Application (alternatively, you can select File | Open)

2.

In the Open Application dialog box, locate the WebService directory created when unzipping the WebService.zip file and select WebService.jws.

Click Open.

 

3.

The Application Navigator should look like this:

Back to Topic

Back to Topic List

Building a POJO Annotation-Driven Service

Back to Topic List

Add a Plain Old Java Object (POJO) to contain the Web Service Method

In this section you open your project with plain old Java classes. You add a method to return the employees and department information. You annotate a class to define it as a web service. You also add a web method annotation to define a method as part of the web service. This section shows how to modify the method properties using the Code Editor, Property Inspector, and Structure window. Once compiled and deployed to the integrated server, the web service is then run using the HTTP Analyzer, which returns the result of the method.

1.

In the Application Navigator, expand the Annotation project nodes to discover the POJO classes. Dept.java describes the department structure Emp.java describes the employee structure. MyCompany.java populates information about department and employees.

 

2.

Double click MyCompany.java to edit it.

 

3.

Notice the existing data for departments and employees. Add a @WebService annotation at the beginning of the code. This annotation denotes that the class contains a method to be used by a web service.

In the margin, click the Quick Hint (light bulb icon) and select the Configure project for web services option.

 

4.

In the Select Deployment Platform dialog box, ensure that Java EE 1.5, with support for JAX-WS Annotations is selected.

Click OK. This step adds the javax.jws.WebService import statement to the Java class and creates a web.xml file.

 

5.

The Application Navigator should now look like the following:

Notice that the icon for MyCompany.java class is changed to represent a WebService class, and the web.xml file has been added to your project.

 

6.

Scroll down at the bottom of the class and add the following statements.

public Dept getDeptInfo(int id){
for (Dept a : this.getMyDepts()){
if (a.getId()==id) {
return a;
}
}
return null;
}

This loop returns information about all employees working in a specific department.

 

7.

Create a second annotation before the getDeptInfo() method. The annotation signifies this is the method to be exposed from the web service. Add a blank line above the getDeptInfo() method, and start typing @WebMethod. Code insight pops up up a list of available syntaxes. Select WebMethod from the list.

If suggested, use (Alt-Enter) keys, to add the import javax.jws.WebMethod; statement.

The class should look like the image below.

 

8.

Click the save all icon to save your work.

 

9.

You can use the Property Inspector to modify the characteristics of the class. In the menu bar, select View | Property Inspector and it will open as a tab in the bottom portion of the IDE.

Note: If the Property Inspector opens in a different part of the IDE, you can drag its tab and drop it on the bottom panel if you would rather work with it there.

 

10.

To display the properties in the Property Inspector, select the Source tab at the bottom of the Structure window, then select the top level MyCompany class name.

 

11.

The Property Inspector displays a few finger tabs on the left side of the window (these could be expandable headings if the Property Inspector window is large enough.) Select the Web Services tab and notice that the Service Name has the word 'Service' appended to the class name. If you don't want to have the service named "MyCompanyService", you can change it, and the class reflects the change.

Change the Service Name to MyCompanyWS and save your work.

 

12.

In the Code Editor you can see that the @WebService annotation updated to reflect the new service name. Conversely, changes in the Code Editor, are synchronized in the Property Inspector. This functionality is available at the method level, too.

You now have a class, defined as a web service, that contains an exposed method. In the next section you test the web service.

Back to Topic

Back to Topic List

Test the Web Service

In this section you compile, deploy and test the web service. The HTTP Analyzer is the testing mechanism for web services. When you use the HTTP analyzer to test web services, the service is compiled and deployed to the integrated server. The analyzer is then invoked, enabling you to send and receive values from the web service.

1.

Before testing the web service, check that your web browser settings are correct. Choose Tools > Preferences and then scroll down the list on the left to select the Web Browser and Proxy page. Ensure that the Use HTTP Proxy Server check box is not selected, then click OK.

2.

In the Application Navigator, right-click the MyCompany.java node and in the context menu, select Test Web Service.

This option invokes WebLogicServer, deploys the service and then starts the analyzer. It may take a few seconds to start WebLogicServer if it is being run for the first time. If this is the first time you test a service, Windows may ask you about blocking content. Allow the content to be displayed.

3.

The top portion of the HTTP Analyzer editor window displays the URL for the web service, the WSDL URL, and the exposed Operations. Select the MyCompanyPort.getDeptInfo(,) operation from the list.

The bottom portion of the analyzer is split into two areas: Request and Response. The request area shows all the arguments from the exposed method. When the web service is executed, the Response area shows the results.

 

4.

In the Request area, enter a department number value (10, 20 or 30) in the arg0 field.

In the top area of the analyzer, click Send Request, or click the Send Request button below the argument.

 

5.

The analyzer sends the request to the service, returning after a few seconds the information about employees working in the specified department.

 

6.

Click the HTTP Content tab at the bottom of the editor to visualize the xml code.

 

7.

Click the Raw Message tab at the bottom of the editor for another presentation of the code.

 

8.

In the top part of the HTTP Analyzer, click the WSDL URL link.

 

9.

This opens the visual editor for the web service. Expand the getDeptInfo | input | getDeptInfo nodes.

 

10.

In the left hand corner, click the Messages Plus sign.

A new graphical representation shows the flow for any message you select.

 

11.

Right click any tab in the editor window and select the Close All option.

Collapse the Annotation project node in the Application Navigator.

Back to Topic

Back to Topic List

 

Building a Declaratively-driven POJO Web Service

Back to Topic List

Create the Class Containing a Method to Publish as a Web Service

In this section you create a new project and Java class, just as you did earlier. In this scenario, rather than using annotations to create the web service, you use a wizard. The wizard creates all the necessary files and entries to enable the class as a web service.

Once the wizard steps are complete, you test the web service using the HTTP Analyzer with the integrated server, just as you did before . You then deploy the web service to an instance of the integrated server, and then use a browser rather than the Analyzer to test the service.

1.

Create a new Empty Project. Right-click the Annotation project node and select New, and then in the New Gallery select Generic Project. Click OK.

In the Create Project dialog, name the project Wizard.

Click Finish.

2.

In the Application Navigator, right click the new Wizard project and select New from context.

In the New Gallery select Java Class to create a new Java class, named HelloService.

By default the package name should be the project name. Ensure that the package name is set to wizard. Leave the rest of the values at their defaults and click OK to invoke the Code Editor.

 

3.

In the class, add the same sayHello method as in the Annotation scenario. Only this time, do not add the annotation. Save your work.

public String sayHello (String s) {
return "Hello " + s;
}

At this point you just have a class with some very simple business logic to return the word Hello followed by the value entered as a parameter.

 

4.

In the Application Navigator, right-click the HelloService.java node and select Create Web Service. This starts the wizard to create the class as a web service.

 

5.

In the Select Deployment Platform step of the Create Java Web Service wizard, ensure that the Java EE 1.5, with support for JAX-WS Annotations is selected as the deployment platform.

Click Next.

 

6.

In the Generation Options step of the wizard, type MyWebService1 as the Web Service Name, and set the Port Name to MyWebService1Port.

Click Next.

 

7.

In the Message Format dialog, select SOAP 1.2 Binding option.

Click Next.

 

8.

In the Methods step, all the possible methods to publish are displayed. You can select the ones you wish to publish. Since there is only one, and it is selected by default, click Next.

The remaining pages are for including any additional classes the service may need, configuring policies for the service, and providing the handler details. You will not change any of these values, so click Finish at any of these screens to create the web service.

 

9.

The class definition is updated with the annotation needed to publish the web service. Make sure that the port name is set to MyWebService1Port, or change it to this value in the editor.

 

10. Click the save all icon to save your work.

Back to Topic

Back to Topic List

Test the Web Service Using the Integrated Server Container

In this section you compile, deploy and test the web service. Just as before, you use the HTTP Analyzer for testing the web service. When you test web services using the analyzer, the service is compiled and deployed to the integrated server. The analyzer is then invoked allowing you to send and receive values from the web service.

1.

In the Application Navigator, right-click the HelloService.java node in the Wizard project and select Test Web Service from the context menu.

This option invokes the integrated server, deploys the service and then starts the analyzer. It may take a few seconds to start the Integrated server if it is being run for the first time.

2.

Just like earlier, the top portion of the HTTP Analyzer editor displays the URL for the web service, WSDL URL, Service Name and exposed Operations.

 

3.

In the Request area, enter <your name> in the arg0 field and click Send Request.

 

4.

The analyzer sends the request to the service, and after a few seconds the return parameter is displayed.

 

5.

In preparation for creating a Web Service from a WSDL file, save the WDSL to a file. Right-click the HelloService.java class in the Navigator and select Show WSDL for Web Service Annotations.

 

6.

The generation of the wsdl file starts. Then MyWebService1.wsdl displays in the Design editor. Experiment opening some nodes to visualize flows.

Click the Source tab at the bottom of the editor to visualize the xml code.

 

7.

From the menu, select File | Save As...

and save the file in the directory of your choice.

The saved file represents what is deployed to the integrated server.

 

8.

Locate the directory where you saved the MyWebService1.wsdl file and open it in WordPad.

After you examine the file, close the WordPad window.

 

9.

Close all the tabs in the Editor and collapse the Wizard node in the Application Navigator.

Back to Topic

Back to Topic List

Building a Web Service from an Existing WSDL

Back to Topic List

Create a Web Service from a WSDL

In the previous two sections you created web services using annotation and a wizard. In this section you create a web service from an existing WSDL file. The WSDL file is the one that in the last section you saved to the file system.

1.

Right-click the Annotation project node and select New, and then in the New Gallery select Generic Project. Click OK.

Create a new Generic Project and name it TopDown, leaving other values at their defaults.

2.

Right-click the new TopDown project and select New.

then select the Business Tier | Web Services node in the Categories list. Select the Java Web Service from WSDL item and click OK.

 

3.

In the Create Java Web Service from WSDL wizard, click Next to dismiss the Welcome page. In the Select Deployment Platform step of the wizard, ensure that the Java 1.5, with support for JAX-WS Annotation is selected as the deployment platform, and then click Next.

 

4.

In the Select Web Service Description step, you specify the source WSDL to be used in creating the web service. Click Browse and navigate to the WSDL you earlier saved (should be something like MyWebService1.wsdl). Select it and click Open.



The file path displays in the WSDL Document URL field.

Click Next.

 

5.

Either click Finish to complete the process, or click Next to view all the defaulted options. The image below shows the last page of the wizard.

 

6.

Save your work. The Application Navigator now displays the Java web service and all the Java files.

The Design of the wsdl displays in the editor pane.

 

7.

Since the web service is created top down, it creates all the headers, but you need to provide the bodies. Set the sayHello method to return something more reasonable. Double-click the HelloServiceImpl.java file to open it in the editor.

 

8.

Set the return to "Hello " + arg0. This returns the word Hello followed by the value that is entered in the argument.

 

9. Click the save all icon to save your work.

Back to Topic

Back to Topic List

Test the Web Service

In this section you compile, deploy and test the web service. Just as before, you use the HTTP Analyzer for testing the web service. When you test web services using the analyzer, the service is compiled and deployed to the integrated server. The analyzer is then invoked, enabling you to send and receive values from the web service.

1.

In the Application Navigator, right-click the MyWebService1 node and from the context menu, select Test Web Service.

This option invokes the integrated server, deploys the service, and then starts the analyzer.

2.

The top portion of the HTTP Analyzer editor displays the URL for the web service, WSDL URL, and exposed Operations.

 

3.

In the Request area, enter <your name> in the arg0 field and click Send Request.

 

4.

The analyzer then sends the request to the service and after a bit, the return parameter is displayed.

 

5.

Close all the tabs in the editor pane and collapse the TopDown node in the Application Navigator.

Back to Topic

Back to Topic List

 

Building an Annotation Driven EJB Web Service

Back to Topic List

Create a New Project for an EJB 3.0 Session Bean

In this section you create a Session Bean and implement it as a web service using annotation.

1.

Right-click the Annotation project node and select New, and then in the New Gallery select Generic Project. Click OK.

Create a new Generic Project and name it EJB-Anno, leaving other values at their defaults.

Click Finish.

 

2.

Right-click the EJB-Anno project and select New.

In the New Gallery, expand the Business Tier node and select EJB in the Categories list . In the Items column, select Session Bean.

Click OK.

3.

In the new Session Bean Wizard, click Next up to Step 4. Accepting the defaults for the EJB Version (Enterprise JavaBeans 3.0), Name and Class Definition pages.

In the EJB Home and Component Interfaces page, do not implement any interfaces.

Click Next then Finish to create the bean.

 

4.

The SessionEJBBean.java file opens in the editor. Add the same sayHello() method as in the Annotation scenario. Save your work.

public String sayHello (String s) {
return "Hello " + s;
}

At this point you just have a class with simple business logic to return the word Hello, followed by the value entered for a parameter.

 

5.

Above the class definition add the @WebService annotation, and clicking on the light bubble in the left margin, select Configure project for web services to generate the WebService (javax.jws) import statement.

 

6.

Above the sayHello method, add the @WebMethod annotation, just as you did with the POJO.

If requested, click (Alt+Enter) to add the import statement.

 

7. Click the save all icon to save your work.

Back to Topic

Back to Topic List

Test the Web Service Using the Integrated Server Container

In this section you compile, deploy and test the web service. Just as before, you use the HTTP Analyzer for testing the web service. When you test web services using the analyzer, the service is compiled and deployed to the integrated server. The analyzer is then invoked, enabling you to send and receive values from the web service.

1.

In the Application Navigator, right-click the SessionEJBBean.java node and in the context menu, select Test Web Service.

2.

Like earlier, the top portion of the HTTP Analyzer editor displays the URL for the web service, WSDL URL, and exposed Operations.

 

3.

In the Request area, enter <your name> in the arg0 field and click Send Request.

 

4.

The analyzer then sends the request to the service, and after a bit the return parameter is displayed.

 

5. Close all the tabs and collapse the EJB-Anno project.

Back to Topic

Back to Topic List

Developing a Client for a Service Using Proxy Generation

Back to Topic List

Create the Web Service Proxy

In this section, using a wizard, you generate a Java proxy for calling a web service. Once complete, you can create a client to connect to it and use it.

1.

Right-click the Annotation project node and select New, and then in the New Gallery select Generic Project. Click OK.

Create a new Generic Project and name it ClientTester.

2.

To use a client, you need to have the HTTP Analyzer up and running with one of your services. If it is not running, expand the Annotation project, and test the MyCompany class in the HTTP Analyzer. Confirm that it is up and working. (You could use any of the web services you created.)

Copy the URL from the analyzer. Do not close the HTTP Analyzer's tab.

 

3.

To generate the proxy, right-click the ClientTester project and select New.

In the New Gallery, select the All Technologies tab. Expand the Business Tier node and select Web Services in the Categories list. Select the Web Service Proxy item and click OK.

This action invokes the Create Web Service Proxy wizard.

 

4.

Click Next to dismiss the Welcome page. In the Select Client Style page, select the JAX-WS Style.

Click Next.

 

5.

In the Select Web Service Description page, you determine the location of the wsdl service. There are two ways you can reference the WSDL: URL and File.

To use the URL, copy the URL from the HTTP Analyzer then paste it into the WSDL Document URL, and append "?wsdl" (such as http://localhost:7101/WebService-Annotation-context-root/MyCompanyPort?wsdl). If you use the URL, then you must select the Copy WSDL into Project checkbox.

You can also use the browse button to find a wsdl file on your machine like you did earlier (for example, D:\Temp\MyWebService1.wsdl).

Click Next.

 

6.

In the Specify Default Mapping Options, click Next to accept the default values.

In the Port Endpoints select Run against a service deployed to Integrated WLS.

Click Next.

 

7.

For the rest of the pages in the wizard, the default values are fine. Either click Next to examine the remaining steps, or click Finish to create the proxy.

 

8.

Click the save all icon to save your work.

 

9.

Expand the ClientTester | annotation | MyCompanyWSProxy nodes in the Application Navigator, which should look like the image below.

Back to Topic

Back to Topic List

Create and Test the Client

In this section you update the client class created to invoke the web service proxy and return the result to the message window.

1.

Double click the MyCompanyPortClient.java class in the Application Navigator.

2.

Within the main() method of the MyCompanyPortClient class, add the following code to the main method.

Dept dept = myCompany.getDeptInfo(10);
System.out.println(dept.getName() + " is at " + dept.getLocation());

Click the save all icon to save your work.

 

3.

Test the client. In the Application Navigator, right-click the MyCompanyPortClient.java file and select Run. (The HTTP Analyzer must be up and running to process the client request. If it is not up, go back to the Annotation project, right-click the MyCompany.java file and select Test Web Service.)

The results of the client can be viewed in the ClientTester.jpr -Log window. If successful, you should see Administration is at Redwood City.

 

4. Close all tabs in the Editor pane, close the Run Manager pane and collapse the ClientTester project.

Back to Topic

Back to Topic List

 

Developing an ADF Client for a Service Using a Web Service Data Control

Back to Topic List

Create the Web Service Data Control

In this section you use the WSDL deployed to the integrated server and create a data control from it. Your application will not contain the original Java code as in the previous scenarios, it creates the data control from the deployed WSDL. Once the data control is created, any ADF client application can use it.

1.

Click the down arrow next to the Application name and select New Project from context.

In the New Gallery, select Web Project.

Click OK.

 

2.

Name the project WebClient. Click Next and Next again.

In the Page Flow Technology, select JavaServer Faces (JSF), and click Next.

In the tag libraries, shuttle the ADF Faces Components 11 one.

Click Next.

Click Next and Finish.

 

3.

In the Application Navigator, right click the WebClient node and select New from context.

In the New Gallery, in the Business tier, select the Web Services node and choose the Web Service Data Control.

Click OK.

 

4.

In the first step of the Create Web Service Data Control wizard, name the data control MyCompanyDC, and then paste http://localhost:7101/WebService-Annotation-context-root/MyCompanyPort?wsdl WSDL URL (). You can copy it from the browser, but ensure that it is from the integrated server instance.

When you press the Tab key, the web service for the data control is populated. Click Next.

 

5.

In the Data Control Operations page, shuttle the getDeptInfo method to the Selected side. Click Next, then Finish.

The Application Navigator, now looks like the following image.

 

6.

Click the save all icon to save your work.

 

7.

Expand the Data Controls accordion in the Application Navigator to expose the MyCompanyDC data control that has just been created.

At this point you are ready to create the JSF JSP page and use the data controls.

Back to Topic

Back to Topic List

Create a JSF Page and Include the Web Service

In this section you create a JSF page which contains fields created from the data control, and returns the result back to the page.

1.

Invoke the New Gallery from the WebClient project.

Expand the Web Tier node and select the JSF sub node. In the Items column, select JSF Page.

Click OK.

 

2.

Name the page Dept_Emp, select the Create as XML Document check box, and checking the Page Template, select the Oracle Three Column Layout.

Click OK.

 

3.

The page opens up in the editor.

 

4.

You now add the data controls for the method. The page should accept a parameter, execute the call to the web service, and return the results in a Master Detail layout. In the Data Control Palette, expand the MyCompanyDC data control and select the getDeptInfo(Integer) method.

Drag the getDeptInfo(Integer) method onto the start facet of the page. When you drop it, a menu is displayed. Select Parameters | ADF Parameter Form.

 

5.

In the Edit Form Fields window click OK to accept the default values.

Click OK.

 

6.

In the Data Controls pane, expand MyCompanyDC | getDeptInfo | Return | Return and select Employees.

Drag and drop Employees onto the center facet. In the dynamic menu select Master-Details | ADF Master Form - Detail Table.

 

7.

Click the save all icon to save your work.

 

8.

Right click within the end facet and select Delete from context.

 

9.

In the Structure pane, for the page, right click the af:table component and select Surround With from context.

In the Surround With window select the Panel Collection and click OK.

 

10.

Expand the panelCollection and select the af:table component. In the Property Inspector, set the Column Selection property to single.

 

11.

Click within the page and select Run.

 

12.

The page loads up your browser.

 

13.

In the parameter field enter a department value and click the getDeptInfo button.

 

14.

The related employees are retrieved and displayed.

 

15. You've successfully completed this lab.

Back to Topic

Back to Topic List

In this tutorial you've seen some features of JDeveloper 11g.

You've learned how to:

Place the cursor over this icon to hide all screenshots.

 

E-mail this page
Printer View Printer View
Oracle Is The Information Company About Oracle | Oracle RSS Feeds | Careers | Contact Us | Site Maps | Legal Notices | Terms of Use | Privacy