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.

link|improve this question
feedback

migrated from stackoverflow.com Oct 5 '11 at 3:54

This question came from our site for professional and enthusiast programmers.

1 Answer

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.

link|improve this answer
versionInfo (.sh or .bat) is, indeed, the easiest way to do this. The installed Feature Packs will be listed there. – dbreaux Oct 5 '11 at 14:03
feedback

Your Answer

 
or
required, but never shown