0

I have a web application j2ee created with EJBs in JBOSS server, this application manage the employees , equipments .. plus it manage if there's any problem with the materials (notifications). for that i must create an android app ,so that every employee inside or outside the company can send to my j2ee web app the problem (and store it in the DB) he's facing, so that the admnistrator can answer him or go himself to see what the problem is. so i choose to do a hybrid android app (so that that employees open it from a brwoser on his computer or on his device if he doesn't have one 'correct me if i'm wrong ') , my problem i've ever worked with android (only made the first 'hello World'eclipse adt), can you please help me how can i start to build the hybrid android using the android sdk(eclipse) and how can i connect it to my web app j2ee ..

Than you very much please help me it's my final project to graduate ...

neustre
  • 107
  • 1
  • 2
  • 14

1 Answers1

0

Updated answer:

You can use a REST API to do that. Here's a good article on that subject: Calling RESTful services from your Android app

If you need help on creating the Rest webservices you can browse stackoverflow. There are tons of info, like this one: REST/JSON Web Services Java EE Framework or this one: Best Practices for securing a REST API / web service

Community
  • 1
  • 1
Filipe Silva
  • 21,189
  • 5
  • 53
  • 68
  • You have to put some work practicing you android development. You have multiple questions on stackoverflow to help you start developing for android, like [What is the fastest way to learn Android and quickly start developing apps?](http://stackoverflow.com/questions/4256734/what-is-the-fastest-way-to-learn-android-and-quickly-start-developing-apps). After you have a little practice with android, it gets easier to deal with interacting with webservices that you have on your web app. – Filipe Silva Jul 20 '13 at 16:12
  • ok. Thank you very much , I'm reading 3 books (hello android , headfirst mobil app and restfull web services) i only have a month to complete my work , that's why i'm asking on how to start quickly.. thank you for your answer :) – neustre Jul 20 '13 at 16:22
  • Updated my answer with some more useful info. – Filipe Silva Jul 23 '13 at 01:36
  • If you feel that this answered your question, mark the answer as accepted. (See [here](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work/5235#5235) for context on why it is important) – Filipe Silva Jul 23 '13 at 02:03