Click here to Skip to main content
15,885,031 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All,

Hi. I want to create 1 application in which first i want to read data from excel file. Then want to store structure up to new line. and convert data into TLV format and send throw sockets.

What I have tried:

Does anyone help in the this application.
Please help me.
And thanks in advance.
Posted
Updated 9-Nov-17 21:29pm
Comments
Suvendu Shekhar Giri 10-Nov-17 0:15am    
anything you have tried so far?

1 solution

You asked for four tasks:

  1. Reading Excel / XML files on Linux
  2. Store structure up to new line: don't know what that means. If you mean handling data row wise: That should be provided by the used Excel reader.
  3. Convert data into TLV format: this is part of another step not mentioned by you: Defining a communication protocol. Such a protocol defines how the data to be send via network are organised. It usually contains a header with an identifier and general information followed by one or more payload sections (which might have their own header and use TLV for the data)
  4. Client - server applications: there are many examples in the net

As you can see you have four main tasks:

  1. Reading Excel / XML files: select a library
  2. Protocol definition: create your own or use an existing one (e.g. XML)
  3. Protocol implementation: depends on how data are provided by the reader library
  4. Sockets: server and client code
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900