Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Deploying to JEE using Java API

Avatar

Level 7

I am trying to use the Java API to deploy application and components with AEM Forms 6.1 but the code that we used previously doesn't seem to be compatible anymore. We copied all the new libraries from the JEE SDK directory and the application compiles fine, but just won't deploy anymore.

http://help.adobe.com/en_US/livecycle/10.0/ProgramLC/WS624e3cba99b79e12e69a9941333732bac8-7fbe.html

For one, the JNI port on JBoss doesn't seem to be 1099 anymore and I can't find what the DSC_DEFAULT_EJB_ENDPOINT actually is to even connect.

Is there updated documentation on this?

1 Accepted Solution

Avatar

Correct answer by
Employee

Please use SOAP endpoint to connect to Forms JEE server. The following properties would need to be setup for your code to work:

Properties connectionProps = new Properties(); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "http://hiro-xp:8080"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss"); // This is optional and does not have any effect while SOAP endpoint connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password"); 

The JBoss instance has been upgraded to 6.2, so the earlier mechanism to connect via EJB no longer works. Connecting via SOAP endpoints does not require application server specific jar files and is not dependent upon EJBs.

View solution in original post

5 Replies

Avatar

Correct answer by
Employee

Please use SOAP endpoint to connect to Forms JEE server. The following properties would need to be setup for your code to work:

Properties connectionProps = new Properties(); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "http://hiro-xp:8080"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss"); // This is optional and does not have any effect while SOAP endpoint connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password"); 

The JBoss instance has been upgraded to 6.2, so the earlier mechanism to connect via EJB no longer works. Connecting via SOAP endpoints does not require application server specific jar files and is not dependent upon EJBs.

Avatar

Level 7

neerava wrote...

Please use SOAP endpoint to connect to Forms JEE server. The following properties would need to be setup for your code to work:

Properties connectionProps = new Properties(); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "http://hiro-xp:8080"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss"); // This is optional and does not have any effect while SOAP endpoint connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator"); connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password"); 

The JBoss instance has been upgraded to 6.2, so the earlier mechanism to connect via EJB no longer works. Connecting via SOAP endpoints does not require application server specific jar files and is not dependent upon EJBs.

 

Do you have any sample code for deploying/undeploying applications and components using SOAP protocol?

Avatar

Employee

The code would remain the same (as you were using earlier). The only change would be in a couple of properties used to setup Service Client Factory.

Avatar

Level 2

I have tried the ejb-mode on jboss with  connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "remote://localhost:4447"). Seems to work on  the OutputClient.