[JBoss Seam] - Re: many-to-many (dynamically shown) on same JSF page
by rhinosystemsinc
I'd like some help with how the JSF dataTable
and single/multi selects are setup and how to setup
the SLSB to handle the SAVE on this scenario.
Here are the objects and tables roughed in .
public class Person
{
String FNAME="";
List preferences=null;
@ManyToMany
@JoinTable (name="Person_SysPref"
joinColumns=@JoinColumn(name="PERSON_ID"),
inverseJoinColumns=@JoinColumn(name="PREF_ID"))
public List getPreferences()
{
return preferences;
}
... w/ getters and setters
}
public class Pref
{
String name="";
String selected="";
String group="";
... w/ getters and setters
}
~ tables ~
create table Person
(
PERSON_ID number primary key, -- surrogate generated key by person_seq sequence
FNAME varchar2(30)
);
create table SysPref
(
SYSPREF_ID number primary key, -- surrogate generated key by SysPref_seq sequence
NAME varchar2(30),
GRP varchar2(20)
);
create table Person_SysPref
(
PERSON_SYSPREF_ID number primary key,
SYSPREF_ID number, --fk to SysPref
PERSON_ID number -- fk to Person table
selected char(1)
);
The front end :
a create form to input the Person.FNAME
and on same form a list of Pref options (derived directly from the SysPrefs table).
Once I hit the "SAVE" button (it is bound to SLSB, not shown here), the Person will be CREATED, and then I loop though all the "preferences" store all of them in the Person_SysPref table, with selected flag for that Person.
The concept of "injecting" the Person object into a SLSB is clear from samples,but how do I get the list of Preferences (available from the SysPrefs)? And then once I have Person object existing, how do I associate this list of Prefs directly with the Person.preferences instead of the SysPrefs?
One last thing - on the UI, I'd like to be able to group the preferences by the GRP value - for example,
colors: (single select radio buttons)
red
green
blue
size: (single select radio buttons)
small
med
lg
Favorite Sports: (multiselect check boxes)
hiking
biking
running
If you can give me some general direction or even code examples. on this, I'd really appreciate it.
Thanks again!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039385#4039385
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039385
19 years
[JBoss Portal] - Trouble creating user on the fly programatically
by david.hoffman
Using: jboss-portal-2.6-BETA1-bundled, configured to use MySQL as the datastore
I have a custom auth module that authenticates a user against Active Directory Server and drops a user into roles that are derived from ADS attributes.
Upon successful authentication, as long as a user exists in the jbp_users table, I am able to log in successfully.
However, if the user does not already exist in the jbp_users table, the following error occurs:
| HTTP Status 500 -
|
| --------------------------------------------------------------------------------
|
| type Exception report
|
| message
|
| description The server encountered an internal error () that prevented it from fulfilling this request.
|
| exception
|
| javax.servlet.ServletException
| org.jboss.portal.server.servlet.PortalServlet.service(PortalServlet.java:407)
| javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
|
|
| root cause
|
| java.lang.NullPointerException
| org.jboss.portal.core.aspects.controller.PageCustomizerInterceptor.injectDashboardNav(PageCustomizerInterceptor.java:192)
|
| { snip }
|
| org.jboss.portal.common.invocation.Invocation.invoke(Invocation.java:157)
| org.jboss.portal.server.servlet.PortalServlet.service(PortalServlet.java:381)
| javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
|
|
|
I have made the following attempt to create the user on the fly:
| try {
| UserModule userModule = (UserModule) new InitialContext().lookup("java:portal/UserModule");
| User user = null;
| try{
| user = userModule.findUserByUserName("username");
| } catch (IdentityException nsue) {
| //User Does Not Exist, so we need to create
| try {
| user = userModule.createUser("username", "password");
| } catch (IdentityException ie) {
| //This should not happen
| log.error("Error creating user", ie);
| }
| }
|
| try {
| UserProfileModule userProfileModule = (UserProfileModule) new InitialContext().lookup("java:portal/UserProfileModule");
| userProfileModule.setProperty(user, User.INFO_USER_EMAIL_REAL, new StringBuffer("username").append("@email.com"));
| userProfileModule.setProperty(user, User.INFO_USER_ENABLED, true);
| userProfileModule.setProperty(user, User.INFO_USER_VIEW_EMAIL_VIEW_REAL, true);
| userProfileModule.setProperty(user, User.INFO_USER_NAME_FAMILY, lastName);
| userProfileModule.setProperty(user, User.INFO_USER_NAME_GIVEN, firstName);
| } catch (IdentityException ie) {
| log.error("Unable to update identity.", ie);
| }
|
| } catch (NamingException e) {
| log.error("Error in Create UserModule", e);
| }
|
|
When I execute this code, the following exception is thrown in the logs:
| 2007-04-20 12:56:07,656 ERROR [com.workscape.auth.modules.ads.ADSAuth] Error creating user
| org.jboss.portal.identity.IdentityException: Cannot create user username
| at org.jboss.portal.identity.db.HibernateUserModuleImpl.createUser(HibernateUserModuleImpl.java:179)
| at com.workscape.auth.modules.ads.ADSAuth.createLdapInitContext(ADSAuth.java:233)
| at com.workscape.auth.modules.ads.ADSAuth.validatePassword(ADSAuth.java:137)
| at org.jboss.security.auth.spi.UsernamePasswordLoginModule.login(UsernamePasswordLoginModule.java:210)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
| at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
| at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
| at java.security.AccessController.doPrivileged(Native Method)
| at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
| at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
| at org.jboss.security.plugins.JaasSecurityManager.defaultLogin(JaasSecurityManager.java:601)
| at org.jboss.security.plugins.JaasSecurityManager.authenticate(JaasSecurityManager.java:535)
| at org.jboss.security.plugins.JaasSecurityManager.isValid(JaasSecurityManager.java:344)
| at org.jboss.web.tomcat.security.JBossSecurityMgrRealm.authenticate(JBossSecurityMgrRealm.java:491)
| at org.apache.catalina.authenticator.FormAuthenticator.authenticate(FormAuthenticator.java:257)
| at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:416)
| at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
| at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: org.hibernate.HibernateException: Unable to locate current JTA transaction
| at org.hibernate.context.JTASessionContext.currentSession(JTASessionContext.java:61)
| at org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:542)
| at org.jboss.portal.identity.db.HibernateUserModuleImpl.getCurrentSession(HibernateUserModuleImpl.java:291)
| at org.jboss.portal.identity.db.HibernateUserModuleImpl.createUser(HibernateUserModuleImpl.java:167)
| ... 30 more
|
|
It looks as if there might be some sort of configuration issue, or perhaps some preperatory coding, that I have missed because the error message states that it is "Caused by: org.hibernate.HibernateException: Unable to locate current JTA transaction"
If there is any additional information required to help resolve this issue, please let me know and I will attach it to this thread.
Thank you in advance for any assistance in this matter.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039384#4039384
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039384
19 years
[Persistence, JBoss/CMP, Hibernate, Database] - Query with Order By Statement fails with EJBException:Nullpo
by astamm007
I have a simple query and got into trouble if I add an order by statement (where condition is not used).
Without the order statement everything works fine. What can happen, that an order by statement causes the EJBException:Nullpointerexception occurs?
I use JBoss VM 4.0 Eclipse Plug-In and Hypersonic Database.
Here is the code snippet..
@SuppressWarnings("unchecked")
public List getTaskEntryForAdministration(String Worker, String Projekt) {
try {
String querystr = "";
String Filter = "";
if (!Worker.equals(""))
Filter = Filter +" where worker.name='"+Worker+"'";
if (!Projekt.equals("")){
if (Filter.equals(""))
Filter = Filter +" where task.project.project_name='"+Projekt+"'";
else
Filter = Filter +" and task.project.project_name='"+Projekt+"'";
}
String OrderBy = new String(" order by worker.name,task.project.project_name,task.task_name,start_time,end_time");
querystr = "from TaskEntry"+ Filter + OrderBy;
List TaskEntryList = null;
Query query = this.entityManager.createQuery(querystr);
if (query!=null){
TaskEntryList = query.getResultList();
}
return TaskEntryList;
} catch (EJBException e) {
e.printStackTrace();
if (e.getCause() == null) e.initCause(e.getCausedByException());
throw e;
}
}
cheers
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039380#4039380
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039380
19 years
[Installation, Configuration & Deployment] - suspious error when starting JBoss
by astamm007
When starting JBoss-Server inside Eclipse (Debug-mode) the following exception occurs:
Thread [main] (Suspended (exception NullPointerException))
Properties$LineReader.readLine() line: not available
PropertyMap(Properties).load(InputStream) line: not available
Main.(String) line: 120
NamingService.() line: 75
NativeConstructorAccessorImpl.newInstance0(Constructor, Object[]) line: not available [native
method]
NativeConstructorAccessorImpl.newInstance(Object[]) line: not available
DelegatingConstructorAccessorImpl.newInstance(Object[]) line: not available
Constructor.newInstance(Object...) line: not available
MBeanServerImpl.instantiate(String, ClassLoader, Object[], String[]) line: 1233
MBeanServerImpl.instantiate(String, ObjectName, Object[], String[]) line: 286
ServiceCreator.install(ObjectName, ObjectName, Element) line: 193
ServiceConfigurator.internalInstall(Element, List, ObjectName, boolean) line: 449
ServiceConfigurator.install(Element, ObjectName) line: 171
ServiceController.install(Element, ObjectName) line: 226
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
Invocation.invoke() line: 86
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy4.install(Element, ObjectName) line: not available
SARDeployer.create(DeploymentInfo) line: 249
MainDeployer.create(DeploymentInfo) line: 969
MainDeployer.deploy(DeploymentInfo) line: 818
MainDeployer.deploy(URL) line: 782
MainDeployer.deploy(String) line: 766
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy5.deploy(String) line: not available
ServerImpl.doStart() line: 482
ServerImpl.start() line: 362
Main.boot(String[]) line: 200
Main$1.run() line: 490
Thread.run() line: not available
After clicking Resume the next exception follows:
Thread [main] (Suspended (exception NullPointerException))
SARDeployer.parseDocument(DeploymentInfo) line: 634
SARDeployer.init(DeploymentInfo) line: 181
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy41.init(DeploymentInfo) line: not available
XSLSubDeployer.init(DeploymentInfo) line: 187
MainDeployer.init(DeploymentInfo) line: 872
MainDeployer.deploy(DeploymentInfo) line: 809
MainDeployer.deploy(URL) line: 782
GeneratedMethodAccessor17.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy8.deploy(URL) line: not available
URLDeploymentScanner.deploy(URLDeploymentScanner$DeployedURL) line: 421
URLDeploymentScanner.scan() line: 634
AbstractDeploymentScanner$ScannerThread.doScan() line: 263
URLDeploymentScanner(AbstractDeploymentScanner).startService() line: 336
URLDeploymentScanner(ServiceMBeanSupport).jbossInternalStart() line: 289
URLDeploymentScanner(ServiceMBeanSupport).jbossInternalLifecycle(String) line: 245
GeneratedMethodAccessor2.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
Invocation.invoke() line: 86
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
ServiceController$ServiceProxy.invoke(Object, Method, Object[]) line: 978
$Proxy0.start() line: not available
ServiceController.start(ObjectName) line: 417
GeneratedMethodAccessor9.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
Invocation.invoke() line: 86
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy4.start(ObjectName) line: not available
SARDeployer.start(DeploymentInfo) line: 302
MainDeployer.start(DeploymentInfo) line: 1025
MainDeployer.deploy(DeploymentInfo) line: 819
MainDeployer.deploy(URL) line: 782
MainDeployer.deploy(String) line: 766
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy5.deploy(String) line: not available
ServerImpl.doStart() line: 482
ServerImpl.start() line: 362
Main.boot(String[]) line: 200
Main$1.run() line: 490
Thread.run() line: not available
and another error..
Thread [main] (Suspended (exception NullPointerException))
SARDeployer.parseDocument(DeploymentInfo) line: 634
SARDeployer.init(DeploymentInfo) line: 181
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy41.init(DeploymentInfo) line: not available
XSLSubDeployer.init(DeploymentInfo) line: 187
MainDeployer.init(DeploymentInfo) line: 872
MainDeployer.deploy(DeploymentInfo) line: 809
MainDeployer.deploy(URL) line: 782
GeneratedMethodAccessor17.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy8.deploy(URL) line: not available
URLDeploymentScanner.deploy(URLDeploymentScanner$DeployedURL) line: 421
URLDeploymentScanner.scan() line: 634
AbstractDeploymentScanner$ScannerThread.doScan() line: 263
URLDeploymentScanner(AbstractDeploymentScanner).startService() line: 336
URLDeploymentScanner(ServiceMBeanSupport).jbossInternalStart() line: 289
URLDeploymentScanner(ServiceMBeanSupport).jbossInternalLifecycle(String) line: 245
GeneratedMethodAccessor2.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
Invocation.invoke() line: 86
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
ServiceController$ServiceProxy.invoke(Object, Method, Object[]) line: 978
$Proxy0.start() line: not available
ServiceController.start(ObjectName) line: 417
GeneratedMethodAccessor9.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
Invocation.invoke() line: 86
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy4.start(ObjectName) line: not available
SARDeployer.start(DeploymentInfo) line: 302
MainDeployer.start(DeploymentInfo) line: 1025
MainDeployer.deploy(DeploymentInfo) line: 819
MainDeployer.deploy(URL) line: 782
MainDeployer.deploy(String) line: 766
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: not available
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: not available
Method.invoke(Object, Object...) line: not available
ReflectedDispatcher.invoke(Invocation) line: 155
Invocation.dispatch() line: 94
NullInterceptor(AbstractInterceptor).invoke(Invocation) line: 133
Invocation.invoke() line: 88
ModelMBeanOperationInterceptor.invoke(Invocation) line: 142
Invocation.invoke() line: 88
XMBean(AbstractMBeanInvoker).invoke(String, Object[], String[]) line: 264
MBeanServerImpl.invoke(ObjectName, String, Object[], String[]) line: 659
MBeanProxyExt.invoke(Object, Method, Object[]) line: 210
$Proxy5.deploy(String) line: not available
ServerImpl.doStart() line: 482
ServerImpl.start() line: 362
Main.boot(String[]) line: 200
Main$1.run() line: 490
Thread.run() line: not available
The server is starting anyway and seems to work. But I dont know whats wrong. Can anybody tell me what I
can do to avoid this?
My console only shows INFO output. How can I change settings for more detailed debug output?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039374#4039374
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039374
19 years