Hi All,
We are planning to move our application which is
already in production environment from JBoss 3.0.0 to JBoss 3.2.3 (Latest
Version).
In JBoss 3.2.3, we noticed that EJB Spec checking
has become stronger, e.g Remote Interfaces where java.rmi.RemoteException was
not thrown, these b
Hi Ben and Tim,
One of your attempts is close to what should work:
shutdown.sh --server=bjc.mydomain.com:1098
assuming 1098 is the port on which the server is listening.
Make sure you can ping bjc.mydomain.com from the same
machine.
Regards,
Craig Johannsen
Ludicorp Research and Development
"Has anyone mastered the intricacies of JBoss shutdown for multiple
IPs?"
I kill the process. Does shutdown accept the --host switch? If not that
should be added as a feature request for symmetry if nothing else.
-Original Message-
From: Benjamin Cox [mailto:[EMAIL PROTECTED]
Sent: Sunda
Title: Message
the
RoleGroup column is just the group name of the role.
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rupp,
HeikoSent: 12 January 2004 18:04To:
[EMAIL PROTECTED]Subject: RE: [JBoss-user]
DatabaseServer Login module
What
i
Hello Adrian,
This is the behaviour that we are seeing:
1. Bring up the JBoss server
2. First two Session bean method invocation gives this error
a. First one is at:
2004-01-12 15:05:12,793 ERROR [STDERR] [ERROR]Connection handle is not
currently
associated with a ManagedConnection
2004-01-12 15
You answered the question yourself. ejb.select - method level,
jboss.query - class level.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Darren Hartford
> Sent: Monday, January 12, 2004 9:29 PM
> To: [EMAIL PROTECTED]
> Subject: [JBoss-user] RE:
There is
* @jboss.load-group name="basic"
On the class level it declares the load group. On the field level you
actually specify which fields comprise the group.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
> Jonathan.O'[EMAIL PROTECTED]
> Se
Anyone set this
(http://www.rsasecurity.com/products/cleartrust/datasheets/dscleartrust.html
) up with Jboss? If so, report on your experience?
It says "JAAS" though doesn't list JBoss as a "supported application
server". JAAS support is a great start, but input from anyone that has used
this pr
Been trying to get this to work, but no luck. How do you use JbossQL with Xdoclet for
an EJB.SELECT? The following does not work, and some of the mailing lists mention that
jboss.query is NOT for SELECT (SELECT is method level while jboss.query is class
level), so what would one use?
/**
* @ej
Title: Message
I have noticed that
in the default JBoss 3.22 + Tomcat deployment configuration, it is possible to
obtain Local interfaces for EJBs from the Servlet tier. In the interest of
maintaining maximum portability (e.g., to enable us to later move to separate
boxes for the two tiers)
No.
The ID in jbossmq-state.xml adds the extra constraint that
only the configured user can login as that id (and automatically
uses that client id).
If you use setClientID() then multiple users can share the id
(but not concurrently).
Regards,
Adrian
On Mon, 2004-01-12 at 18:11, Dilshan Rajapa
It is the ejb container that is an MBean within jboss.
The container (a singleton per home)
manages many ejb instances (bean objects).
The element should go in jboss-app.xml not application.xml
Regards,
Adrian
On Mon, 2004-01-12 at 17:17, BENVENUTTO, Simon, FM wrote:
> OK, I can't see how to e
Caching the local interface is ok for stateless.
It is just a pointer to the service and can be used
concurrently on multiple threads.
In fact you can make jboss do this transparently,
by changing the client interceptors for the stateless session client.
You just do home.create() and jboss will k
JBoss treats any jar with an xml file in META-INF as a special
deployment.
If you change META-INF/info.xml to META-INF/info
it will deploy fine through the JARDeployer.
Regards,
Adrian
On Fri, 2004-01-09 at 10:01, Stephane Nicoll wrote:
> Hello list,
>
> I think the problem is related to JBoss d
Thanks alot
if i use Connection.setClientID() will it set alter the jbossmq-state.xml file and add the ID to the Particular user??
Dilshan
Adrian Brock <[EMAIL PROTECTED]> wrote:
You need to configure the role to allow it to "create" durablesubscriptions.e.g. the example below that comes
Counter intuitively, the xdoclet tag @ejb.transaction is a class level
setting for mdbs.
Regards,
Adrian
On Fri, 2004-01-09 at 10:36, [EMAIL PROTECTED] wrote:
> > Aaaarggg
> Sorry ;-)
> >
> >>As I understand it, the only way to force re-delivery of the JMS message
> >>is to throw an EJBException
On Fri, 2004-01-09 at 07:14, [EMAIL PROTECTED] wrote:
> Hi,
>
> I have a MDB which takes messages from a Queue.
> In the onMessage() method, I am working with
> CMP beans. If something goes wrong, I want the JMS
> message to be redelivered, but the changes on the CMP
> beans should not be rolled b
You need to configure the role to allow it to "create" durable
subscriptions.
e.g. the example below that comes with jboss allows
durpublisher to create subscriptions but not guest or publisher.
guest and publisher can create nondurable subscriptions.
Also make sure you use Connection.setClientID
This error message says you are trying to use a connection
that has being returned to the pool (the connection object you
get from the datasource is no longer associated with a real connection).
Regards,
Adrian
On Thu, 2004-01-08 at 20:50, Sasidharan, Manoj wrote:
> Hello All,
>
> We are trying
Just wondering if there is any tag to setup load groups using XDoclet.
>From my own search, I think the answer is no. So, how do I set up a merge
point to do this.
I have added a mergeDir="myMergeDir" in the ejbDoclet ant task.
I have also added a file jbosscmp-jdbc-Settlement.xml into the mergeDi
OK, I can't see how to expose an EJB as an MBean. So in JBoss everything is
an MBean, and my EJB is there already and there are some stats that the
interceptor must maintain. But how do I add my own MBean interface, or
extend the existing one?
I've specified the XDoclet tags @jmx.mbean on my EJB
It would be great if someone could help me out with
this (see below). Again, I need the jboss-app.xml in
my ear since it provides ear level scoping
of deployed classes.
--- Chad Brandon <[EMAIL PROTECTED]> wrote:
> JBoss-3.2.3 all config
>
> What's the best way to get a web service archive to
>
Hi,
I am currently working on a application which
consists of several sessionBeans (stateless).
The session beans are using each other through their
local-interfaces. Bean A is using bean B.
I am using he xdoclet generated util-classes to
lokkup the local-interfaces. The util-classes
cache the h
Title: Message
What
is the content of your RoleGroup column?
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]On Behalf Of Stephen
TingSent: Monday, January 12, 2004 10:23 AMTo: 'Jboss
Mailing List'Subject: [JBoss-user] DatabaseServer Login
module
W
Title: Message
Why is it that whenever i try
to provide a dynamic RoleGroup name through the following query the
authentication won't works, It will always return "HTTP Status 403 - Access to the requested
resource has been denied".
select Role, RoleGroup from Roles where PrincipalID=?" wher
hi Ben,
Here is my cluster-service.xml
Please tell me what to do?
Thanks,
MJ
--- Bela Ban <[EMAIL PROTECTED]> wrote:
>
>
> Mridul Jain wrote:
>
> > hi,
> > I am running jboss-3.2.3 on GNU/Linux box and
> trying
> > to get jboss clustering up and running.
> > First I check if multicasting work
26 matches
Mail list logo