[JBoss Seam] - Re: Example: OneToMany & Composite Key
by umk
"petemuir" wrote : All of the examples in the seam distribtution work - or do you want a specific example?
|
| Show the entity that is producing the error - perhaps someone can help you :)
Yes, I'm looking for a specific example: one that shows use of a Composite Primary key - as the order example in the Java EE tutorial does.
Here's some code that produces the above duplicate column insert errors (seam 1.2.1 GA). In this instance, the recordId column is duplicated:
| package com.mydomain.selfEnroll;
|
| import java.io.Serializable;
| import java.util.Calendar;
| import java.util.Collection;
| import java.util.Date;
|
| import javax.persistence.CascadeType;
| import javax.persistence.Entity;
| import javax.persistence.GeneratedValue;
| import javax.persistence.GenerationType;
| import javax.persistence.Id;
| import javax.persistence.OneToMany;
| import javax.persistence.SequenceGenerator;
| import javax.persistence.Table;
| import javax.persistence.Temporal;
| import javax.persistence.TemporalType;
|
| import org.hibernate.validator.NotNull;
| import org.jboss.seam.ScopeType;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Scope;
|
| @Entity
| @Scope(ScopeType.CONVERSATION)
| @Name("record")
| @Table(name = "RECORD")
| @SequenceGenerator(name = "recordGen", allocationSize = 1, sequenceName = "RECORD_SEQ")
| public class Record implements Serializable {
| private Long recordId;
|
| private Date eventDate;
|
| private Byte memberDiabetes;
|
| private Byte familyDiabetes;
|
| private Byte weight;
|
| private Byte waist;
|
| private Collection<RecordData> recordData;
|
| public Record() {
| eventDate = Calendar.getInstance().getTime();
| }
|
| @NotNull
| @Temporal(TemporalType.DATE)
| public Date getEventDate() {
| return eventDate;
| }
|
| public void setEventDate(Date eventDate) {
| this.eventDate = eventDate;
| }
|
| public Byte getFamilyDiabetes() {
| return familyDiabetes;
| }
|
| public void setFamilyDiabetes(Byte familyDiabetes) {
| this.familyDiabetes = familyDiabetes;
| }
|
| public Byte getMemberDiabetes() {
| return memberDiabetes;
| }
|
| public void setMemberDiabetes(Byte memberDiabetes) {
| this.memberDiabetes = memberDiabetes;
| }
|
| @Id
| @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "recordGen")
| public Long getRecordId() {
| return recordId;
| }
|
| public void setRecordId(Long recordId) {
| this.recordId = recordId;
| }
|
| public Byte getWaist() {
| return waist;
| }
|
| public void setWaist(Byte waist) {
| this.waist = waist;
| }
|
| public Byte getWeight() {
| return weight;
| }
|
| public void setWeight(Byte weight) {
| this.weight = weight;
| }
|
| @OneToMany(cascade = CascadeType.ALL, mappedBy = "record")
| public Collection<RecordData> getRecordData() {
| return recordData;
| }
|
| public void setRecordData(Collection<RecordData> recordData) {
| this.recordData = recordData;
| }
| }
|
| package com.mydomain.selfEnroll;
|
| import java.io.Serializable;
|
| import javax.persistence.Column;
| import javax.persistence.Entity;
| import javax.persistence.Id;
| import javax.persistence.IdClass;
| import javax.persistence.JoinColumn;
| import javax.persistence.ManyToOne;
| import javax.persistence.SequenceGenerator;
| import javax.persistence.Table;
|
| import org.jboss.seam.ScopeType;
| import org.jboss.seam.annotations.Name;
| import org.jboss.seam.annotations.Scope;
|
| @IdClass(RecordDataKey.class)
| @Entity
| @Scope(ScopeType.CONVERSATION)
| @Name("recordData")
| @Table(name = "RECORD_DATA")
| @SequenceGenerator(name = "recordGen", allocationSize = 1, sequenceName = "RECORD_SEQ")
| public class RecordData implements Serializable {
| private Long recordId;
|
| private Long biomarkerId;
|
| private Double value;
|
| private Record record;
|
| @ManyToOne
| @JoinColumn(name = "RECORDID")
| public Record getRecord() {
| return record;
| }
|
| public void setRecord(Record record) {
| this.record = record;
| }
|
| public RecordData() {
| }
|
| @Id
| @Column(name = "RECORDID", nullable = false, insertable = false, updatable = false)
| public Long getRecordId() {
| return recordId;
| }
|
| public void setRecordId(Long recordId) {
| this.recordId = recordId;
| }
|
| @Id
| public Long getBiomarkerId() {
| return biomarkerId;
| }
|
| public void setBiomarkerId(Long biomarkerId) {
| this.biomarkerId = biomarkerId;
| }
|
| public Double getValue() {
| return value;
| }
|
| public void setValue(Double value) {
| this.value = value;
| }
|
| }
|
| package com.mydomain.selfEnroll;
|
| import java.io.Serializable;
|
| public final class RecordDataKey implements Serializable {
|
| public Long recordId;
|
| public Long biomarkerId;
|
| public RecordDataKey() {
| }
|
| public RecordDataKey(Long recordPk, Long biomarkerPk) {
| this.recordId = recordPk;
| this.biomarkerId = biomarkerPk;
| }
|
| public boolean equals(Object otherOb) {
| if (this == otherOb) {
| return true;
| }
| if (!(otherOb instanceof RecordDataKey)) {
| return false;
| }
| RecordDataKey other = (RecordDataKey) otherOb;
| return ((recordId == null ? other.recordId == null : recordId
| .equals(other.recordId)) && (biomarkerId == other.biomarkerId));
| }
|
| public int hashCode() {
| return ((recordId == null ? 0 : recordId.hashCode()) ^ ((int) biomarkerId
| .longValue() >>> 32));
| }
|
| public String toString() {
| return "" + recordId + "-" + biomarkerId;
| }
|
| public Long getBiomarkerId() {
| return biomarkerId;
| }
|
| public void setBiomarkerId(Long biomarkerId) {
| this.biomarkerId = biomarkerId;
| }
|
| public Long getRecordId() {
| return recordId;
| }
|
| public void setRecordId(Long recordId) {
| this.recordId = recordId;
| }
| }
|
| ...
| // code that invokes above entities to produce the problem
| Collection<RecordData> biomarkers = new ArrayList<RecordData>(1);
| RecordData biomarker = new RecordData();
| biomarker.setBiomarkerId(99L);
| biomarker.setValue(myRecord.getMemberDiabetes().doubleValue());
| biomarkers.add(biomarker);
| myRecord.setRecordData(biomarkers);
|
| em.persist(myRecord);
| ...
|
Thank you.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041641#4041641
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041641
17 years, 8 months
[JBoss Portal] - There is an error message when shutdown
by empty11
Dear.
There is an error message when shutdown as below.
22:37:09,468 WARN [JBossServiceModelMBean$ServiceMixin] Stopping failed JBossServiceModelMBean$ServiceMixin
java.lang.NullPointerException
at org.jboss.portal.portlet.impl.container.PortletApplicationContextImpl.stopPortletApplication(PortletApplicationContextImpl.java:136)
at org.jboss.portal.portlet.deployment.jboss.PortletAppDeployment.destroy(PortletAppDeployment.java:238)
at org.jboss.portal.server.deployment.jboss.DeploymentContext.destroy(DeploymentContext.java:125)
at org.jboss.portal.server.deployment.jboss.PortalDeploymentInfoContext.remove(PortalDeploymentInfoContext.java:119)
at org.jboss.portal.server.deployment.jboss.ServerDeployer.unregisterFactory(ServerDeployer.java:157)
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 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy138.unregisterFactory(Unknown Source)
at org.jboss.portal.server.deployment.jboss.AbstractDeploymentFactory.unregisterFactory(AbstractDeploymentFactory.java:127)
at org.jboss.portal.server.deployment.jboss.AbstractDeploymentFactory.stop(AbstractDeploymentFactory.java:161)
at org.jboss.portal.portlet.deployment.jboss.PortletAppDeploymentFactory.stop(PortletAppDeploymentFactory.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 org.jboss.portal.jems.as.system.JBossServiceModelMBean$ServiceMixin.execute(JBossServiceModelMBean.java:428)
at org.jboss.portal.jems.as.system.JBossServiceModelMBean$ServiceMixin.stopService(JBossServiceModelMBean.java:399)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStop(ServiceMBeanSupport.java:315)
at org.jboss.system.ServiceMBeanSupport.stop(ServiceMBeanSupport.java:206)
at org.jboss.portal.jems.as.system.JBossServiceModelMBean$6.invoke(JBossServiceModelMBean.java:327)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:995)
at $Proxy0.stop(Unknown Source)
at org.jboss.system.ServiceController.stop(ServiceController.java:508)
at org.jboss.system.ServiceController.stop(ServiceController.java:499)
at org.jboss.system.ServiceController.stop(ServiceController.java:499)
at org.jboss.system.ServiceController.stop(ServiceController.java:499)
at org.jboss.system.ServiceController.stop(ServiceController.java:499)
at org.jboss.system.ServiceController.stop(ServiceController.java:499)
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 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy4.stop(Unknown Source)
at org.jboss.deployment.SARDeployer.stop(SARDeployer.java:336)
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 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy163.stop(Unknown Source)
at org.jboss.deployment.XSLSubDeployer.stop(XSLSubDeployer.java:202)
at org.jboss.deployment.MainDeployer.stop(MainDeployer.java:667)
at org.jboss.deployment.MainDeployer.undeploy(MainDeployer.java:638)
at org.jboss.deployment.MainDeployer.shutdown(MainDeployer.java:516)
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 org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.system.server.ServerImpl$ShutdownHook.shutdownDeployments(ServerImpl.java:1050)
at org.jboss.system.server.ServerImpl$ShutdownHook.shutdown(ServerImpl.java:1025)
at org.jboss.system.server.ServerImpl$ShutdownHook.run(ServerImpl.java:988)
22:37:09,484 INFO [SessionFactoryImpl] closing
let me know how to fix it.
Regards
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041639#4041639
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041639
17 years, 8 months
[JBoss Portal] - Error message on clicking to the admin page
by empty11
Dear
When I click the admin page, there are error message on the message console as below.
2007-04-28 22:16:18,750 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12692portal-wsrp.jse-contents/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
2007-04-28 22:16:18,796 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12670jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
2007-04-28 22:16:18,812 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12692portal-wsrp.jse-contents/lib/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
2007-04-28 22:16:18,812 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12692portal-wsrp.jse-contents/lib/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
2007-04-28 22:16:18,890 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12670jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
2007-04-28 22:16:18,890 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12670jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
2007-04-28 22:16:18,906 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12672portal-faces-lib.jar!/META-INF/portal.taglib.xml
2007-04-28 22:16:18,906 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12670jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
2007-04-28 22:16:18,921 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12692portal-wsrp.jse-contents/lib/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
2007-04-28 22:16:18,921 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
Added Library from: jar:file:/E:/Utils/JBoss/07.Portal/jboss-portal-2.6-CR1-bundled/jboss-portal-2.6-CR1/server/default/tmp/deploy/tmp12670jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
2007-04-28 22:16:18,921 ERROR [STDERR] 2007. 4. 28 PM 10:16:18 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
How do I fix it?
Regards
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041637#4041637
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041637
17 years, 8 months
[Security & JAAS/JBoss] - Error registering jboss.web:type=ProtocolHandler, port=28080,
by mallickcs
I have written Mbean , which makes a client RMI connection to external application . This bean is configured in the conf/jboss-service.xml so when the jboss is started during the start of my bean i get following error. Can anyone please tell me how to fix this problem.
17:17:07,312 ERROR [Registry] Error registering jboss.web:type=ProtocolHandler,port=28080,address=%2F0.0.0.0
java.lang.SecurityException: MBeanTrustPermission(register) not implied by protection domain of mbean class: org.apache.commons.modeler.BaseModelMBean, pd: ProtectionDomain (file:/opt/jboss-4.0.5.GA/server/coam/tmp/deploy/tmp61685commons-modeler.jar <no signer certificates>)
org.jboss.mx.loading.UnifiedClassLoader3@1c8fb4b{ url=file:/opt/jboss-4.0.5.GA/server/coam/deploy/jbossweb-tomcat55.sar/ ,addedOrder=9}
<no principals>
java.security.Permissions@cfb11f (
(java.net.SocketPermission localhost:1024- listen,resolve)
(java.net.SocketPermission localhost:1024- listen,resolve)
(java.util.PropertyPermission java.version read)
(java.util.PropertyPermission java.vm.name read)
(java.util.PropertyPermission java.vm.vendor read)
(java.util.PropertyPermission os.name read)
(java.util.PropertyPermission java.vendor.url read)
(java.util.PropertyPermission java.vm.specification.vendor read)
(java.util.PropertyPermission os.version read)
(java.util.PropertyPermission java.specification.vendor read)
(java.util.PropertyPermission java.class.version read)
(java.util.PropertyPermission java.specification.name read)
(java.util.PropertyPermission file.separator read)
(java.util.PropertyPermission os.arch read)
(java.util.PropertyPermission java.vm.version read)
(java.util.PropertyPermission java.vendor read)
(java.util.PropertyPermission java.specification.version read)
(java.util.PropertyPermission java.vm.specification.version read)
(java.util.PropertyPermission java.vm.specification.name read)
(java.util.PropertyPermission path.separator read)
(java.util.PropertyPermission line.separator read)
(java.lang.RuntimePermission stopThread)
(java.io.FilePermission /opt/jboss-4.0.5.GA/server/coam/tmp/deploy/tmp61685commons-modeler.jar read)
(java.io.FilePermission /opt/jboss-4.0.5.GA/server/coam/deploy/jbossweb-tomcat55.sar read)
)
at org.jboss.mx.server.MBeanServerImpl.registerMBean(MBeanServerImpl.java:1398)
at org.jboss.mx.server.MBeanServerImpl.registerMBean(MBeanServerImpl.java:376)
at org.apache.commons.modeler.Registry.registerComponent(Registry.java:871)
at org.apache.catalina.connector.Connector.start(Connector.java:1076)
at org.jboss.web.tomcat.tc5.Tomcat5.startConnectors(Tomcat5.java:590)
at org.jboss.web.tomcat.tc5.Tomcat5.handleNotification(Tomcat5.java:627)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.notification.NotificationListenerProxy.invoke(NotificationListenerProxy.java:153)
at $Proxy41.handleNotification(Unknown Source)
at org.jboss.mx.util.JBossNotificationBroadcasterSupport.handleNotification(JBossNotificationBroadcasterSupport.java:127)
at org.jboss.mx.util.JBossNotificationBroadcasterSupport.sendNotification(JBossNotificationBroadcasterSupport.java:108)
at org.jboss.system.server.ServerImpl.sendNotification(ServerImpl.java:908)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:497)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
at org.jboss.Main.boot(Main.java:200)
at org.jboss.Main$1.run(Main.java:490)
at java.lang.Thread.run(Thread.java:595)
17:17:07,314 ERROR [Connector] Protocol JMX registration failed
......
thanks in advance
Mallick
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041634#4041634
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041634
17 years, 8 months