• 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

uploading the file from one servlet to another one?

 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I am trying to resolve one issue like..

Actually I need to send a set of data like array or some groups of data, thru the servlets.

eg:

emp{
name=sam,
id=1001,
dept=Infotech
}

personal{
phone=9841763772
credit no=999999999999
personelno=3131313131
}

emp and personal is the two group which have the corresponding values like name, phone,credit,personelno..

Ineed to send this thru the servlets to another servelts(may be running on differnet machine or different environtment)

what all are the possible way?


I apologize for the poor english...

Thanks in advance

I like when you call me as Shaan....
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One popular way is to use web services.
Engines like Apache Axis make this pretty easy to do.

Since you've got Java on both ends you could also look into RMI or Java Messaging.

You might also be able to leverage a shared database.
 
reply
    Bookmark Topic Watch Topic
  • New Topic