If the topic is not related to this thread, please let me know the appropriate thread to post.
I have a application where I am using a JBoss cluster. Please let me know how I can have my node interact with a JBoss instance outside this cluster. Interaction like request dispatching to the outside JBoss instance.
You need to provide more information on exactly what you are attempting to do. For example, my first thought on reading your post was that you want to know how to access EJBs or message destinations in the non-clustered server from your clustered servers. Is this what you want?
What method? What server? What mechanism (EJB, messaging, web service, ???)?
Please provide a specific example.
amol l a lekurwale
Ranch Hand
Joined: Oct 16, 2008
Posts: 30
posted
0
Accessing through webservices.
amol l a lekurwale
Ranch Hand
Joined: Oct 16, 2008
Posts: 30
posted
0
Peter, The server is Jboss. A service ( a simple core java class ) runs on a Jboss server which is outside my cluster. My service runs on a server which is a part of cluster. How will my service access the service running outside.
Your service will access the web service on the remote, stand-alone, JBoss server the same way that any other client would access that web service.
You never said which version of JBossAS, so I will assume 4.2.x using JAX-WS web services. You service would need to include the client files generated by wsconsume and use those files to communicate with the web service. One of those files contains the URL used to connect to the remote web service.