Friday, November 16, 2007

Informatica Upgrade to 8.1.1 - Client

Informatica is a Web Service Hub. When the server upgrades to 8.1.1, from the client side, do the followings,
  1. Open the Hub's home page, e.g. http://host:7333/wsh/
  2. Click on the "Batch Web Services"
  3. Click on the WSDL icon under Metadata WSDL
  4. Right click on the pop-up page and select "View Source"
  5. Save the content as MetaData.wsdl
  6. Do the same for DataIntegration WSDL, save as DataIntegration.wsdl
  7. Import these two files to a RSA project
  8. Add axis-1.4.jar to the project
  9. Create a Java Application Run,
  10. Set main class as org.apache.axis.wsdl.WSDL2Java
  11. Check "Include libraries when searching for a main class" on
  12. Select Arguments tab
  13. Enter "--NStoPkg http://www.informatica.com/wsh=com.informatica.www -W informatica-8.1.1/MetaData.wsdl" as Program arguments, where the informatica-8.1.1 is the folder of MetaData.wsdl file
  14. Run this Java Application
  15. Informatica client code for MetaData service will be generated
  16. Do the same for DataIntegration service
  17. There are some changes from version 7, especially of the connection, workflow and folder
  18. Modify the client application accordingly

1 comment:

Anand R said...

Thanks for the info. I spent days searching for this before I came across ur blog.