[JBoss Tools (users)] - Is there a user guide?
by chip_schoch
I have been using Eclipse 3.1 and the JBossIDE 1.6 for some time now and it has been woeking pretty good. Generally I use the remote debugging to debug my JBoss services, instead of running JBoss within Eclipse.
The 1.6 version has a feature where you set up a deployer so that you can right click the archive and selct deploy to... This feature does not seem to be present in the JBoss Tools. When I go to the Preferences and try to select Deployer, under JBoss Tools, I get a dialog that says "The currently displayed page contains invalid values".
Does this feature no longer work?
Is there a definitive guide somewhere that gives a step-by-step explanation of how to configure Eclipse to debug JBoss services, including redeploying them?
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132249#4132249
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4132249
16 years, 8 months
[Remoting] - Re: About the usage of path in InvokerLocator
by beve
Hi,
sorry for highjacking your post but I have a similar question...
We are using JBossRemoting listeners in the JBossESB. There are both socket listeners and http listeners.
We need to be able to have multiple of these listeners listen to the same host/port combination which we have solved by sharing Connectors and using subsystems to seperate the different listeners. This is so that we don't have to be opening a lot of ports, specially as we have quite a few webservices and more coming.
The issue we are having is that for webservices we need to have a way to determine which subsystem a http request is for.
This is easy when the calling client is a JBR client but not when the request is a http request.
This is what I've been using up until now:
Code from ServerInvoker's invoke(InvocationRequest)
| Map requestPayload = invocation.getRequestPayload();
| if ( subsystem == null && requestPayload != null )
| {
| String path = (String) requestPayload.get( HTTPMetadataConstants.PATH );
| subsystem = path.substring( path.indexOf( '/' ) + 1 );}
| }
|
Is there some way we can achive this by configuration of by using some other class in remoting?
Thanks,
Daniel
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132237#4132237
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4132237
16 years, 8 months