473,396 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Socket Programming

Hello I am Developing an API in C#
which requires me to connect to a server and send and recieve data
i am able to create a socket
i need to send a data in the following Format (Protocol Frame)
<0x03><0x20><LLLL>Data....................<0x04>

i am able to do everything except the Lenght (LLLL) field which need to be 4 Bytes and should be in Big Endian Format
i tried doing everything but cudnt do it
i used host to network order method but didnt knew how to append it to the message i am supposed to send.
I'll appreciate any help on this issue


Thanks,
Lisa
Dec 18 '07 #1
2 1110
Plater
7,872 Expert 4TB
Sockets just send a stream of bytes.
Create a byte[] and fill in the byte values?


Note: I may have LLLL using the wrong << vs >> and it might need to count up not down.
Expand|Select|Wrap|Line Numbers
  1. byte[] myarray = new byte[7+LLLL];
  2.  
  3. myarray[0]=0x03;
  4. myarray[1]=0x20;
  5.  
  6. myarray[2]=  (byte)((Int64)(LLLL<<24));
  7. myarray[3]=  (byte)((Int64)(LLLL<<16));
  8. myarray[4]=  (byte)((Int64)(LLLL<<8));
  9. myarray[5]=  (byte)(LLLL)
  10.  
  11. //fill in the rest with your data
  12.  
  13. myarray[7+LLLL]=0x04;
  14.  
Also, it would probably be much easier if you made this a function that returned a byte[] and took in like a length and some data.
Dec 18 '07 #2
Dear Lisa,

On reciving end

for the String "<0x03><0x20><LLLL>Data....................<0x 04>"

byte b[];
byte a[];
a[0]=b[13];
a[1]=b[14];
a[2]=b[15];
a[3]=b[16];

Since it is big endian so actual value will be iht string form will be.

String lengthStr= ConvertintoString(a[3]) + ConvertintoString(a[2]) + ConvertintoString(a[1]) + ConvertintoString(a[0])

int x= ConvertIntoInteger(lengthStr)

This x would give you the length now in interger form.

Rakesh Setia
Dec 23 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: pyguy2 | last post by:
Issues of socket programming can be wierd, so I'm looking for some comments. In my python books I find exclusive use of socket.close(). From my other readings, I know about a "partial close...
5
by: John Sheppard | last post by:
Hi all, I am not sure that I am posting this in the right group but here it goes anyway. I am new to socket programming and I have been searching on the internet to the questions I am about to pose...
1
by: John Sheppard | last post by:
Thanks to everyone that responded to my previous Socket Programming question. Now I have run into some behavior that I don't quite understand. Programming environment. VS.NET 2003, C#, Windows...
5
by: mscirri | last post by:
The code below is what I am using to asynchronously get data from a PocketPC device. The data comes in fine in blocks of 1024 bytes but even when I send no data from the PocketPC constant blocks of...
2
by: djc | last post by:
I read a network programming book (based on framework 1.1) which indicated that you should 'never' use the RecieveTimeout or the SendTimeout 'socket options' on TCP sockets or you may loose data. I...
10
by: Uma - Chellasoft | last post by:
Hai, I am new to VB.Net programming, directly doing socket programming. In C, I will be able to map the message arrived in a socket directly to a structure. Is this possible in VB.Net. Can...
11
by: atlaste | last post by:
Hi, In an attempt to create a full-blown webcrawler I've found myself writing a wrapper around the Socket class in an attempt to make it completely async, supporting timeouts and some scheduling...
0
by: shonen | last post by:
I'm currently attempting to connect to a shoutcast server pull down the information from here and then I'll parse it. I got this working with the httplib, which was great, the problem is I want...
8
by: =?Utf-8?B?Sm9obg==?= | last post by:
Hi all, I am new to .net technologies. ASP.NET supports socket programming like send/receive in c or c++? I am developing web-site application in asp.net and code behind is Visual C#. In...
3
by: Stuart | last post by:
I am in the process of teaching myself socket programming. I am "playing around" with some simple echo server-client programs for m the book TCP/IP Sockets in C. The Server program is: ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.