• 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

NX:Question about object serializable

 
Ranch Hand
Posts: 222
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does it mean I can simply write the code this way: the client send a String (or a line) to the Server such like "read 1" in which "read" is the command represents read(int recNo) and "1" is the recNo, then the Server should return a String(or a line) to the Client the specific record information such like "HotelName Price ..."?
Am I right?
 
Ranch Hand
Posts: 555
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi HaoZhe,

Does it mean I can simply ...


I don't quite understand your question. Could you try to specify your question?
Best,
Vlad
 
HaoZhe Xu
Ranch Hand
Posts: 222
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I mean I am going to write the Client-Server architecture like this: the client send a request to the server and then the server send back a reply.
e.g.
client: isLocked 1
server: yes (or no)
client: read 1
server: Northcote yes 3 $140
etc.
Am I right?
Is it object serializable?
 
reply
    Bookmark Topic Watch Topic
  • New Topic