• Latest commit

    I've committed my latest refactoring to consolidate thread pools + improve client session factory constructors. Now, there are some issues: 1) I've had to refactor the jms server control create connection factory me...
    Profile Photo
    created by timfox
  • config

    Ive added a separate configuration for the jms tests under jms-tests/config. Now this is done i can trim down the standalone and AS configs and remove most things. I was thinking maybe 1 connection factory and a comme...
    Profile Photo
    created by ataylor
  • Another security configuration issue

    Suppose we have the following permission config <!-- any user can have full control of generic topics --> <security match="jms.topic.#"> <permission type="createDurableQueue" roles="user"/> &l...
    Profile Photo
    last modified by gaohoward
  • Boolean properties in RA not following standard conventions

    Why are boolean resource adapters not following the standard isXXX()/setXXX() convention, and instead use getXXX()/setXXX() ??
    Profile Photo
    last modified by timfox
  • The output of examples

    When running the examples, all the example output (system.out) and the server (embeded) log are mingled together in the console. It makes the console output verbose and the user cannot clearly see what's the specific ...
    Profile Photo
    last modified by gaohoward
  • org.jboss.test.messaging.jms.ConnectionTest failiin

    The test will aways fail if running from eclipse. It started failing at r6605: r6605 | timfox | 2009-04-28 13:28:45 -0500 (Tue, 28 Apr 2009) | 1 line https://jira.jboss.org/jira/browse/JBMESSAGING-1581 if you ...
    Profile Photo
    last modified by clebert.suconic
  • Deadlock in  large message code

    [junit] Java stack information for the threads listed above: [junit] =================================================== [junit] "Thread-2 (group:JBM-InVM-Transport-Threads-23387093)": [junit] at org.jboss.messagin...
    Profile Photo
    created by timfox
  • ClientSessionFactoryImpl attributes

    ClientSessionFactoryImpl has a lot of attributes, most of which will never be changed from the defaults. This results in quite a lot of different constructors. One other approach to this is to remove most of the con...
    Profile Photo
    last modified by timfox
  • Kicking off client via management

    When terminating a client's connection via the management API, do the server side sessions for that connection get closed too?
    Profile Photo
    last modified by timfox
  • Security Configuration --- getting confused

    Hi, when working on the security example, I improved the configuration a little, adding some more stuff here. But I'm confused that the configuration seems not consistent with my result. In the configuration I have 4...
    Profile Photo
    last modified by gaohoward
  • Consolidating thread pools

    I'm working on consolidating our thread pools. We'll have one ThreadPoolExecutor and one ScheduledThreadPoolExecutor on the server. Everything will use that. (We can't schedule off a standard thread pool executor). ...
    Profile Photo
    created by timfox
  • Our Adapter and Client_Acknowledge

    Our Adapter is not supporting ClientAcknowledge. public void setAcknowledgeMode(String value) { if (trace) log.trace("setAcknowledgeMode(" + value + ")"); if ("DUPS_OK_ACKNOWLEDGE".equals(value) || "Dups-ok-ack...
    Profile Photo
    last modified by clebert.suconic
  • Servlet transport problem

    Hi, I can't get the servlet transport working. I configured a new connection factory that using servlet transport, like: <connection-factory name="ServletConnectionFactory"> <connector-ref connector-name...
    Profile Photo
    last modified by gaohoward
  • Hudson almost green

    The only outstanding failure on Hudson I am currently seeing is: PagingFailoverTest::testMultiThreadFailoverOnProducing If you run this test in a loop a few times it's easy to get it to fail.
    Profile Photo
    last modified by timfox
  • AS 5 profiles must have empty configuration, Java EE example

    Currently, our Java EE examples relies on JMS resources defined by default in the profile (in jbm-queues.xml + jbm-jms.xml). However, we must not provide JMS resources by default in AS 5 profiles. I'll remove them f...
    Profile Photo
    last modified by jmesnil
  • Configuration layout

    Our current configuration layout is messy and spread in many places (AS/config, src/config) and is confusing (JMS tests is hard-coded with the bean config from AS/config and the server configuration from src/config) ...
    Profile Photo
    last modified by jmesnil
  • AS 5 Profiles bindings

    I'm currently refactoring the creation of JBoss AS 5 profiles for JBoss Messaging. I'm not sure our current default profile ("jbm2_default" based on JBoss AS 5 "default") is correct. In AS/config/default/jbm-configur...
    Profile Photo
    last modified by jmesnil
  • Issues on the JCA Adapter:

    First one: No tests!!!!!!!! We need to add a testsuite. I can think of using the jboss-test framework that will deploy on setup, undeploy on tearDown, and test it under a real server, same way every other project does...
    Profile Photo
    last modified by clebert.suconic
  • Changes in our JCA Adapter

    There are two ways of configuring our JCA Adapter: On MDBs (Inbound), there are Activation properties on the MDBs: @MessageDriven(name = "MessageMDBExample", activationConfig = { @ActivationConfigProperty(property...
    Profile Photo
    last modified by clebert.suconic
  • Script to install the application server

    I have this little script on workspace, that I aways use it to install the application server. I'm not sure if I should commit it though. cd examples ant clean cd .. ant distro -Dno-doc=1 rm -r $JBOSS_HOME/server...
    Profile Photo
    created by clebert.suconic