• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

accessing external inventory system by remote ejb call

 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am doing scea part-2. In my assignment there is an external Inventory System which is java based and owned by the client company itself for which I am supposed to develop the SuD. I am assuming that the InventorySystem have exposed remote EJB services to cater the need of the inventory checking required by SuD.From my SuD, I am making remote EJB call ( and not the Web Service call) to get the inventory level. I am also assuming that both the SuD and the Inventory system will be within the same firewall and no specific security measure is needed.
My confusions are following:
1) Is my assumption about the external inventory lookup through remote EJB call ( and NOT through the Web Service call) correct/possible?
2) Is my assumption about the requirement of no special security measurement correct?

Please provide your opinion/suggestions regarding this.
 
Greenhorn
Posts: 14
Netbeans IDE Firefox Browser Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would not recommend to change the requirements and that bold way.
 
Ranch Hand
Posts: 53
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds like a factory homes assignment, if it is, then its already assumed that the inventory system is web service based, i could agree with the second point if you describe it in your assumption list but I wouldn't agree with the first one as its already stated in the assignment description and in my opinion shouldn't be changed.
 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I am not getting what is your point.

If your requirement says "Java Based System" then you could have a WS call or EJB call or what ever. If your requirements specify it is a webservice then it is better to keep that way.

Why you want to change WS to a EJB call? I tried to design everything open standard as possible so that we can explain future proofing( eg. mobile application needs to check inventory).

Regarding the security, the assumptions is valid.

Unni
 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For your first assumption, either of EJB or webservice should be fine.. But for second one, you need to have some security considerations. Transport level security may not be required within LAN but request still needs to be authenticated and authorized.
 
reply
    Bookmark Topic Watch Topic
  • New Topic