I am using Flex 4 (and BlazeDS) on WebSphere 6.1.0.17.
The setup needed for Flex/BlazeDS is that you put blazeds jars in WEB-INF/lib folder of the project. Below are the jars in WEB-INF/lib,
You also load a Flex
servlet in web.xml (just like
Struts servlet or
JSF sevlet), so that it can intercept Flex requests and delegate to proper components.
When I run application I get below error,
I am not able to understand why Websphere says NoClassDefFoundError for javax.net.ssl.SSLSocketFactory, which is part of
Java API.
Below is my classloader hierarchy,
The last ClassLoader [#7] is the one which loads BlazeDS jars from WEB-INF/lib folder. Then as shown in exception stack trace if calls other Flex classes and HttpClient classes (which are available to the same class loader), but when it needs javax.net.ssl.SSLSocketFactory it fails.
I am not sure why this happens. If #7 cannot see this class, is it not true that it should go to its parent class loaders upto the Bootstrap class loader? And it is difficult to imagine why none of the classloaders are unable to load class from Java API.
Please help!