[JBoss jBPM] - Re: In-process HSQLDB
by ayang
The hsqldb-ds.xml file included in the starter kit includes a commented-out line to set up the in-memory database:
<connection-url>jdbc:hsqldb:.</connection-url>
But I also did try replacing it with:
<connection-url>jdbc:hsqldb:mem:.</connection-url>
Both seem to work in terms of creating an HSQL instance. I assume it's in-memory because I don't think I can connect to it using the HSQL management client.
However, my problem is that I don't know how to initialize this environment once it does get started.
None of the tables are populated with the demo data, and without the client, I'm not sure I can manually insert or run scripts. I'm not even sure the jBPM tables have been created: during JBoss startup, all of the tables are reported as "not found" but I'm not sure if they've been created or not as part of startup.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968639#3968639
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968639
18 years, 4 months
[JBoss Seam] - ActiveX with JSF and Seam
by c_eric_ray
Does anyone know if ActiveX controls will work normally within a JSF/Seam environment. I mainly ask because I've had problems with javascript not getting through the Facelets compiler.
The Facelets compiler doesn't like things like && or || or <=. I have to remove the <!-- --> comment tags from the javascript tags because the Facelets compiler removes everything withing comments.
So, I'm wondering if there is anything funky like that with ActiveX. I've never programmed an ActiveX component so I'm pretty clueless about how they work. I want to make sure this is technically feasible before I go down the long road of learning how to write and ActiveX control.
Thanks.
Eric Ray
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968636#3968636
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968636
18 years, 4 months
[JBoss Portal] - Re: How to do virutal hosts with JBoss Portal
by dhartford
If you have multiple virtual hosts pointing to different jboss portals sharing the same db/content, I could see where you want to push support for virtual hosting on the App server side.
However, I don't understand that if the portals have different db/content, why a front-facing Apache is not an acceptable solution. I would think in most cases you want Apache in front of the App server anyway, regardless if using virtual hosting or not. An App server is great at handling dynamic web content and 'application' stuff. Apache does well interfacing on the network-level with DNS/virtual hosting, proxy, redirect/re-writes, etc. Use both their strengths.
I would be concerned about putting a lot of jboss's time into developing a app-server based virtual hosting solution which would be a workaround/patch on the app server to replicate what already exists (and more efficiently) on Apache.
I just want to see Jboss Portal 2.6 as soon as possible, too, so a little biased ;-)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968634#3968634
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968634
18 years, 4 months
[JNDI/Naming/Network] - Re: Lookup Failure with HA-JNDI
by bernd.koecke
Hi,
for all who may be interested, we found the reason for the described behaviour:
The problem was, that there were two clusters with different multicast addresse etc., but the same partition name. And both cluster were accessed from the same client for different services. When we installed these clusters, we looked only at the cluster nodes, that only the nodes of one cluster talked to each other. But here the problem happens on the client. If a client connects to more than one cluster, theses clusters must have distinct partition names. I think this is noted somewhere in the docs, but I don't remember an explanation why the partition names must be distinct, when the servernames and multicast addresses are distinct.
Some details:
The HA-JNDI client has an internal cache for the connection data. There is more than one stage for accessing this cache at jndi lookup time. The first stage maps the cluster nodes servername to an internal object instance. This instance has a static map (a class field) in which the partition name is the key for getting the connection object. All jndi lookups on the client share this static map with the partition names as key. The result is that the last jndi lookup will overwrite the internal connection data of the first one. And all lookups two the first cluster are internaly mapped two the second. And so every lookup to a service on the first cluster gets a NameNotFoundException after the first successful lookup to the second cluster.
Best regards,
Bernd
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968633#3968633
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968633
18 years, 4 months
[JBoss Portal] - JBoss Portal JMX Issues - Published Attributes Should Not Be
by louth
It looks like some of the JMX attributes associated with the Portal MBeans are expected to be called during portal request processing and not by a JMX console. The following stack traces appear in our log files when performing an inventory on the runtime state of the MBeanServer and registered MBeans. The same errors also occur when trying to use the JBoss Web Console to access the same attributes.
15:53:07,385 ERROR [ServiceObjectFactory] Cannot create service
org.jboss.ws.metadata.wsdl.WSDLException: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.getDocument(WSDLDefinitionsFactory.java:198)
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:106)
at org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273)
at org.jboss.ws.metadata.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:106)
at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:112)
at org.jboss.ws.jaxrpc.ServiceObjectFactory.getObjectInstance(ServiceObjectFactory.java:182)
at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
at org.jnp.interfaces.NamingContext.getObjectInstance(NamingContext.java:1125)
at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(NamingContext.java:1142)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:705)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(Unknown Source)
at org.jboss.portal.wsrp.services.AbstractJNDIServiceFactory.getService(AbstractJNDIServiceFactory.java:121)
at org.jboss.portal.wsrp.services.AbstractSOAPServiceFactory.getService(AbstractSOAPServiceFactory.java:84)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getService(WSRPConsumerImpl.java:476)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getServiceDescriptionService(WSRPConsumerImpl.java:452)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getServiceDescriptionAndRegisterIfNeeded(WSRPConsumerImpl.java:494)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.updateCachesIfNeeded(WSRPConsumerImpl.java:361)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getPortletMap(WSRPConsumerImpl.java:275)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getPortlets(WSRPConsumerImpl.java:141)
at org.jboss.portal.federation.impl.FederatedPortletInvokerService.getPortlets(FederatedPortletInvokerService.java:77)
at org.jboss.portal.federation.impl.FederatingPortletInvokerService.getPortlets(FederatingPortletInvokerService.java:117)
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.AttributeDispatcher.invoke(AttributeDispatcher.java:99)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:197)
at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:76)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.getAttribute(AbstractMBeanInvoker.java:362)
at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:556)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:140)
at $Proxy67.getPortlets(Unknown Source)
at org.jboss.portal.portlet.test.TestPortletInvoker.getPortlets(TestPortletInvoker.java:110)
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.AttributeDispatcher.invoke(AttributeDispatcher.java:99)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:197)
at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:76)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.getAttribute(AbstractMBeanInvoker.java:362)
at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:556)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.attributeinfo(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.mbeanserver(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.collect(Unknown Source)
at com.jinspired.jdbinsight.server.profiler.BasicProfiler.getRepositoryModel(Unknown Source)
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 com.jinspired.jdbinsight.server.profiler.DefaultDispatcher.dispatch(Unknown Source)
at com.jinspired.jdbinsight.common.net.invocation.RequestHandler.service(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.ServiceHandler.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handleEvents(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor$Worker.run(Unknown Source)
at java.lang.Thread.run(Thread.java:613)
Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1149)
at java.net.URL.openStream(URL.java:1007)
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.getDocument(WSDLDefinitionsFactory.java:181)
... 67 more
15:53:07,397 WARN [FederatingPortletInvokerService] PortletInvoker with id: self is not available.
Reason: Problem getting service description for producer self
Caused by:
javax.naming.NamingException: Could not dereference object [Root exception is org.jboss.ws.metadata.wsdl.WSDLException: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl]
15:53:07,576 ERROR [UserModuleImpl] Cannot count users
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:541)
at org.jboss.portal.identity.db.UserModuleImpl.getCurrentSession(UserModuleImpl.java:327)
at org.jboss.portal.identity.db.UserModuleImpl.getUserCount(UserModuleImpl.java:304)
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.AttributeDispatcher.invoke(AttributeDispatcher.java:99)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:197)
at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:76)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.getAttribute(AbstractMBeanInvoker.java:362)
at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:556)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.attributeinfo(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.mbeanserver(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.collect(Unknown Source)
at com.jinspired.jdbinsight.server.profiler.BasicProfiler.getRepositoryModel(Unknown Source)
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 com.jinspired.jdbinsight.server.profiler.DefaultDispatcher.dispatch(Unknown Source)
at com.jinspired.jdbinsight.common.net.invocation.RequestHandler.service(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.ServiceHandler.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handleEvents(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor$Worker.run(Unknown Source)
at java.lang.Thread.run(Thread.java:613)
15:53:07,729 ERROR [RoleModuleImpl] Cannot count roles
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:541)
at org.jboss.portal.identity.db.RoleModuleImpl.getCurrentSession(RoleModuleImpl.java:416)
at org.jboss.portal.identity.db.RoleModuleImpl.getRolesCount(RoleModuleImpl.java:286)
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.AttributeDispatcher.invoke(AttributeDispatcher.java:99)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:197)
at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:76)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.getAttribute(AbstractMBeanInvoker.java:362)
at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:556)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.attributeinfo(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.mbeanserver(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.collect(Unknown Source)
at com.jinspired.jdbinsight.server.profiler.BasicProfiler.getRepositoryModel(Unknown Source)
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 com.jinspired.jdbinsight.server.profiler.DefaultDispatcher.dispatch(Unknown Source)
at com.jinspired.jdbinsight.common.net.invocation.RequestHandler.service(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.ServiceHandler.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handleEvents(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor$Worker.run(Unknown Source)
at java.lang.Thread.run(Thread.java:613)
15:53:07,907 ERROR [ServiceObjectFactory] Cannot create service
org.jboss.ws.metadata.wsdl.WSDLException: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.getDocument(WSDLDefinitionsFactory.java:198)
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:106)
at org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273)
at org.jboss.ws.metadata.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:106)
at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:112)
at org.jboss.ws.jaxrpc.ServiceObjectFactory.getObjectInstance(ServiceObjectFactory.java:182)
at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
at org.jnp.interfaces.NamingContext.getObjectInstance(NamingContext.java:1125)
at org.jnp.interfaces.NamingContext.getObjectInstanceWrapFailure(NamingContext.java:1142)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:705)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(Unknown Source)
at org.jboss.portal.wsrp.services.AbstractJNDIServiceFactory.getService(AbstractJNDIServiceFactory.java:121)
at org.jboss.portal.wsrp.services.AbstractSOAPServiceFactory.getService(AbstractSOAPServiceFactory.java:84)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getService(WSRPConsumerImpl.java:476)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getServiceDescriptionService(WSRPConsumerImpl.java:452)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getServiceDescriptionAndRegisterIfNeeded(WSRPConsumerImpl.java:494)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.updateCachesIfNeeded(WSRPConsumerImpl.java:361)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getPortletMap(WSRPConsumerImpl.java:275)
at org.jboss.portal.wsrp.consumer.WSRPConsumerImpl.getPortlets(WSRPConsumerImpl.java:141)
at org.jboss.portal.federation.impl.FederatedPortletInvokerService.getPortlets(FederatedPortletInvokerService.java:77)
at org.jboss.portal.federation.impl.FederatingPortletInvokerService.getPortlets(FederatingPortletInvokerService.java:117)
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.AttributeDispatcher.invoke(AttributeDispatcher.java:99)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.interceptor.ModelMBeanAttributeInterceptor.invoke(ModelMBeanAttributeInterceptor.java:197)
at org.jboss.mx.interceptor.PersistenceInterceptor.invoke(PersistenceInterceptor.java:76)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.getAttribute(AbstractMBeanInvoker.java:362)
at org.jboss.mx.server.MBeanServerImpl.getAttribute(MBeanServerImpl.java:556)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.attributeinfo(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.mbeanserver(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.spi.AbstractCollector.process(Unknown Source)
at com.jinspired.jxinsight.server.cmdb.ext.jmx.Collector.collect(Unknown Source)
at com.jinspired.jdbinsight.server.profiler.BasicProfiler.getRepositoryModel(Unknown Source)
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 com.jinspired.jdbinsight.server.profiler.DefaultDispatcher.dispatch(Unknown Source)
at com.jinspired.jdbinsight.common.net.invocation.RequestHandler.service(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.ServiceHandler.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handle(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor.handleEvents(Unknown Source)
at com.jinspired.jdbinsight.common.net.events.Reactor$Worker.run(Unknown Source)
at java.lang.Thread.run(Thread.java:613)
Caused by: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1149)
at java.net.URL.openStream(URL.java:1007)
at org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.getDocument(WSDLDefinitionsFactory.java:181)
... 52 more
15:53:07,915 WARN [FederatingPortletInvokerService] PortletInvoker with id: self is not available.
Reason: Problem getting service description for producer self
Caused by:
javax.naming.NamingException: Could not dereference object [Root exception is org.jboss.ws.metadata.wsdl.WSDLException: java.io.IOException: Server returned HTTP response code: 503 for URL: http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl]
Kind regards,
William
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968632#3968632
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968632
18 years, 4 months