Oracle WebCenter Interaction Web Service Development Guide

     Previous Next  Open TOC in new window   View as PDF - New Window  Get Adobe Reader - New Window
Content starts here

Debugging a Custom Oracle WebCenter Interaction Development Kit (IDK) Project - Java

After you create a custom Oracle WebCenter Interaction Development Kit (IDK) project, you must deploy it in your Java application server.

These instructions use Tomcat as an example.
  1. Define the server in Eclipse:
    1. Click File > New > Other > Server > Serverand click Next.
    2. Select the server type as Tomcat v5.0 and click Next.
    3. Select the Tomcat v5.0 installation directory and click Next.
    4. Add your project to the list of configured Tomcat projects and click Finish.
  2. Content services, identity services and SCI pages require additional configuration. You must add the custom class to the appropriate *Impl keys in the web.xml file in the WEB-INF directory. For details on Impl keys, see Web Service Class Names (*Impl).
  3. Run and debug the application:
    1. In Eclipse Project Explorer, right-click your project and click Debug As > Debug On Server.
    2. Select the existing server and click Finish.
  4. When Tomcat starts in a new Servers tab, hit http://localhost:8080/<project name>/servlet/AxisServlet to ensure that Axis has deployed correctly and the web service APIs are correctly configured.

  Back to Top      Previous Next