error durante la instalacion
by Lic. Natalia C. Belmonte
Estimados, me salta el siguiente error cuando quiero reiniciar el jboss
########################################################################
comdoc2:/etc/init.d# . jboss_init.sh stop
Exception in thread "main" java.lang.UnsupportedClassVersionError:
org/jboss/Shutdown (Unsupported major.minor version 49.0)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
at
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
########################################################################
Vi un mensajes similar, en ingles y trate de seguir las instrucciones pero
me sigue dando error.
Saludos cordiales
-----------------------------------------------------
Lic. Natalia C. Belmonte
Dir. Gral. de Sistemas y Tecnologías de la Información
Universidad Nacional de Entre Ríos - Rectorado
Eva Perón 24 - Concepción del Uruguay - CP 3260
Horario: Lunes a Viernes de 7 a 13 hs.
Teléfonos: (03442) 421539 - 421546
Fax: (03442) 421530
E-mail: belmontec(a)uner.edu.ar
-----------------------------------------------------
16 years, 1 month
[JBoss Microcontainer Development] New message: "Deployment lazyResolve and lazyStart"
by Adrian Brock
User development,
A new message was posted in the thread "Deployment lazyResolve and lazyStart":
http://community.jboss.org/message/529354#529354
Author : Adrian Brock
Profile : http://community.jboss.org/people/adrian@jboss.org
Message:
--------------------------------------------------------------
With https://jira.jboss.org/jira/browse/JBDEPLOY-247
You can now do lazyResolve and lazyStart for deployments.
However, beyond what OSGi will do there's nothing that actually sets this up.
I propose we add a new META-INF/jboss-deployment.xml which would be some generic
metadata for this kind of processing and other possible deployment control parameters.
e.g. something like
<deployment xmlns="urn:jboss:deployment:1.0">
<!-- Deploy this deployment in the described stage initially - i.e. no classloader -->
<required-stage>DESCRIBE</required-stage>
<!-- Only create the classloader when somebody wants to import our package or module -->
<lazy-resolve/>
<!-- Only move the deployment to the REAL stage when somebody loads a class from our classloader - with an optional filter -->
<lazy-start filter="com.acme.somepackage"/>
</deployment>
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529354#529354
16 years, 1 month
[JBoss Portal] New message: "WSRP producer does not accept registration"
by Koray Cetinbas
User development,
A new message was posted in the thread "WSRP producer does not accept registration":
http://community.jboss.org/message/529349#529349
Author : Koray Cetinbas
Profile : http://community.jboss.org/people/KorayCetinbas
Message:
--------------------------------------------------------------
Hi all,
I have a strange problem. I have a 2.6.4 versioned JBoss portal as a producer and 2.7.2 version portal as consumer.
At first everything goes well and i can consume remote portlets successfully
After some time, if i restart the consumer portal for example, i cannot reregister to the portal again.
There is an error such that on the consumer logs
Couldn't register with producer 'Koray'
15:32:32,765 ERROR [CallImpl] Call invocation failed
javax.xml.rpc.soap.SOAPFaultException: Could not register consumer named 'NLRUA4
WS10.europe.nortel.com.'. Consumer named 'NLRUA4WS10.mydomain.com.' has alr
eady been registered with the same set of registration properties. Registration
rejected!
So i go ahead and erase the local registration info from the consumer.
The same error.
I delete the consumer and define a new consumer. (i leave no consumers at all after some time)
The same problem.. Even though i do not have a consumer, i still get this problem
And no matter what i do, i cannot reregister again to the producer..
What can i do to correct this. This has happened to me on a few more machines and i do not know a way to overcome this problem.
I really need to make this work properly
Any help is greately appreciated
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529349#529349
16 years, 1 month
[JBoss Microcontainer Development] New message: "How to migrate AssembledDirectory"
by Thomas Diesler
User development,
A new message was posted in the thread "How to migrate AssembledDirectory":
http://community.jboss.org/message/529343#529343
Author : Thomas Diesler
Profile : http://community.jboss.org/people/thomas.diesler@jboss.com
Message:
--------------------------------------------------------------
How do I migratethis to VFS 3.0
public VirtualFile assembleBundle(String name, String[] resourcePaths, Class<?>... packages) throws Exception
{
AssembledDirectory assembledDirectory = createAssembledDirectory(name, "", resourcePaths, packages);
return assembledDirectory;
}
public Bundle deployBundle(String name, OSGiMetaData metaData, String resourcePath, Class<?>... packages) throws Exception
{
AssembledDirectory assembledDirectory = createAssembledDirectory(name, "", new String[] { resourcePath }, packages);
return deployBundle(assembledDirectory, metaData);
}
public Bundle deployBundle(String name, OSGiMetaData metaData, String[] resourcePaths, Class<?>... packages) throws Exception
{
AssembledDirectory assembledDirectory = createAssembledDirectory(name, "", resourcePaths, packages);
return deployBundle(assembledDirectory, metaData);
}
This question relates to the more general issue of VFS not beeing documented adequaltely.
https://jira.jboss.org/jira/browse/JBVFS-113
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/529343#529343
16 years, 1 month