[Design of JBoss Profiler] - Error on setup
by mat
Follwed the Quick start help and copied the DLLs, sar and war as stated;
copied the dlls into System32
jbossInspector.dll
jbossAgent.dll
deployed:
jboss-profiler-jvmti.sar
jboss-profiler-noAOP.sar
jboss-profiler.war
created directory:
/tmp/profiler/ under jboss_home
In run.bat I added:
set JAVA_OPTS=%JAVA_OPTS% -XrunjbossInspector:%JBOSS_HOME%/tmp/profiler,include=com.unisys,ignore=*,memory=true,tracer=true
When starting JBoss, I get the following error and JBoss does not run.
this is the new DLL
Running process on Windows 5016
FATAL ERROR: JVMPI, an experimental interface, is no longer supported.
Please use the supported interface: the JVM Tool Interface (JVM TI).
For information on temporary workarounds contact: jvmpi_eol(a)sun.com
dpInspector> error in obtaining jvmpi interface pointer
Error occurred during initialization of VM
-Xrun library failed to init: jbossInspector
Press any key to continue . . .
Environment:
JBoss-4.2.1
Java 6u3
Windows OS
jboss-profiler-1.0.CR4(2)
Any help appreciated.
Thanks in advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123467#4123467
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123467
18 years, 2 months
[Design of JBossXB] - Re: Map annotations
by alex.loubyansky@jboss.com
I had to fix some issues based on the MC tests. I've updated the XB snapshot in the maven2 repository.
"mvn" wrote : https://snapshots.jboss.org/maven2/org/jboss/jbossxb/2.0.0-SNAPSHOT/jboss...
But I haven't updated the MC since it uses 2.0.0.CR5. This is what I did to make sure the MC tests pass
Index: kernel/src/main/org/jboss/beans/metadata/plugins/MapEntry.java
| ===================================================================
| --- kernel/src/main/org/jboss/beans/metadata/plugins/MapEntry.java (revision 69169)
| +++ kernel/src/main/org/jboss/beans/metadata/plugins/MapEntry.java (working copy)
| @@ -24,6 +24,8 @@
| import javax.xml.bind.annotation.XmlType;
|
| import org.jboss.beans.metadata.spi.ValueMetaData;
| +import org.jboss.xb.annotations.JBossXmlMapKey;
| +import org.jboss.xb.annotations.JBossXmlMapValue;
|
|
| /**
| @@ -41,6 +43,7 @@
| /** The value */
| private ValueMetaData value;
|
| + @JBossXmlMapKey
| public ValueMetaData getKey()
| {
| return key;
| @@ -51,6 +54,7 @@
| this.key = key;
| }
|
| + @JBossXmlMapValue
| public ValueMetaData getValue()
| {
| return value;
| Index: kernel/src/main/org/jboss/beans/metadata/plugins/AbstractMapMetaData.java
| ===================================================================
| --- kernel/src/main/org/jboss/beans/metadata/plugins/AbstractMapMetaData.java (revision 69169)
| +++ kernel/src/main/org/jboss/beans/metadata/plugins/AbstractMapMetaData.java (working copy)
| @@ -29,6 +29,7 @@
| import java.util.Map;
| import java.util.Set;
| import javax.xml.bind.annotation.XmlAttribute;
| +import javax.xml.bind.annotation.XmlTransient;
| import javax.xml.bind.annotation.XmlType;
|
| import org.jboss.beans.metadata.spi.MetaDataVisitor;
| @@ -36,9 +37,7 @@
| import org.jboss.beans.metadata.spi.ValueMetaData;
| import org.jboss.reflect.spi.ClassInfo;
| import org.jboss.reflect.spi.TypeInfo;
| -import org.jboss.xb.annotations.JBossXmlChild;
| -import org.jboss.xb.annotations.JBossXmlChildren;
| -import org.jboss.xb.annotations.JBossXmlNoElements;
| +import org.jboss.xb.annotations.JBossXmlMapEntry;
|
| /**
| * Map metadata.
| @@ -48,11 +47,12 @@
| * @version $Revision$
| */
| @XmlType
| -@JBossXmlNoElements
| -@JBossXmlChildren
| -({
| - @JBossXmlChild(name="entry", type=MapEntry.class)
| -})
| +@JBossXmlMapEntry(name = "entry", type=MapEntry.class)
| +//@JBossXmlNoElements
| +//@JBossXmlChildren
| +//({
| +// @JBossXmlChild(name="entry", type=MapEntry.class)
| +//})
| public class AbstractMapMetaData extends AbstractTypeMetaData
| implements Map<MetaDataVisitorNode, MetaDataVisitorNode>, Serializable
| {
| @@ -199,6 +199,7 @@
| return map.values();
| }
|
| + @XmlTransient
| public Iterator<? extends MetaDataVisitorNode> getChildren()
| {
| ArrayList<MetaDataVisitorNode> children = new ArrayList<MetaDataVisitorNode>(keySet());
| @@ -236,11 +237,13 @@
| *
| * @return the class instance
| */
| + @XmlTransient
| protected Object getDefaultInstance()
| {
| return new HashMap<Object, Object>();
| }
|
| + @XmlTransient
| protected Class<? extends Map> getExpectedClass()
| {
| return Map.class;
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123462#4123462
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123462
18 years, 2 months
[Design of JBoss jBPM] - Re: Potential enhancement to jbpm
by kukeltje
Britt,
anonymous wrote : To put it bluntly, unless your Process Definitions are dynamically generated each time your application starts, the act of starting your application shouldn't be deploying your Definitions.
jBPM does *not* do this. The application (or framework) does
Now regarding versioning. It's not that I (we?) do not want versioning... au contraire. I do want it but in formally controlled way like you describe (without parsing the string of course ;-)) and not by comparing the xml of a pd. So a patch that does what you describe would be welcome.
The thing is that it is not a simple patch. Requires db changes, so it is only possible in a 3.3 release. Besides that, it requires good tests for backwards compatibility and maybe conversion. If Argo516 wants to build a patch like that he/she is more than welcome.
btw. did you know jbpm supports custom namespaces in the pd? You could have used that and use real xml attributes....
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123377#4123377
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123377
18 years, 2 months
[QA of JBoss Portal] - JBoss Portal 2.6.3 Installation Hang
by foongkim
Hi there, i have tried to install couple of times JBoss Portal 2.6.3 using a bundle and its hang half way. My environment are
C:\>echo %JAVA_HOME%
C:\Program Files\Java\jdk1.5.0_11
C:\>mvn -version
Maven version: 2.0.8
Java version: 1.5.0_11
OS name: "windows xp" version: "5.1" arch: "x86" Family: "windows"
C:\>ant -version
Apache Ant version 1.7.0 compiled on December 13 2006
C:\>
Below is the stack. Can you spot the problems??
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'identityusermgr' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'editprofilemgr' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'userregistermgr' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'assignrolemgr' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'useradministrationbean' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'rolemanagementbean' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'editrolemgr' - only keeping the last
17:06:25,919 WARN [FacesConfigurator] More than one managed bean w/ the name of
'lostpasswordmgr' - only keeping the last
17:06:25,935 WARN [FacesConfigurator] More than one managed bean w/ the name of
'createrolemgr' - only keeping the last
17:06:25,935 INFO [FacesConfigurator] Serialization provider : class org.apache
.myfaces.shared_impl.util.serial.DefaultSerialFactory
17:06:25,935 INFO [MyFacesGenericPortlet] PortletContext 'C:\jboss-portal-2.6.3
.GA\server\default\.\deploy\jboss-portal.sar\portal-identity.sar\portal-identity
.war\' initialized.
17:06:25,935 INFO [MyFacesGenericPortlet] MyFaces already initialized
17:06:25,935 INFO [MyFacesGenericPortlet] PortletContext 'C:\jboss-portal-2.6.3
.GA\server\default\.\deploy\jboss-portal.sar\portal-identity.sar\portal-identity
.war\' initialized.
17:06:25,998 INFO [PortletAppDeployment] Parsing /portal-weather-samples/jboss-
portlet.xml
17:06:26,138 INFO [PortletAppDeployment] Parsing /portal-core/jboss-portlet.xml
17:06:26,716 INFO [PortletAppDeployment] Parsing /portal-news-samples/jboss-por
tlet.xml
17:06:27,247 INFO [PortletAppDeployment] Parsing /portal-admin/jboss-portlet.xm
l
17:06:27,294 INFO [FacesConfigurator] Reading standard config org/apache/myface
s/resource/standard-faces-config.xml
17:06:27,340 INFO [FacesConfigurator] Reading config jar:file:/C:/jboss-portal-
2.6.3.GA/server/default/./deploy/jboss-portal.sar/portal-admin.sar/portal-admin.
war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/faces-config.xml
17:06:27,340 INFO [FacesConfigurator] Reading config /WEB-INF/faces-config.xml
17:06:27,372 INFO [FacesConfigurator] MyFaces-package : myfaces-api not found.
17:06:27,372 INFO [FacesConfigurator] MyFaces-package : myfaces-impl not found.
17:06:27,372 INFO [FacesConfigurator] MyFaces-package : tomahawk-sandbox not fo
und.
17:06:27,372 INFO [FacesConfigurator] MyFaces-package : tomahawk not found.
17:06:27,372 WARN [LocaleUtils] Locale name in faces-config.xml null or empty,
setting locale to default locale : en_US
17:06:27,372 INFO [RenderKitFactoryImpl] RenderKit with renderKitId 'HTML_BASIC
' was replaced.
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'portalobjectmgr' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'portalAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'addPageAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'assignContentToWindowAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'dashboardmgr' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'instancemgr' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'portletmgr' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'newWindowWizard' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'createInstanceAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'dashboard' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'addDashboardPageAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'renameAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'addDisplayNameAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'renameDashboardPageAction' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'PortalObject' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'ControlConstants' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'PropertiesInfo' - only keeping the last
17:06:27,372 WARN [FacesConfigurator] More than one managed bean w/ the name of
'ControlPropertiesBean' - only keeping the last
17:06:27,372 INFO [FacesConfigurator] Serialization provider : class org.apache
.myfaces.shared_impl.util.serial.DefaultSerialFactory
17:06:27,372 INFO [MyFacesGenericPortlet] PortletContext 'C:\jboss-portal-2.6.3
.GA\server\default\.\deploy\jboss-portal.sar\portal-admin.sar\portal-admin.war\'
initialized.
17:06:27,372 INFO [MyFacesGenericPortlet] MyFaces already initialized
17:06:27,372 INFO [MyFacesGenericPortlet] PortletContext 'C:\jboss-portal-2.6.3
.GA\server\default\.\deploy\jboss-portal.sar\portal-admin.sar\portal-admin.war\'
initialized.
17:06:27,465 INFO [PortletAppDeployment] Parsing /portal-users-samples/jboss-po
rtlet.xml
17:06:27,528 INFO [PortletAppDeployment] Parsing /portal-wsrp-admin/jboss-portl
et.xml
17:06:27,559 INFO [FacesConfigurator] Reading standard config org/apache/myface
s/resource/standard-faces-config.xml
17:06:27,590 INFO [FacesConfigurator] Reading config jar:file:/C:/jboss-portal-
2.6.3.GA/server/default/./deploy/jboss-portal.sar/portal-wsrp.sar/portal-wsrp-ad
min.war/WEB-INF/lib2/jsf-facelets.jar!/META-INF/faces-config.xml
17:06:27,590 INFO [FacesConfigurator] Reading config /WEB-INF/faces-config.xml
17:06:27,621 INFO [FacesConfigurator] MyFaces-package : myfaces-api not found.
17:06:27,621 INFO [FacesConfigurator] MyFaces-package : myfaces-impl not found.
17:06:27,621 INFO [FacesConfigurator] MyFaces-package : tomahawk-sandbox not fo
und.
17:06:27,621 INFO [FacesConfigurator] MyFaces-package : tomahawk not found.
17:06:27,621 WARN [LocaleUtils] Locale name in faces-config.xml null or empty,
setting locale to default locale : en_US
17:06:27,621 INFO [RenderKitFactoryImpl] RenderKit with renderKitId 'HTML_BASIC
' was replaced.
17:06:27,621 WARN [FacesConfigurator] More than one managed bean w/ the name of
'beanContext' - only keeping the last
17:06:27,621 WARN [FacesConfigurator] More than one managed bean w/ the name of
'consumersMgr' - only keeping the last
17:06:27,621 WARN [FacesConfigurator] More than one managed bean w/ the name of
'consumer' - only keeping the last
17:06:27,621 WARN [FacesConfigurator] More than one managed bean w/ the name of
'producer' - only keeping the last
17:06:27,621 INFO [FacesConfigurator] Serialization provider : class org.apache
.myfaces.shared_impl.util.serial.DefaultSerialFactory
17:06:27,621 INFO [MyFacesGenericPortlet] PortletContext 'C:\jboss-portal-2.6.3
.GA\server\default\.\deploy\jboss-portal.sar\portal-wsrp.sar\portal-wsrp-admin.w
ar\' initialized.
17:06:27,793 INFO [TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../dep
loy/jmx-console.war/
17:06:27,996 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8
080
17:06:28,027 INFO [AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
17:06:28,043 INFO [Server] JBoss (MX MicroKernel) [4.2.2.GA (build: SVNTag=JBos
s_4_2_2_GA date=200710221139)] Started in 1m:23s:614ms
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Faul
t
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidCookieFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedMimeTypeFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inco
nsistentParametersFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedLocaleFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidHandleFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidRegistrationFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidUserCategoryFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Port
letStateChangeRequiredFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedWindowStateFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedModeFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidSessionFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Miss
ingParametersFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Oper
ationFailedFault
17:06:38,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Acce
ssDeniedFault
17:06:38,458 WARN [ServiceObjectFactory] Unable to narrow port selection for
UnifiedPortComponentRef
serviceEndpointInterface=org.jboss.portal.wsrp.core.WSRP_v1_ServiceDescription_
PortType
portQName=null
enableMTOM=false
portComponentLink=null
callProperties=[]
stubProperties=[]
configName=null
configFile=null
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Faul
t
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidCookieFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedMimeTypeFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inco
nsistentParametersFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedLocaleFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidHandleFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidRegistrationFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidUserCategoryFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Port
letStateChangeRequiredFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedWindowStateFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedModeFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidSessionFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Miss
ingParametersFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Oper
ationFailedFault
17:06:39,395 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Acce
ssDeniedFault
17:06:39,426 WARN [ServiceObjectFactory] Unable to narrow port selection for
UnifiedPortComponentRef
serviceEndpointInterface=org.jboss.portal.wsrp.core.WSRP_v1_Markup_PortType
portQName=null
enableMTOM=false
portComponentLink=null
callProperties=[]
stubProperties=[]
configName=null
configFile=null
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Faul
t
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidCookieFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedMimeTypeFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inco
nsistentParametersFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedLocaleFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidHandleFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidRegistrationFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidUserCategoryFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Port
letStateChangeRequiredFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedWindowStateFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedModeFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidSessionFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Miss
ingParametersFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Oper
ationFailedFault
17:06:40,113 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Acce
ssDeniedFault
17:06:40,300 WARN [ServiceObjectFactory] Unable to narrow port selection for
UnifiedPortComponentRef
serviceEndpointInterface=org.jboss.portal.wsrp.core.WSRP_v1_PortletManagement_P
ortType
portQName=null
enableMTOM=false
portComponentLink=null
callProperties=[]
stubProperties=[]
configName=null
configFile=null
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Faul
t
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidCookieFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedMimeTypeFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inco
nsistentParametersFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedLocaleFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidHandleFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidRegistrationFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidUserCategoryFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Port
letStateChangeRequiredFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedWindowStateFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Unsu
pportedModeFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Inva
lidSessionFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Miss
ingParametersFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Oper
ationFailedFault
17:06:40,753 INFO [STDOUT] no object for {urn:oasis:names:tc:wsrp:v1:types}Acce
ssDeniedFault
17:06:40,784 WARN [ServiceObjectFactory] Unable to narrow port selection for
UnifiedPortComponentRef
serviceEndpointInterface=org.jboss.portal.wsrp.core.WSRP_v1_Registration_PortTy
pe
portQName=null
enableMTOM=false
portComponentLink=null
callProperties=[]
stubProperties=[]
configName=null
configFile=null
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123358#4123358
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123358
18 years, 2 months