Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: To be reviewed To be reviewed
  • Resolution: Won't Fix or Usage Issue
  • Affects Version/s: 1.3.3
  • Fix Version/s: None
  • Component/s: Transport: File
  • Labels:
    None
  • Environment:

    Windows Server, Active MQ 4.0.1, jdk1.5.0

  • Configuration:
    Hide

    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE mule-configuration PUBLIC
    "-//SymphonySoft //DTD mule-configuration XML V1.0//EN"
    "file://\mule-1.3-rc4\dist\mule-configuration.dtd">
    <mule-configuration id="dfm-afaria-client" version="1.0">
    <environment-properties>
    <system-property key="dfm.properties" name="dfm.properties"/>
    <file-properties location="dfm.properties"/>
    </environment-properties>
    <mule-environment-properties workingDirectory="..\var\.mule-afaria-client" recoverableMode="true">
    <threading-profile id="default" doThreading="true" maxThreadsActive="5" maxThreadsIdle="5" poolExhaustedAction="RUN"/>
    <pooling-profile maxActive="5" maxIdle="5" initialisationPolicy="INITIALISE_ALL" exhaustedAction="WAIT" maxWait="0"/>
    <queue-profile maxOutstandingMessages="4000" persistent="true"/>
    <persistence-strategy className="org.mule.util.queue.FilePersistenceStrategy"/>
    </mule-environment-properties>
    <container-context className="com.amtsybex.dfm.mule.spring.PropertyEnabledContainerContext">
    <properties>
    <property name="configFile" value="dfm-afaria-client-spring.xml"/>
    </properties>
    </container-context>
    <agents>
    <agent name="RMI" className="org.mule.management.agents.RmiRegistryAgent"/>
    <agent name="JMX" className="org.mule.management.agents.JmxAgent">
    <properties>
    <property name="connectorServerUrl" value="service:jmx:rmi:///jndi/rmi://localhost:1099/server"/>
    <map name="connectorServerProperties">
    <property name="jmx.remote.jndi.rebind" value="true"/>
    </map>
    </properties>
    </agent>
    </agents>
    <connector name="fileWorkpackDestination" className="org.mule.providers.file.FileConnector">
    <properties>
    <property name="fileNameParser" value="org.mule.providers.file.SimpleFilenameParser"/>
    <property name="outputPattern" value="${ORIGINALNAME}"/>
    </properties>
    </connector>
    <connector name="jmsAfariaConnector" className="org.mule.providers.jms.JmsConnector">
    <properties>
    <property name="eagerConsumer" value="false"/>
    <property name="cacheJmsSessions" value="false"/>
    <property name="specification" value="1.1"/>
    <container-property name="connectionFactory" reference="afariaJmsConnectionFactory" required="true"/>
    </properties>
    <connection-strategy className="org.mule.providers.SimpleRetryConnectionStrategy">
    <properties>
    <property name="doThreading" value="true"/>
    <property name="retryCount" value="-1"/>
    <property name="frequency" value="10000"/>
    </properties>
    </connection-strategy>
    </connector>
    <model name="DFM">
    <mule-descriptor name="DFMAfariaDelivery" implementation="org.mule.components.simple.BridgeComponent"
    singleton="false" initialState="started">
    <inbound-router>
    <endpoint address="jms://queue.afaria.fdcs-workpack-xml" connector="jmsAfariaConnector" synchronous="true"/>
    </inbound-router>
    <outbound-router>
    <catch-all-strategy className="org.mule.routing.ForwardingCatchAllStrategy">
    <endpoint address="file:///C:/MyProjects2/dfm/dfm-test/etc/mule-io/afaria/deadletter"
    connector="fileWorkpackDestination" synchronous="true"/>
    </catch-all-strategy>
    <router className="com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter">
    <properties>
    <list name="recipients">
    <entry value="file://${fdcs.afaria.download.dir}/${WORKGROUP}?connector=fileWorkpackDestination&synchronous=true&deleteFile=${DELETE}"/>
    </list>
    </properties>
    </router>
    </outbound-router>
    </mule-descriptor>
    </model>
    </mule-configuration>

    Show
    <?xml version="1.0" encoding="windows-1252" ?> <!DOCTYPE mule-configuration PUBLIC "-//SymphonySoft //DTD mule-configuration XML V1.0//EN" "file://\mule-1.3-rc4\dist\mule-configuration.dtd"> <mule-configuration id="dfm-afaria-client" version="1.0"> <environment-properties> <system-property key="dfm.properties" name="dfm.properties"/> <file-properties location="dfm.properties"/> </environment-properties> <mule-environment-properties workingDirectory="..\var\.mule-afaria-client" recoverableMode="true"> <threading-profile id="default" doThreading="true" maxThreadsActive="5" maxThreadsIdle="5" poolExhaustedAction="RUN"/> <pooling-profile maxActive="5" maxIdle="5" initialisationPolicy="INITIALISE_ALL" exhaustedAction="WAIT" maxWait="0"/> <queue-profile maxOutstandingMessages="4000" persistent="true"/> <persistence-strategy className="org.mule.util.queue.FilePersistenceStrategy"/> </mule-environment-properties> <container-context className="com.amtsybex.dfm.mule.spring.PropertyEnabledContainerContext"> <properties> <property name="configFile" value="dfm-afaria-client-spring.xml"/> </properties> </container-context> <agents> <agent name="RMI" className="org.mule.management.agents.RmiRegistryAgent"/> <agent name="JMX" className="org.mule.management.agents.JmxAgent"> <properties> <property name="connectorServerUrl" value="service:jmx:rmi:///jndi/rmi://localhost:1099/server"/> <map name="connectorServerProperties"> <property name="jmx.remote.jndi.rebind" value="true"/> </map> </properties> </agent> </agents> <connector name="fileWorkpackDestination" className="org.mule.providers.file.FileConnector"> <properties> <property name="fileNameParser" value="org.mule.providers.file.SimpleFilenameParser"/> <property name="outputPattern" value="${ORIGINALNAME}"/> </properties> </connector> <connector name="jmsAfariaConnector" className="org.mule.providers.jms.JmsConnector"> <properties> <property name="eagerConsumer" value="false"/> <property name="cacheJmsSessions" value="false"/> <property name="specification" value="1.1"/> <container-property name="connectionFactory" reference="afariaJmsConnectionFactory" required="true"/> </properties> <connection-strategy className="org.mule.providers.SimpleRetryConnectionStrategy"> <properties> <property name="doThreading" value="true"/> <property name="retryCount" value="-1"/> <property name="frequency" value="10000"/> </properties> </connection-strategy> </connector> <model name="DFM"> <mule-descriptor name="DFMAfariaDelivery" implementation="org.mule.components.simple.BridgeComponent" singleton="false" initialState="started"> <inbound-router> <endpoint address="jms://queue.afaria.fdcs-workpack-xml" connector="jmsAfariaConnector" synchronous="true"/> </inbound-router> <outbound-router> <catch-all-strategy className="org.mule.routing.ForwardingCatchAllStrategy"> <endpoint address="file:///C:/MyProjects2/dfm/dfm-test/etc/mule-io/afaria/deadletter" connector="fileWorkpackDestination" synchronous="true"/> </catch-all-strategy> <router className="com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter"> <properties> <list name="recipients"> <entry value="file://${fdcs.afaria.download.dir}/${WORKGROUP}?connector=fileWorkpackDestination&synchronous=true&deleteFile=${DELETE}"/> </list> </properties> </router> </outbound-router> </mule-descriptor> </model> </mule-configuration>
  • Log Output:
    As above.
  • Similar Issues:
    None

Description

Hi.
We are using Mule 1.3.3 to read an XML file from a JMS queue (using Active MQ 4.0.1) to a folder in Windows.
The message appears to be read and removed from the queue but is not written to the folder.
We are using the patch as supplied for issue MULE-1538 (mule-transport-jms-1.3.3-patch-eagerConsumer.jar) to allow messages to be sent from queue to queue.
We now want to read from a queue and send to a folder.

The logging we get is as below:

**********************************************************************

  • Mule ESB and Integration Platform version Not Set *
  • Not Set *
  • For more information go to http://mule.mulesource.org *
  • *
  • Server started: 13 April 2007 15:57:08 o'clock BST *
  • Server ID: dfm-afaria-client *
  • JDK: 1.5.0 (mixed mode, sharing) *
  • OS: Windows 2003 - Service Pack 1 (5.2, x86) *
  • Host: BEXTAFAR01 (10.56.17.44) *
  • *
  • Agents Running: *
  • Rmi Registry: rmi://localhost:1099 *
  • JMX Agent: service:jmx:rmi:///jndi/rmi://localhost:1099/server *
  • Mule Admin: accepting connections on tcp://localhost:60504 *
    **********************************************************************
    INFO 2007-04-13 15:57:09,412 [UMOManager.3] org.mule.providers.jms.JmsConnector: Starting Connector: org.mule.providers.jms.JmsConnector
    DEBUG 2007-04-13 15:57:09,412 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.tcp.TcpTransport: TCP consumer thread starting
    INFO 2007-04-13 15:57:09,412 [WrapperSimpleAppMain] org.mule.MuleServer: Mule Server initialized.
    WrapperSimpleApp: main method completed
    DEBUG 2007-04-13 15:57:09,427 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.WireFormatNegotiator: Received WireFormat: WireFormatInfo
    Unknown macro: { version=1, properties={StackTraceEnabled=true, TightEncodingEnabled=true, TcpNoDelayEnabled=true, SizePrefixDisabled=false, MaxInactivityDuration=30000, CacheEnabled=true}, magic=[A,c,t,i,v,e,M,Q]}

    DEBUG 2007-04-13 15:57:09,427 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.WireFormatNegotiator: tcp://localhost/127.0.0.1:61616 before negotiation: OpenWireFormat{version=1, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false}
    DEBUG 2007-04-13 15:57:09,427 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.WireFormatNegotiator: tcp://localhost/127.0.0.1:61616 after negotiation: OpenWireFormat{version=1, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false}
    DEBUG 2007-04-13 15:57:09,505 [UMOManager.3] org.mule.providers.jms.JmsConnector: Starting receiver on endpoint: jms://queue.afaria.fdcs-workpack-xml
    INFO 2007-04-13 15:57:09,505 [UMOManager.3] org.mule.providers.jms.JmsConnector: Connector: org.mule.providers.jms.JmsConnector has been started
    DEBUG 2007-04-13 15:57:09,505 [UMOManager.3] org.mule.providers.SimpleRetryConnectionStrategy: Successfully connected to org.mule.providers.jms.JmsConnector@e0a386
    DEBUG 2007-04-13 15:57:09,505 [UMOManager.5] org.mule.providers.jms.JmsMessageReceiver: Attempting to connect to: jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 15:57:09,505 [UMOManager.5] org.mule.providers.jms.JmsConnector: Retrieving new jms session from connection: topic=false, transacted=false, ack mode=1, nolocal=false
    DEBUG 2007-04-13 15:57:09,584 [UMOManager.5] org.mule.providers.SimpleRetryConnectionStrategy: Successfully connected to jms://queue.afaria.fdcs-workpack-xml
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    DEBUG 2007-04-13 15:57:19,209 [UMOManager.4] org.mule.providers.SimpleRetryConnectionStrategy: Successfully connected to jms://queue.afaria.fdcs-workpack-xml
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    DEBUG 2007-04-13 15:57:24,443 [ActiveMQ Scheduler] org.apache.activemq.transport.InactivityMonitor: Message sent since last write check, resetting flag
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    DEBUG 2007-04-13 15:57:39,444 [ActiveMQ Scheduler] org.apache.activemq.transport.InactivityMonitor: No message sent since last write check, sending a KeepAliveInfo
    DEBUG 2007-04-13 15:57:39,444 [ActiveMQ Scheduler] org.apache.activemq.transport.InactivityMonitor: Message received since last read check, resetting flag:
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    DEBUG 2007-04-13 15:57:43,022 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Message received of type: org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 15:57:43,022 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Message received on queue://queue.afaria.fdcs-workpack-xml (org.apache.activemq.command.ActiveMQQueue)
    DEBUG 2007-04-13 15:57:43,022 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Message CorrelationId is: 456fc91c-ef55-4823-9b91-e2dca57be287
    DEBUG 2007-04-13 15:57:43,022 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Jms Message Id is: ID:BEXTINTB01-2040-1176460135046-3:95:6:1:1
    DEBUG 2007-04-13 15:57:43,054 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsMessageReceiver: Message Received from: jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 15:57:43,069 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsMessageReceiver: Message Payload:
    ActiveMQTextMessage {commandId = 51, responseRequired = false, messageId = ID:BEXTINTB01-2040-1176460135046-3:95:6:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:BEXTIN...
    DEBUG 2007-04-13 15:57:43,069 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Applying transformer Base64Decoder (org.mule.transformers.codec.Base64Decoder)
    DEBUG 2007-04-13 15:57:43,069 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Object before transform: SUQ9NTNkN2I4ZGItZTljZi0xMWRiLWJiYzMtYWJjMzA4ZjRmOWE2O0lEPTUzZDdiOGRiLWU5Y2YtMTFkYi1iYmMzLWFiYzMwOGY0ZjlhNg==
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Object after transform: {73,68,61,53,51,100,55,98,56,100,98,45,101,57,99,102,45,49,49,100,98,45,98,98,99,51,45,97,98,99,51,48,56,102,52,102,57,97,54,59,73,68,61,53,51,100,55,98,56,100 [..]}
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: The transformed object is of expected type. Type is: [B
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Parsing session header: ID=53d7b8db-e9cf-11db-bbc3-abc308f4f9a6;ID=53d7b8db-e9cf-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Added Session variable: ID=53d7b8db-e9cf-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Added Session variable: ID=53d7b8db-e9cf-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSession: Got session with id: 53d7b8db-e9cf-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.inbound.ForwardingConsumer: Attempting to route event
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.inbound.ForwardingConsumer: Attempting to route event
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Applying transformer JMSMessageToObject (org.mule.providers.jms.transformers.JMSMessageToObject)
    DEBUG 2007-04-13 15:57:43,116 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Object before transform: ActiveMQTextMessage {commandId = 51, responseRequired = false, messageId = ID:BEXTINTB01-2040-1176460135046-3:95:6:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:BEXTIN...
    DEBUG 2007-04-13 15:57:43,132 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Source object is org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 15:57:43,132 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Message type received is: org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 15:57:43,132 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Resulting object is java.lang.String
    DEBUG 2007-04-13 15:57:43,132 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Object after transform: <?xml version='1.0' encoding='windows-1252'?><WorkOrder No="12032881"><EquipmentDetail><SiteName>GROVE WAY ESHER</SiteName><EquipNo>000000029859</EquipNo><Locality></Locality><PlantNumber>1K0803 -LB...
    DEBUG 2007-04-13 15:57:43,132 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: The transformed object is of expected type. Type is: java.lang.String
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM
    send a packet PING : ping
    Received a packet PING : ping
    Send a packet PING : ok
    read a packet PING : ok
    Got ping response from JVM

    When we copy mule-core-1.3.2.jar into the /lib/mule folder the message is written to the Directory as per the following logging

    **********************************************************************
    * Mule ESB and Integration Platform version Not Set *
    * Not Set *
    * For more information go to http://mule.mulesource.org *
    * *
    * Server started: 13 April 2007 16:03:48 o'clock BST *
    * Server ID: dfm-afaria-client *
    * JDK: 1.5.0 (mixed mode, sharing) *
    * OS: Windows 2003 - Service Pack 1 (5.2, x86) *
    Pause reading child output to share cycles.
    * Host: BEXTAFAR01 (10.56.17.44) *
    * *
    * Agents Running: *
    * Rmi Registry: rmi://localhost:1099 *
    * JMX Agent: service:jmx:rmi:///jndi/rmi://localhost:1099/server *
    * Mule Admin: accepting connections on tcp://localhost:60504 *
    **********************************************************************
    DEBUG 2007-04-13 16:03:49,286 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.WireFormatNegotiator: tcp://localhost/127.0.0.1:61616 before negotiation: OpenWireFormat{version=1, cacheEnabled=false, stackTraceEnabled=false, tightEncodingEnabled=false, sizePrefixDisabled=false}
    INFO 2007-04-13 16:03:49,286 [WrapperSimpleAppMain] org.mule.MuleServer: Mule Server initialized.
    WrapperSimpleApp: main method completed
    DEBUG 2007-04-13 16:03:49,286 [ActiveMQ Transport: tcp://localhost/127.0.0.1:61616] org.apache.activemq.transport.WireFormatNegotiator: tcp://localhost/127.0.0.1:61616 after negotiation: OpenWireFormat{version=1, cacheEnabled=true, stackTraceEnabled=true, tightEncodingEnabled=true, sizePrefixDisabled=false}
    DEBUG 2007-04-13 16:03:49,318 [UMOManager.3] org.mule.providers.jms.JmsConnector: Starting receiver on endpoint: jms://queue.afaria.fdcs-workpack-xml
    INFO 2007-04-13 16:03:49,318 [UMOManager.3] org.mule.providers.jms.JmsConnector: Connector: org.mule.providers.jms.JmsConnector has been started
    DEBUG 2007-04-13 16:03:49,318 [UMOManager.3] org.mule.providers.SimpleRetryConnectionStrategy: Successfully connected to org.mule.providers.jms.JmsConnector@100363
    DEBUG 2007-04-13 16:03:49,318 [UMOManager.5] org.mule.providers.jms.JmsMessageReceiver: Attempting to connect to: jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 16:03:49,333 [UMOManager.5] org.mule.providers.jms.JmsConnector: Retrieving new jms session from connection: topic=false, transacted=false, ack mode=1, nolocal=false
    DEBUG 2007-04-13 16:03:49,458 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: of type: org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 16:03:49,458 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Message received on queue://queue.afaria.fdcs-workpack-xml (org.apache.activemq.command.ActiveMQQueue)
    DEBUG 2007-04-13 16:03:49,458 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Message CorrelationId is: 3d065b90-8c9b-4b30-9c0d-b98f49041362
    DEBUG 2007-04-13 16:03:49,458 [ActiveMQ Session Task] org.mule.providers.jms.JmsMessageReceiver: Jms Message Id is: ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1
    DEBUG 2007-04-13 16:03:49,490 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsMessageReceiver: Message Received from: jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 16:03:49,490 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsMessageReceiver: org.mule.providers.jms.JmsMessageAdapter{id=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1, payload=org.apache.activemq.command.ActiveMQTextMessage, correlationId=3d065b90-8c9b-4b30-9c0d-b98f49041362, correlationGroup=-1, correlationSeq=-1, encoding=UTF-8, exceptionPayload=null, properties={ MULE_ORIGINATING_ENDPOINT=endpoint.jms.queue.dfm.fdcs.workpack.xml DFM_PLANT_NO=1K0803 -LBX JMSDeliveryMode=2 originalFilename=WO.12032882.MJ.xml DFM_DISTRICT_CODE=0001 JMSCorrelationID=3d065b90-8c9b-4b30-9c0d-b98f49041362 JMSMessageID=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1 DFM_WORKPACK_TYPE=ASSIGN DFM_WORKGROUPS=WGMOB99 JMSDestination=queue://queue.afaria.fdcs-workpack-xml JMSTimestamp=1176476595285 JMSRedelivered=false JMSExpiration=0 JMSPriority=4 MULE_SESSION=SUQ9MTlmZjY5NGYtZTlkMC0xMWRiLWJiYzMtYWJjMzA4ZjRmOWE2O0lEPTE5ZmY2OTRmLWU5ZDAtMTFkYi1iYmMzLWFiYzMwOGY0ZjlhNg== MULE_ENDPOINT=jms://queue.afaria.fdcs-workpack-xml DFM_WORKORDER=12032882 DFM_WORK_CLOSABLE=Y MULE_CORRELATION_ID=3d065b90-8c9b-4b30-9c0d-b98f49041362 }}
    DEBUG 2007-04-13 16:03:49,490 [UMOManager.5] org.mule.providers.SimpleRetryConnectionStrategy: Successfully connected to jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 16:03:49,505 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsMessageReceiver: Message Payload:
    ActiveMQTextMessage {commandId = 69, responseRequired = false, messageId = ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:BEXTIN...
    DEBUG 2007-04-13 16:03:49,505 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Applying transformer Base64Decoder (org.mule.transformers.codec.Base64Decoder)
    DEBUG 2007-04-13 16:03:49,505 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Object before transform: SUQ9MTlmZjY5NGYtZTlkMC0xMWRiLWJiYzMtYWJjMzA4ZjRmOWE2O0lEPTE5ZmY2OTRmLWU5ZDAtMTFkYi1iYmMzLWFiYzMwOGY0ZjlhNg==
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: Object after transform: {73,68,61,49,57,102,102,54,57,52,102,45,101,57,100,48,45,49,49,100,98,45,98,98,99,51,45,97,98,99,51,48,56,102,52,102,57,97,54,59,73,68,61,49,57,102,102,54,57,52 [..]}
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Decoder: The transformed object is of expected type. Type is: [B
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Parsing session header: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6;ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Added Session variable: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Added Session variable: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSession: Got session with id: 19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.inbound.ForwardingConsumer: Attempting to route event
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.inbound.ForwardingConsumer: Attempting to route event
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Applying transformer JMSMessageToObject (org.mule.providers.jms.transformers.JMSMessageToObject)
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Object before transform: ActiveMQTextMessage {commandId = 69, responseRequired = false, messageId = ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1, originalDestination = null, originalTransactionId = null, producerId = ID:BEXTIN...
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Source object is org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 16:03:49,552 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Message type received is: org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Resulting object is java.lang.String
    DEBUG 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: Object after transform: <?xml version='1.0' encoding='windows-1252'?><WorkOrder No="12032882"><EquipmentDetail><SiteName>GROVE WAY ESHER</SiteName><EquipNo>000000029859</EquipNo><Locality></Locality><PlantNumber>1K0803 -LB...
    DEBUG 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.JMSMessageToObject: The transformed object is of expected type. Type is: java.lang.String
    INFO 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.outbound.AbstractRecipientList: Workgroups:WGMOB99
    INFO 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.outbound.AbstractRecipientList: Existing workgroups:null
    DEBUG 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.service.ConnectorServiceDescriptor: Loading endpointUri resolver: org.mule.providers.file.FileEndpointBuilder
    DEBUG 2007-04-13 16:03:49,583 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: CorrelationId is already set to '3d065b90-8c9b-4b30-9c0d-b98f49041362' , not setting it again
    DEBUG 2007-04-13 16:03:49,583 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: Message being sent to: file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false
    DEBUG 2007-04-13 16:03:49,583 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: org.mule.providers.DefaultMessageAdapter{id=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1, payload=java.lang.String, correlationId=3d065b90-8c9b-4b30-9c0d-b98f49041362, correlationGroup=1, correlationSeq=-1, encoding=UTF-8, exceptionPayload=null, properties={ MULE_ORIGINATING_ENDPOINT=endpoint.jms.queue.dfm.fdcs.workpack.xml DFM_PLANT_NO=1K0803 -LBX JMSDeliveryMode=2 originalFilename=WO.12032882.MJ.xml DFM_DISTRICT_CODE=0001 JMSCorrelationID=3d065b90-8c9b-4b30-9c0d-b98f49041362 JMSMessageID=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1 DFM_WORKPACK_TYPE=ASSIGN DFM_WORKGROUPS=WGMOB99 JMSDestination=queue://queue.afaria.fdcs-workpack-xml JMSTimestamp=1176476595285 JMSRedelivered=false JMSExpiration=0 JMSPriority=4 MULE_ENDPOINT=jms://queue.afaria.fdcs-workpack-xml DFM_WORKORDER=12032882 DFM_WORK_CLOSABLE=Y MULE_CORRELATION_ID=3d065b90-8c9b-4b30-9c0d-b98f49041362 MULE_CORRELATION_GROUP_SIZE=1 }}
    DEBUG 2007-04-13 16:03:49,583 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: Message payload:
    <?xml version='1.0' encoding='windows-1252'?><WorkOrder No="12032882"><EquipmentDetail><SiteName>GROVE WAY ESHER</SiteName><EquipNo>000000029859</EquipNo><Locality></Locality><PlantNumber>1K0803 -LBX</PlantNumber></EquipmentDetail><WorkOrderDetail><PlannedStartDate> </PlannedStartDate><WorkOrderNumber>12032882</WorkOrderNumber><AssignedDate>13/04/2007</AssignedDate><PostCode></PostCode><Date>13/04/07</Date><WOExtendedText></WOExtendedText><Priority></Priority><DrugAbuseEvidence></DrugAbuseEvidence><GridReference>TQ1419966207</GridReference><WorkOrderType>MJ</WorkOrderType><Asbestos></Asbestos><SapNo>E07210702</SapNo><ConfinedSpaces></ConfinedSpaces><SpecialNeeds></SpecialNeeds><WorkOrderDesc>Inspect LV Link Box</WorkOrderDesc><CreationDateTime>2007/04/13</CreationDateTime><OperationalRestrictions> </OperationalRestrictions><StandardJobNumber>IN0002</StandardJobNumber><EnvironmentalText></EnvironmentalText><Address>,,,</Address><WO_CLOSEABLE>Y</WO_CLOSEABLE><DistrictCode>0001</DistrictCode><KeyRisks> </KeyRisks></WorkOrderDetail></WorkOrder>
    DEBUG 2007-04-13 16:03:49,583 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSession: Session has received synchronous event on endpoint: MuleEndpoint
    Unknown macro: {connector=org.mule.providers.file.FileConnector@4f459c, endpointUri=file}

    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.BeanUtils: Cloning bean: org.mule.providers.SingleAttemptConnectionStrategy
    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.PropertyUtils: setSimpleProperty: Invoking method public void org.mule.providers.AbstractConnectionStrategy.setDoThreading(boolean) with value false (class java.lang.Boolean)
    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Adding property to session header: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleSessionHandler: Adding session header to message: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6;ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Encoder: Applying transformer Base64Encoder (org.mule.transformers.codec.Base64Encoder)
    DEBUG 2007-04-13 16:03:49,599 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Encoder: Object before transform: ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6;ID=19ff694f-e9d0-11db-bbc3-abc308f4f9a6
    DEBUG 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Encoder: Object after transform: SUQ9MTlmZjY5NGYtZTlkMC0xMWRiLWJiYzMtYWJjMzA4ZjRmOWE2O0lEPTE5ZmY2OTRmLWU5ZDAtMTFkYi1iYmMzLWFiYzMwOGY0ZjlhNg==
    DEBUG 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.transformers.codec.Base64Encoder: The transformed object is of expected type. Type is: java.lang.String
    DEBUG 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.file.FileMessageDispatcher: Attempting to connect to: file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false
    DEBUG 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.file.FileMessageDispatcher: Attempting to connect to: file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false
    INFO 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.file.FileMessageDispatcher: Successfully connected to: file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false
    DEBUG 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.file.FileMessageDispatcher: deleteFile property = false
    INFO 2007-04-13 16:03:49,615 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.file.FileMessageDispatcher: Writing file to: D:\AfarRepository\WorkOrderXML\WGMOB99\WO.12032882.MJ.xml
    DEBUG 2007-04-13 16:03:49,630 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: Response message from sending to: file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false
    DEBUG 2007-04-13 16:03:49,630 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: org.mule.providers.DefaultMessageAdapter{id=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1, payload=java.lang.String, correlationId=3d065b90-8c9b-4b30-9c0d-b98f49041362, correlationGroup=1, correlationSeq=-1, encoding=UTF-8, exceptionPayload=null, properties={ MULE_ORIGINATING_ENDPOINT=endpoint.jms.queue.dfm.fdcs.workpack.xml DFM_PLANT_NO=1K0803 -LBX JMSDeliveryMode=2 originalFilename=WO.12032882.MJ.xml DFM_DISTRICT_CODE=0001 deleteFile=false JMSCorrelationID=3d065b90-8c9b-4b30-9c0d-b98f49041362 JMSMessageID=ID:BEXTINTB01-2040-1176460135046-3:95:8:1:1 connector=fileWorkpackDestination JMSDestination=queue://queue.afaria.fdcs-workpack-xml JMSTimestamp=1176476595285 DFM_WORKGROUPS=WGMOB99 DFM_WORKPACK_TYPE=ASSIGN JMSRedelivered=false JMSExpiration=0 JMSPriority=4 MULE_SESSION=SUQ9MTlmZjY5NGYtZTlkMC0xMWRiLWJiYzMtYWJjMzA4ZjRmOWE2O0lEPTE5ZmY2OTRmLWU5ZDAtMTFkYi1iYmMzLWFiYzMwOGY0ZjlhNg== MULE_ENDPOINT=file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false DFM_WORKORDER=12032882 DFM_WORK_CLOSABLE=Y MULE_CORRELATION_ID=3d065b90-8c9b-4b30-9c0d-b98f49041362 synchronous=true MULE_CORRELATION_GROUP_SIZE=1 }}
    DEBUG 2007-04-13 16:03:49,646 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] com.amtsybex.dfm.mule.routing.outbound.WorkgroupRouter: Message payload:
    <?xml version='1.0' encoding='windows-1252'?><WorkOrder No="12032882"><EquipmentDetail><SiteName>GROVE WAY ESHER</SiteName><EquipNo>000000029859</EquipNo><Locality></Locality><PlantNumber>1K0803 -LBX</PlantNumber></EquipmentDetail><WorkOrderDetail><PlannedStartDate> </PlannedStartDate><WorkOrderNumber>12032882</WorkOrderNumber><AssignedDate>13/04/2007</AssignedDate><PostCode></PostCode><Date>13/04/07</Date><WOExtendedText></WOExtendedText><Priority></Priority><DrugAbuseEvidence></DrugAbuseEvidence><GridReference>TQ1419966207</GridReference><WorkOrderType>MJ</WorkOrderType><Asbestos></Asbestos><SapNo>E07210702</SapNo><ConfinedSpaces></ConfinedSpaces><SpecialNeeds></SpecialNeeds><WorkOrderDesc>Inspect LV Link Box</WorkOrderDesc><CreationDateTime>2007/04/13</CreationDateTime><OperationalRestrictions> </OperationalRestrictions><StandardJobNumber>IN0002</StandardJobNumber><EnvironmentalText></EnvironmentalText><Address>,,,</Address><WO_CLOSEABLE>Y</WO_CLOSEABLE><DistrictCode>0001</DistrictCode><KeyRisks> </KeyRisks></WorkOrderDetail></WorkOrder>
    WARN 2007-04-13 16:03:49,646 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.impl.MuleEvent: Property on the current message MULE_ENDPOINT=file:///d:/AfarRepository/WorkOrderXML/WGMOB99?connector=fileWorkpackDestination&synchronous=true&deleteFile=false overrides property on the previous event: MULE_ENDPOINT=jms://queue.afaria.fdcs-workpack-xml
    DEBUG 2007-04-13 16:03:49,646 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: Applying transformer ObjectToJMSMessage (org.mule.providers.jms.transformers.ObjectToJMSMessage)
    DEBUG 2007-04-13 16:03:49,646 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: Object before transform: <?xml version='1.0' encoding='windows-1252'?><WorkOrder No="12032882"><EquipmentDetail><SiteName>GROVE WAY ESHER</SiteName><EquipNo>000000029859</EquipNo><Locality></Locality><PlantNumber>1K0803 -LB...
    DEBUG 2007-04-13 16:03:49,646 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: Source object is java.lang.String
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.BeanUtils: Cloning bean: org.mule.providers.SimpleRetryConnectionStrategy
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.PropertyUtils: setSimpleProperty: Invoking method public void org.mule.providers.AbstractConnectionStrategy.setDoThreading(boolean) with value true (class java.lang.Boolean)
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.PropertyUtils: setSimpleProperty: Invoking method public void org.mule.providers.SimpleRetryConnectionStrategy.setFrequency(long) with value 10000 (class java.lang.Long)
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.apache.commons.beanutils.PropertyUtils: setSimpleProperty: Invoking method public void org.mule.providers.SimpleRetryConnectionStrategy.setRetryCount(int) with value -1 (class java.lang.Integer)
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.JmsConnector: Retrieving new jms session from connection: topic=false, transacted=false, ack mode=1, nolocal=false
    DEBUG 2007-04-13 16:03:49,661 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: Resulting object is org.apache.activemq.command.ActiveMQTextMessage
    DEBUG 2007-04-13 16:03:49,677 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: Object after transform: ActiveMQTextMessage {commandId = 0, responseRequired = false, messageId = null, originalDestination = null, originalTransactionId = null, producerId = null, destination = null, transactionId = null, e...
    DEBUG 2007-04-13 16:03:49,677 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.jms.transformers.ObjectToJMSMessage: The transformed object is of expected type. Type is: org.apache.activemq.command.ActiveMQTextMessage

In particular I have noticed some classes in the logging are not being called:
INFO 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.outbound.AbstractRecipientList: Workgroups:WGMOB99
INFO 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.routing.outbound.AbstractRecipientList: Existing workgroups:null
DEBUG 2007-04-13 16:03:49,568 [jmsAfariaConnector.endpoint.jms.queue.afaria.fdcs.workpack.xml.receiver.1] org.mule.providers.service.ConnectorServiceDescriptor: Loading endpointUri resolver: org.mule.providers.file.FileEndpointBuilder

Can you please let me know if this is an issue with the code or simply if the configuration currently set up requires updating.

Many thanks

Martin

Activity

Hide
Andrew Perepelytsya added a comment -

1.3.3 is no longer supported

Show
Andrew Perepelytsya added a comment - 1.3.3 is no longer supported

People

Vote (1)
Watch (2)

Dates

  • Created:
    Updated:
    Resolved: