How to create a bottoms-up Websphere with Websphere Integration Developer that is deployed to Websphere Application Server V7.
Below is the steps to create an simple Web Service using Websphere Integration Developer:
1. Open up Websphere Integration Developer and create an new EJB Project
Step 2: Click on the ‘New’ button to create a new EAR Membership.
The following 3 files will be created
Step 3: Create a new Stateless Session Bean
Step 4: Complete the following information below (Important to select Remote)
Step 5: Open the Bank interface object and add a method.
Step 6: Open your Stateless Session Bean File and right click and select ‘Override/Implementation Methods’, make sure the @Override notation is added to your code (see in red block)
Step 7: Add code inside your method
Step 8: Verify that there is no error.
Step 9: Add an Application Server to your WID IDE and start the server.
Step 10: Right click on your Application Server and click on ‘Add and Remove Projects’ and Select the BankAccount project
Step 11: Verify that the Application Server has successfully synchronized the new project and no errors occurred.
Step 12: Creating the Web Service is done in the following Steps, right click on your Stateless Session Bean and Select Web Service -> Create Web Service. Your will see the following screens:
Confirm that the right Server type is selected, being WAS, WPS, WBM or any Application Server
For this example the binding type is HTTP, you can change it to JMS or EJB.
As we only have one method, select the method BankAccount. WS-Security can be added in this step to create a more secure Web Service.
Optional you can deploy your WSDL to the Websphere UDDI for Web Services discovery. Click Finish to complete. Confirm that Web Service creation was successful.
Step 13. Test your new Web Service by opening Web Services Explorer and browsing for the Bank.wsdl
Step 14: Enter the relevant information into the two fields provided and click ‘GO’
Web Service Completed successfully. This Web Services can now be deployed to Websphere Registry and Repository to be discovered by all other systems in your environment.
Hi,
Thanks for this excellent tutorial;However, There is something wrong in my case that prevents me from applying that tutorial and i wish if you can help. Actually, i have maven ear project which has 2 ejb modules and one of them is an ejb as web service, when i create a web service from the ejb i don’t have the option of “Bottom Up EJB web service” rather i have “Top Down EJB web service”, “Top Down Java Bean Web service” and “Buttom Up Java Bean Web service”. So, now i don’t know how to generate web service from my ejb?
Do you have any idea how to solve that?