• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

WEBLOGIC 10.3.6/MQ7 loss messages

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi guy,

i have an J2ee application on Weblogic 10.3.6 that send messagge to WMQ 7 with Foreign Jms Server.



The messgges are send from a simple servlet that open a JTA TRANSACTION and use COVER JMS WRAPPER

fo dinamic enlisting of XAConnectionFactory. The session JMS is not transacted.

I have used also the obeject of weblogic api



TransactionHelper helperTransaction = TransactionHelper.getTransactionHelper();

weblogic.transaction.Transaction transactionWeblogic = null;

transactionWeblogic = (weblogic.transaction.Transaction) helperTransaction.getTransaction();

to monitor the state of JTA transaction .



in this scenario i loss 50% of message that from servlet are sent on MQ but i not have exception

and the object transactionWeblogic that i use post commit to have information about transaction said :



"Status WeblogicTransaction commit Committed" .



the cover jms wrapper is linked in web-xbl o f web-application that coìntains the servlet that send the messages

<resource-ref>

<res-ref-name>jms/iss/QCF</res-ref-name>

<res-type>javax.jms.QueueConnectionFactory</res-type>

<res-auth>Container</res-auth>

<res-sharing-scope>Shareable</res-sharing-scope>

</resource-ref>





How is possible that i loss 50% of messages send and the log said always that the transaction have

committed ?



Any suggestion ?

Is possible that there are particular condition in the wich fail th COVER JMS WRAPPER ?



Thank in advance.



Mike.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic