• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

about Pay for Itinerary

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In the usercase of Pay for Itinerary:
"System sends payment transaction to TransMaster and waits for authorization

System sends email confirmation of successful payment to customers email address once credit authorization is returned
".
And the TransMaster have an interface that will use XML-RPC over HTTPs.
Should I use JMS to send the payment transaction or just sent a https request to TransMaster by SLSB?
 
Ranch Hand
Posts: 124
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi William,

I dont see a need for using JMS in the given situation, as there is no mention of asynchronous processing.

Just to add more weight to my statement, I have'nt seen any other SCEA who has used JMS as part of their assignment.

Good luck.
 
Ranch Hand
Posts: 270
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by dinesh pande:
I have'nt seen any other SCEA who has used JMS as part of their assignment.



Just curious, how could you know?
 
dinesh pande
Ranch Hand
Posts: 124
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
:-) you got me..

I have'nt said that "no one used". Instead I said, "I have'nt seen any one use ..". By that, I mean I have'nt come across posts by successful SCEA candidates who mentioned that they have used JMS.

For all you know, I could be wrong and several of them could be using JMS ( which is less likely though)
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm one who used JMS 'cause that way is simple
to have response timeout - valuable feature in
network communications. Beside, container is able to manage
clients' threads while waiting for response, which makes
that solution scalable.
 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm one who used JMS 'cause that way is simple
to have response timeout - valuable feature in
network communications. Beside, container is able to manage
clients' threads while waiting for response, which makes
that solution scalable.

I do not like the idea for using JMS for this:
1. "Simple to have response time." Remember one of the SLA with TransMaster of no more than 3 sec during peak time.
2. Scalability is perfectly achieved by SLSB.
3. Thread-safe too.

MDB's, when dealing with asynchronous, clearly refer to requests that might take some long time to response. Do you really think that 3 sec, is a required?

Of course, you can still use JMS components. As long as you justify the reason, specially over other J2EE components.
 
Won't you be my neighbor? - Fred Rogers. tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic