views:

40

answers:

1

How do I detect if "Web Services Feature Pack for WebSphere "is installed in Websphere Application Server v6.1?

I need this information to solve some classloading issues while deploying cxf webservices in Websphere.

A: 

While I don't have the WSFP installed here, by far your best bet is to use WebSphere's versionInfo utility.

You can find it in %APPSERVER%/bin where %APPSERVER% is your WAS installation location.

Reference (from the WAS 6.1 infocenter) can be found here.

My suggestion is that you generate the version report in HTML using the most detailed flags (-long -maintenancePackages -maintenancePackageDetail -components -componentDetail) and take it from there.

Isaac