jeffy

BlogJava 首页 新随笔 联系 聚合 管理
  70 Posts :: 1 Stories :: 14 Comments :: 0 Trackbacks
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/#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 管理控制台配置公共事件基础架构  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

异步流程开发:(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");

posted on 2006-07-29 17:41 Live-in Java 阅读(216) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: