• 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

exchange data between 2 application

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have 2 applications runningon my WebServer .How can i exchange data between 2 different application.That is when i click on a link or button from 1 app,a connection has to be estabilshed to the other application and fetch the records and show it in this application from which it was invoked and vice versa.

For Example if have a application called Office and a application called Home.From Office when i want to see the status of groceries at home ,when i click on a button ,it should show me a list of groceries at home.

and Vice versa from Home application if i want to check the list of holidays at the office ,on click i should be able to get the list .

So basically i want to exchange data between them .
how should i go about it.
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From what you're describing you just want a to be able to run one application while you're in the other, all from a browser on yet another computer.

That's as simple as putting in a link to the correct URL...
 
reply
    Bookmark Topic Watch Topic
  • New Topic