[Snowdrop] - Tld not found in jboss 6
by krikor kherberian
krikor kherberian [http://community.jboss.org/people/krikorkherberian] created the discussion
"Tld not found in jboss 6"
To view the discussion, visit: http://community.jboss.org/message/597056#597056
--------------------------------------------------------------
Hi, I had an application working in jboss 5. But in jboss 6 i encountered errors. I changed my spring libraries into newest spring libraries online, it fixed some issues. However, now I have problem with tld's not found.
In JbOSS 5 I didnt have this issue, I wrote tld folder in same level of web-inf, not inside it. When I reference to it on top of jsp page , it finds it in JBOSS 5 ( <%@ taglib uri="/tld/CustomSprinSecTags.tld" prefix="sec" %> ) . Howevr in Jboss 6, page crashes when i open it, saying tld not found.
When I changed this <%@ taglib uri="/tld/CustomSprinSecTags.tld" prefix="sec" %> into <%@ +taglib prefix="sec+" uri="http://www.springframework.org/security/tags" %> the page worked again. How can I solve this issue, and make tld's be found.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/597056#597056]
Start a new discussion in Snowdrop at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
15 years
[JBoss Messaging] - message passing through underlying db
by Tim Coninx
Tim Coninx [http://community.jboss.org/people/timconinxrvp] created the discussion
"message passing through underlying db"
To view the discussion, visit: http://community.jboss.org/message/588347#588347
--------------------------------------------------------------
Hello,
We are using a system where three jboss servers with the same application are connected to the same db. The servers are not clustered, but rather serve different audiences.
Currently we are having a problem with our jms subsystem because a queue fills up too fast because messages are causing exceptions. Normally each server will process its own messages, but because we sometimes have to restart all servers (while a queue is still filled), they suddenly all three start processing all messages that are (at that point) in the db at the same time, meaning that the number of messages failing triples.
Now we want to have a dedicated (fourth) server to handle all messages. That one will be the only one with activated message driven beans. The messages will still be published however by the three other servers.
My question: is this possible, and how ? Because normally a message published by one server will never be processed by another server on the same db (unless the message is left in the db and the server restarted). Passing the messages through the messagesucker seems a bit farfetched, as the messages are already in the correct tables.
We're also not (directly) looking for clustering the servers... although this might become the first step
I accept 'rtfm' answers, but I'd like a general chapter to read then :)
Thanks in advance
Tim
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/588347#588347]
Start a new discussion in JBoss Messaging at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
15 years