Hi,
Need to integrate SAP with JBoss.
Currently the application is using SAP JCO Weblogic specific adapter.
There are some batch jobs which are developed using BEA Weblogic Integration and which use SAP IWay Adapters for Weblogic Platform.
The application is to be migrated to JBoss platform and we are looking for a compatible Adapter for JBoss.
Where can I find a SAP JCA Adapter which can be used with JBOSS?
Also looking for some help in migration of Weblogic Integration Java Process …
[View More]Definition files to JBoss.
Thanks,
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050388#4050388
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050388
[View Less]
Hi,
It looks like the "org.jboss.remoting.transport.http.HTTPMetadataConstants" section in Chapter 5 of the Remoting Guide is somewhat misleading. Unlike the other constants in that section, NO_THROW_ON_ERROR is used only on the client side. It is only after an Exception has been returned from the server that the value of NO_THROW_ON_ERROR is consulted. What you want to do is pass NO_THROW_ON_ERROR as follows:
| Client client = new Client(...);
| client.connect();
| …
[View More]Object param = ... ;
| HashMap metadata = new HashMap();
| metadata.put(HTTPMetadataConstants.NO_THROW_ON_ERROR, "true");
| client.invoke(param, metadata);
|
Sorry for the confusion.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050386#4050386
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050386
[View Less]