Hi there, I am using axis2/c to build a web service client, and axis2/c depends on openSSL to support SSL. The way that axis2/c is currently built requires resolving all the symbols at load time, which means that the openSSL dlls have to present in the class path even if my web services does not need SSL. My goal is to modify axis2/c so that I can load the openSSL dlls at runtime, this means that I will need the dlls to exist in the class path only if my web service calls require SSL communication. The AXIS2/c mainly calls the openSSL apis starting with SSL_, like SSL_read(...). Has anyone done this? If yes, can you share the experience? I noticed that the functions starting with SSL_ are not exported, is this a problem? Thanks much! Frank
