[Installation, Configuration & DEPLOYMENT] - How to disable JBoss Web Services
by kashif_jboss
Hi All,
i am using Latest Jboss 5.0. when i start it i see that it loads Web Services. i dont wnt Jboss to deploy it. i just want it deploy my own spring based J2EE application.
can anyone please tell me that how can i disable JBoss Web Services?
here are logs that shows me that Jboss is loading WebService.
17:42:51,378 INFO [ProfileServiceImpl] Loaded profile: ProfileImpl@199f443{key=org.jboss.profileservice.spi.ProfileKey(a)143b82c3[domain=default,server=default,name=default]}
17:43:00,855 INFO [WebService] Using RMI server codebase: http://192.168.0.86:8083/
17:43:26,110 INFO [NativeServerConfig] JBoss Web Services - Stack Native Core
17:43:26,111 INFO [NativeServerConfig] 3.0.4.SP1
17:44:05,704 INFO [JMXConnectorServerService] JMX Connector server: service:jmx:rmi://192.168.0.86/jndi/rmi://scm-test.pk.vopium.com:1090/jmxconnector
17:44:06,706 INFO [MailService] Mail Service bound to java:/Mail
Thanks in advance.
Regards,
Kashif
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4207592#4207592
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4207592
17 years, 5 months
[EJB 3.0] - Ejb3 - doubts
by rudreshtcs
Hi All,
i have few doubts on ejb3
a)supoose the timer is created for 5min and during that transaction rolled back @ 3rd min(rollback attribute is true), what will happen to timer, will it be recreated on its own? if so what will be the timer expiration, 5min or 2min
b)supoose the timer is created for 5min and suddenly the server crashed @ 3rd min, when server comes up again, what will happen to timer, will it be recreated on own?if so what will be the timer expiration, 5min or 2min
c)i am getting confused with interceptor and listener, is it that interceptor is for Session beans and Message driven beans and listeners are for Entity beans, because both interceptor and listeners can be used for callback (postconstruct, predestroy..). And also listeners have entity object as input param and interceptors have invocation object as input, i am not getting the clear differences and usage as both are for the same purpose, under what circumstances to use the same, seems like the usage can be interchanged
Kindly Clarify
Thanks
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4207583#4207583
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4207583
17 years, 5 months
[Security & JAAS/JBoss] - Re: JAAS problem with LoginModule
by alxt
"Wolfgang Knauf" wrote : please provide full code of your login module (e.g. the base class).
| [/quot]
| public class RolesLoginModule implements LoginModule {
| | private static final Log log = LogFactory.getLog(RolesLoginModule.class);
| | private Subject subject;
| | private CallbackHandler callbackHandler;
| | private Map<String, ?> sharedState;
| | private Map<String, ?> options;
| |
| | public void initialize(Subject subject, CallbackHandler callbackHandler,
| | Map<String, ?> sharedState, Map<String, ?> options)
| | {
| | this.subject = subject;
| | this.callbackHandler = callbackHandler;
| | this.sharedState = sharedState;
| | this.options = options;
| | }
| |
| | public boolean login() throws LoginException {
| | log.error("sharedState.size() = " + sharedState.size()); //0
| | log.error("subject.getPrincipals().size()=" + subject.getPrincipals().size()); //0
| | log.error("options.size() = " + options.size()); //1
| | return true;
| | }
| | public boolean logout() throws LoginException { return true; }
| | public boolean abort() throws LoginException { return true; }
| | public boolean commit() throws LoginException { return true; }
| | }
| |
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4207580#4207580
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4207580
17 years, 5 months