http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/0408_baigang/part2.html
CEI:相關(guān)api介紹:
http://www-128.ibm.com/developerworks/cn/webservices/ws-odbp8/#resources
http://server.e800.com.cn/articles/server/server_tech/200606/1150786581401_3.html
http://www-128.ibm.com/developerworks/websphere/techjournal/0408_watkinson/0408_watkinson.html
利用 WebSphere 管理控制臺(tái)配置公共事件基礎(chǔ)架構(gòu)? http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/0504_watkinson/0504_watkinson.html
Websphere 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
異步流程開發(fā):(pick,關(guān)聯(lián)集合)
http://www-128.ibm.com/developerworks/cn/websphere/library/techarticles/lizhi/0501/index.html
調(diào)用流程定義的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");