The top-level page of the Dynamo Administration UI includes a Web Service Administration link. This link takes you to the Web Service Administration page, which has three links for working with Web services:

To create a Web service that invokes a method on a Nucleus component, starting from the Web Service Administration page:

  1. Click the Web Service Creation Wizard link. This takes you to a page titled Select Type, where you can select the type of Web service to create.

  2. Click the Component Method Web Service link. This takes you to the Select Nucleus Component page.

  3. On the Select Nucleus Component page, specify the pathname of the Nucleus component you want to create the Web service from. You can either enter the pathname directly in the field at the top of the page and then click the Next button, or you can use the component browser below it to navigate to the component and select it.

  4. On the Select A Method page, select the method you want to expose as a Web service.

  5. If the method requires any input parameters, the Set Parameter Names page provides you with fields for specifying the names of these parameters. The names you specify are used for the parameters of the Web service call, and can be anything you like.

    When the Web service is called, the service passes the values of these parameters to the parameters of the exposed Nucleus method. There is thus a one-to-one correspondence between the parameters of the Web service call and the parameters of the underlying Nucleus methods.

  6. The next two pages are titled EAR Name & Servlet Settings and Enterprise and Web Application Settings. When the wizard creates a Web service, it packages it in a WAR file, which is in turn packaged in an EAR file. It is possible to have any number of services in a single Web application (WAR file), and any number of Web applications in a single Enterprise application (EAR file). This flexibility gives you a good deal of control over how you deploy your Web services. For each new Web service, the wizard can do any of the following:

    To add a Web service to an existing EAR file, you specify that file as the EAR file name on the EAR Name & Servlet Settings page. The Web Application Settings page then gives you the choice of creating a new Web application for the service, or adding the service to an existing Web application.

    The wizard also gives you the option of specifying the host name and port number for a Web service, or of leaving these fields blank. If you leave the fields blank, the values are dynamically assigned at runtime from the URL used for the WSDL file request.

  7. The Session & Security Options page allows you to specify whether the Web service should be executed within the context of an HTTP session. The wizard gives you these options:

    If you want to call the Web service from a client that uses sessions or session sharing, you must choose one of the last two options. If you choose the last option, the wizard then prompts you to select a security configuration. See Web Service Security for information about security configurations for Web services.

  8. On the Create EAR File page, click the Create EAR File button to create the Web service.

    If there is already an EAR file with the specified name, the wizard first appends .old to the name of the existing file so that new file does not overwrite it.

Once you have created an EAR file, you must deploy it in order to run the Web services in it. See the Deploying Web Services section for more information.

 
loading table of contents...