Websphere ClassLoader:
http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/0408_baigang/part2.html
CEI:相关api介绍:
http://www-128.ibm.com/developerworks/cn/webservices/ws-odbp8/#resourceshttp://server.e800.com.cn/articles/server/server_tech/200606/1150786581401_3.htmlhttp://www-128.ibm.com/developerworks/websphere/techjournal/0408_watkinson/0408_watkinson.htmlWebsphere JMS:
http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/0304_yu/yu1.html
JMS 例子: http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/0304_yu/yu3.html
异步流程开发:(pick,关联集合)
http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/lizhi/0501/index.html
调用流程定义的EJB接口
// Obtain the initial JNDI context
Properties prop = System.getProperties();
prop.put(
javax.naming.Context.PROVIDER_URL,
"iiop://localhost:2809");
context = new InitialContext(prop);
// Lookup the home interface of the BusinessProcess bean
Object result =
context.lookup("com/example/www/process44905808/AsyProcess20030101T000000");
// Convert the lookup result to the proper type
AsyProcessHome processHome =
(
AsyProcessHome) javax
.rmi
.PortableRemoteObject
.narrow(
result,
AsyProcessHome.class);
// Access the BusinessProcess session bean's remote interface
AsyProcess ap = processHome.create();
ap.Listener1("1234");