| 2009-11-03 14:21:44,515 DEBUG [org.jboss.messaging.core.impl.JDBCSupport]
(main) Failed to execute: CREATE TABLE JBM_MSG_REF (MESSAGE_ID DECIMAL(19, 0)
NOT NULL, CHANNEL_ID DECIMAL(19, 0) NOT NULL, TRANSACTION_ID DECIMAL(19, 0)
NULL, STATE CHAR(1), ORD DECIMAL(19, 0), PAGE_ORD DECIMAL(19, 0
They work when I enter them directly into Sybase. It just appears that they are
never being executed.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263743#4263743
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263743
I'm trying to switch from hypersonic to sybase. I've replaced the hsqldb-ds.xml
with a copy of the sybase-ds.xml configured as my DefaultDS (it's working
fine). I've also replaced the hsqldb-persistence-service.xml with a copy of
sybase-persistence-service.xml. For some reason, when the server
Is it possible to configure the message counters for a queue so that they
survive a restart?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4261469#4261469
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4261469
_
That did it, thanks jaikiran!
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4258749#4258749
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4258749
___
jboss-user mailing list
j
| 2009-10-05 07:44:37,270 WARN
[org.jboss.annotation.factory.AnnotationCreator] No ClassLoader provided, using
TCCL: org.jboss.managed.api.annotation.ManagementComponent
| 2009-10-05 07:44:37,886 WARN
[org.jboss.annotation.factory.AnnotationCreator] No ClassLoader provided, using
TCCL: o
Anyone have any ideas on this one?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4258563#4258563
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4258563
___
jboss-user mailing l
I've got a jboss server that's running behind an apache web server, so I have
the HTTP and HTTPS connectors disabled in jbossweb.sar/server.xml. Only AJP is
running:
|
|
I'm using the port offset feature in
bindingservice.beans/META-INF/bindings-jboss-beans.xml to handle the ports.
Ever
I've tried something like that, and I'm not sure whether it's a bug or not, but
it doesn't seem to work well when the source queue or source queue's jboss
instance goes away and comes back (eg during a restart). We're working on a
small test case to see if we can reproduce in a simple way.
View
Is there connection pooling built in, or is it something I'd have to create
myself? I'm looking forward to the wiki.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255738#4255738
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=r
This thread pretty much what I was asking. Unfortunately there were no answers:
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3890876#3890876
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255621#4255621
Reply to the post :
http://www.jboss.org/in
What is the proper way to manage JMS connections and sessions?
Should I always create a connection, create a session, DO THE WORK, then close
the session, and the connection. Or, can I keep the connection and session open
indefinitely and simply re-use them for as long as I want.
We've been tr
Hi Jaikran,
I wanted to avoid deploying the shared code into each war because of the large
number of webapps we have. Any updates to the shared code would mean a re-build
and re-deploy of 50+ apps.
I was thanking that sharing the code via an ear instead of the /lib folder
that would give me th
Anyone?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4252070#4252070
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4252070
___
jboss-user mailing list
jboss-user@lists.jboss.
I've read through the ClassLoadingUseCases wiki and the
ClassLoadingConfiguration and can't seem to find a definitive answer to my
problem. Here is a simplified version of my scenario:
2 webapps deployed as wars
-deploy/webapp1.war
-deploy/webapp2.war
1 application containing common code deploy
That did the trick, thanks.
It might be worth showing an example of this in the wiki. I had to dig around
just to figure out the format for that "override" parameter and it was just a
wild guess that got me as far as I got.
View the original post :
http://www.jboss.org/index.html?module=bb&op
I'm running 5.1.0.GA on Solaris.
I set the port to 8700 but it looks to me like the port offset (which in my
case is set to 400) is even getting applied to the explicitly set ports. If I
set the port to 8300, jBoss ends up starting the service on port 8700. I'm not
sure if that's intended or a
Anyone have an idea?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4250727#4250727
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4250727
___
jboss-user mailing list
jboss-user
I am trying to use the ServiceBindingSet with a port offset to run multiple
instances of JBoss on the same machine. I want to control the HTTP port
explicitly though. It looks like the "override" parameter is supposed to give
me the ability to do this, but I can't seem to get it to work. Here is
No, I don't have any EJBs at this point.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245084#4245084
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245084
___
jboss-user mai
Okay, I think I'm close now. I couldn't find any MBeans for my ear, so I
created one.
| package bob.bobtest;
| public interface BobTestMBeanInterface {
| void create() throws Exception;
| void start() throws Exception;
| void stop();
| void destroy();
| }
|
| pa
Anyone?
Here's a simpler question that may help me on my way.
Is it possible to configure a war (outside of an ear) to be reloaded if the ear
is redeployed? I read somewhere else that it's supposedly possible if I put
something like this in my ear's jboss-app.xml:
| myservice:service=OwnServ
I am trying to determine the best strategy for packaging up and deploying code
for my environment. I'm running JBoss 5.1 in windows, linux and solaris, using
JDK1.6.x both 32 bit and 64 bit.
I have about 15-20 "third party" jars (like apache commons stuff), 5-10 custom
developed jars (services,
Anyone?
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238483#4238483
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238483
___
jboss-user mailing list
jboss-user@lists.jboss.
I'm messing around with jboss-5.1.0 and I have created an annotated ejb3 bean
as described here:
http://docs.jboss.org/ejb3/app-server/reference/build/reference/en/html/jboss_extensions.html
It works as advertised (although I had to monkey with it to work with 5.1.0).
Ideally I'd like to add some
Okay, I figured it out. I just needed to use a Queue instead of a Topic.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4136097#4136097
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4136097
__
I have a need for a JMS queue where messages are durable, but messages sent to
the queue would be processed by only one of three possible subscribers. In
other words, there would be a single queue into which I drop a message, three
other servers would be periodically polling the queue and whiche
We're currently on JBoss 4.0.2 and we're preparing to use the JMS features.
I've successfully moved from the Hypersonic database to our corporate sybase
database and my demos are working as expected. My question is, what is the
proper way to create new users, roles and subscriptions in the JMS_U
28 matches
Mail list logo