[JBoss-user] [JBossWS] - Invalid WSDL (jsr-181)

2006-04-09 Thread still_aimless
JBoss 4.0.4-CR2 base class: | package test.ws.a; | | public class BaseResponse {} | derived class (notice that it is in a different package): | package test.ws.b; | import test.ws.a.BaseResponse; | public class StandardResponse extends BaseResponse {} | | package test.ws;

[JBoss-user] [Security & JAAS/JBoss] - Re: RMIAdaptor and JAAS

2005-09-24 Thread still_aimless
| env.setProperty(Context.SECURITY_CREDENTIALS, "userName"); | env.setProperty(Context.SECURITY_PRINCIPAL, "1"); | yes, I am a tool :D View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3896801#3896801 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [Security & JAAS/JBoss] - RMIAdaptor and JAAS

2005-09-24 Thread still_aimless
I'm trying to configure JAAS for a remote client calling MBeans via RMIAdaptor server. I'm using DatabaseServerLoginModule for authentication with a DB. This module was tested and works fine for session beans (using LoginContext). Looking through the logs, I can see that the correct security dom

[JBoss-user] [Beginners Corner] - Re: Network performance question

2005-09-23 Thread still_aimless
Actually, it's not as bad as I'd presented in my prior post. Only the first call (which I'm assuming triggers the bean construction step) takes unusually long to complete. Once the stub has been acquired and at least one call made, it's actually very fast. Obviosuly, that warrants some design c

[JBoss-user] [Beginners Corner] - Network performance question

2005-09-22 Thread still_aimless
What sort of round trip times should I expect from a simple call to a stateless echo style bean? Server | @Stateless | @Remote({Echo.class}) | public class EchoBean implements Echo, Serializable { | public String echo(String value) { | return value; | } | } |