Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 18th, 2007, 08:00 AM
Registered User
 
Join Date: Jan 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Socket Programming

Hello I am Developing an API in C#
which requires me to connect to a server and send and receive 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 cudn't 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

Regards,
Lisa
 
Old December 18th, 2007, 10:20 AM
samjudson's Avatar
Friend of Wrox
 
Join Date: Aug 2007
Posts: 2,128
Thanks: 1
Thanked 189 Times in 188 Posts
Default

byte[] temp = BitConverter.GetBytes(intValue);
Array.Reverse(temp);

socketWriter.Write(temp);

or something similar.


/- Sam Judson : Wrox Technical Editor -/





Similar Threads
Thread Thread Starter Forum Replies Last Post
GUI Socket Programming Ewura BOOK: Beginning Java 2 0 November 11th, 2006 12:41 PM
Socket Programming ashu_from_india General .NET 0 June 28th, 2005 12:02 PM
Socket programming vinodkalpaka J2EE 0 June 16th, 2005 02:43 AM
Socket Programming chinni Pro PHP 1 August 18th, 2003 03:59 PM
Socket Programming in Window Service rbharatha VS.NET 2002/2003 0 July 15th, 2003 01:09 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.