Here you will learn how to create a simple web service that calculates the APR based on the FICO score.
What you will learn
- Creation of Application and Project in JDeveloper
- Creation of a simple WebService
- Understand the WSDL
- Test the webservice
- Deploy the webservice
- In JDeveloper, select "New Application" in "Application Navigator"
- To create the Application, enter the "Application Name", "Directory" as shown below
- To create the project, enter the "Project Name" and "Technologies" as shown below
- Finish the creation of the project
- Create a new Java Class as follows
- Enter the name of class as "CreditService" and accept the other defaults
- Declare the class to be a WebService
- Configure web.xml for this service. Select "Jave EE 1.5, with support for JAXWS Annotations" as the deployment platform.
- Create a getCreditRating() method and declare it as WebMethod
- Test as WebService
- The JDeveloper starts the Weblogic server, runs the webservice and launches the test analyzer. Enter the input and the service returns the output.
- TODO The WSDL is to be explained







