활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
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?
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
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?
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
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.
조회 수
답글
좋아요 수
조회 수
Likes
답글
조회 수
Likes
답글