473,394 Members | 1,875 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,394 software developers and data experts.

Peculiar Error in Network Transmission

Hi,
I am trying to transfer data from a Unix machine to Windows machine
using C Network functions.

In unix i send image data to windows using send() function in a loop
running till the end of image data (length is known beforehand). sending 1022
bytes at a time

when i send binary image data, i use recv command in windows to get data
1022 bytes at a time.it works fine.
But when i try to send JPEG image data. Only the first 4 bytes of JPEG
header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
received, in the next send(), transmission starts from 1023 bytes after the
start of image data, from this point on data is transmitted and received
correctly.
I have observed that if Image data has consecutive zeros - 00 i.e 0x30
0x30. Data is either not read by recv() or transmitted by send() [i actually
dont know which command is at fault since both return 1022 bytes data
read/written].

Any help will be greatly appreciated.

thanks and regards
Nov 17 '05 #1
5 1203
Actually i figured out the problem, I am using a String Array to write data
from Image file and am using this String Array to transmit data using Send().
The 00 is a NULL character in C and when encountered in the array C thinks
the Array has ended.
But the JPEG image data i want to transfer contains a lot of NULL characters
(viewed using Hex editor), and i want to transfer the data through the
network. How can I use a BYTE Array in C? Any suggestions?

"Pravin Prabhu" wrote:
Hi,
I am trying to transfer data from a Unix machine to Windows machine
using C Network functions.

In unix i send image data to windows using send() function in a loop
running till the end of image data (length is known beforehand). sending 1022
bytes at a time

when i send binary image data, i use recv command in windows to get data
1022 bytes at a time.it works fine.
But when i try to send JPEG image data. Only the first 4 bytes of JPEG
header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
received, in the next send(), transmission starts from 1023 bytes after the
start of image data, from this point on data is transmitted and received
correctly.
I have observed that if Image data has consecutive zeros - 00 i.e 0x30
0x30. Data is either not read by recv() or transmitted by send() [i actually
dont know which command is at fault since both return 1022 bytes data
read/written].

Any help will be greatly appreciated.

thanks and regards

Nov 17 '05 #2
Are you using Winsock? Or some higher level wrapper library?

If you are using Winsock, the 3rd parameter to send() is the length in bytes
of the byte array (2nd parameter).

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:94**********************************@microsof t.com...
Actually i figured out the problem, I am using a String Array to write
data
from Image file and am using this String Array to transmit data using
Send().
The 00 is a NULL character in C and when encountered in the array C thinks
the Array has ended.
But the JPEG image data i want to transfer contains a lot of NULL
characters
(viewed using Hex editor), and i want to transfer the data through the
network. How can I use a BYTE Array in C? Any suggestions?

"Pravin Prabhu" wrote:
Hi,
I am trying to transfer data from a Unix machine to Windows machine
using C Network functions.

In unix i send image data to windows using send() function in a loop
running till the end of image data (length is known beforehand). sending
1022
bytes at a time

when i send binary image data, i use recv command in windows to get
data
1022 bytes at a time.it works fine.
But when i try to send JPEG image data. Only the first 4 bytes of
JPEG
header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
received, in the next send(), transmission starts from 1023 bytes after
the
start of image data, from this point on data is transmitted and received
correctly.
I have observed that if Image data has consecutive zeros - 00 i.e
0x30
0x30. Data is either not read by recv() or transmitted by send() [i
actually
dont know which command is at fault since both return 1022 bytes data
read/written].

Any help will be greatly appreciated.

thanks and regards

Nov 17 '05 #3
Hi Nishanth,
I am using Winsock on the windows side for recv().
Actually the send() command is in the unix side. I do give
the Length of the array (1022 bytes). but the problem is that there is a null
character at the 5th position of the array. There are a lot of null
characters in the image data stored in the array. Since NULL is the end of
string in C, i am facing problems sending the whole image data.

"Nishant Sivakumar" wrote:
Are you using Winsock? Or some higher level wrapper library?

If you are using Winsock, the 3rd parameter to send() is the length in bytes
of the byte array (2nd parameter).

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:94**********************************@microsof t.com...
Actually i figured out the problem, I am using a String Array to write
data
from Image file and am using this String Array to transmit data using
Send().
The 00 is a NULL character in C and when encountered in the array C thinks
the Array has ended.
But the JPEG image data i want to transfer contains a lot of NULL
characters
(viewed using Hex editor), and i want to transfer the data through the
network. How can I use a BYTE Array in C? Any suggestions?

"Pravin Prabhu" wrote:
Hi,
I am trying to transfer data from a Unix machine to Windows machine
using C Network functions.

In unix i send image data to windows using send() function in a loop
running till the end of image data (length is known beforehand). sending
1022
bytes at a time

when i send binary image data, i use recv command in windows to get
data
1022 bytes at a time.it works fine.
But when i try to send JPEG image data. Only the first 4 bytes of
JPEG
header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
received, in the next send(), transmission starts from 1023 bytes after
the
start of image data, from this point on data is transmitted and received
correctly.
I have observed that if Image data has consecutive zeros - 00 i.e
0x30
0x30. Data is either not read by recv() or transmitted by send() [i
actually
dont know which command is at fault since both return 1022 bytes data
read/written].

Any help will be greatly appreciated.

thanks and regards


Nov 17 '05 #4
You are trying to use null-terminated strings to store binary data. That's
your basic problem.

Instead use a char array [but do not use any string manipulation functions
on it] or use a void* instead. And then use the Buffer-Manipulation Routines
like memcpy, memcmp etc.

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
Hi Nishanth,
I am using Winsock on the windows side for recv().
Actually the send() command is in the unix side. I do give
the Length of the array (1022 bytes). but the problem is that there is a
null
character at the 5th position of the array. There are a lot of null
characters in the image data stored in the array. Since NULL is the end of
string in C, i am facing problems sending the whole image data.

"Nishant Sivakumar" wrote:
Are you using Winsock? Or some higher level wrapper library?

If you are using Winsock, the 3rd parameter to send() is the length in
bytes
of the byte array (2nd parameter).

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:94**********************************@microsof t.com...
> Actually i figured out the problem, I am using a String Array to write
> data
> from Image file and am using this String Array to transmit data using
> Send().
> The 00 is a NULL character in C and when encountered in the array C
> thinks
> the Array has ended.
> But the JPEG image data i want to transfer contains a lot of NULL
> characters
> (viewed using Hex editor), and i want to transfer the data through the
> network. How can I use a BYTE Array in C? Any suggestions?
>
> "Pravin Prabhu" wrote:
>
>> Hi,
>> I am trying to transfer data from a Unix machine to Windows
>> machine
>> using C Network functions.
>>
>> In unix i send image data to windows using send() function in a
>> loop
>> running till the end of image data (length is known beforehand).
>> sending
>> 1022
>> bytes at a time
>>
>> when i send binary image data, i use recv command in windows to
>> get
>> data
>> 1022 bytes at a time.it works fine.
>> But when i try to send JPEG image data. Only the first 4 bytes of
>> JPEG
>> header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
>> received, in the next send(), transmission starts from 1023 bytes
>> after
>> the
>> start of image data, from this point on data is transmitted and
>> received
>> correctly.
>> I have observed that if Image data has consecutive zeros - 00 i.e
>> 0x30
>> 0x30. Data is either not read by recv() or transmitted by send() [i
>> actually
>> dont know which command is at fault since both return 1022 bytes data
>> read/written].
>>
>> Any help will be greatly appreciated.
>>
>> thanks and regards



Nov 17 '05 #5
Hi Nishant,
Actually I am storing (binary) Image data which i obtain from
an imaging device in a Char Array. The Image data already has lots of null
characters as part of image data, so when i copy into a char array it
automatically becomes a null terminated string. and when i try to transmit
the Char array i face problems.

"Nishant Sivakumar" wrote:
You are trying to use null-terminated strings to store binary data. That's
your basic problem.

Instead use a char array [but do not use any string manipulation functions
on it] or use a void* instead. And then use the Buffer-Manipulation Routines
like memcpy, memcmp etc.

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
Hi Nishanth,
I am using Winsock on the windows side for recv().
Actually the send() command is in the unix side. I do give
the Length of the array (1022 bytes). but the problem is that there is a
null
character at the 5th position of the array. There are a lot of null
characters in the image data stored in the array. Since NULL is the end of
string in C, i am facing problems sending the whole image data.

"Nishant Sivakumar" wrote:
Are you using Winsock? Or some higher level wrapper library?

If you are using Winsock, the 3rd parameter to send() is the length in
bytes
of the byte array (2nd parameter).

--
Regards,
Nish [VC++ MVP]
http://www.voidnish.com
http://blog.voidnish.com
"Pravin Prabhu" <Pr**********@discussions.microsoft.com> wrote in message
news:94**********************************@microsof t.com...
> Actually i figured out the problem, I am using a String Array to write
> data
> from Image file and am using this String Array to transmit data using
> Send().
> The 00 is a NULL character in C and when encountered in the array C
> thinks
> the Array has ended.
> But the JPEG image data i want to transfer contains a lot of NULL
> characters
> (viewed using Hex editor), and i want to transfer the data through the
> network. How can I use a BYTE Array in C? Any suggestions?
>
> "Pravin Prabhu" wrote:
>
>> Hi,
>> I am trying to transfer data from a Unix machine to Windows
>> machine
>> using C Network functions.
>>
>> In unix i send image data to windows using send() function in a
>> loop
>> running till the end of image data (length is known beforehand).
>> sending
>> 1022
>> bytes at a time
>>
>> when i send binary image data, i use recv command in windows to
>> get
>> data
>> 1022 bytes at a time.it works fine.
>> But when i try to send JPEG image data. Only the first 4 bytes of
>> JPEG
>> header (FF D8 FF E0) are received. the rest of the 1018 bytes are not
>> received, in the next send(), transmission starts from 1023 bytes
>> after
>> the
>> start of image data, from this point on data is transmitted and
>> received
>> correctly.
>> I have observed that if Image data has consecutive zeros - 00 i.e
>> 0x30
>> 0x30. Data is either not read by recv() or transmitted by send() [i
>> actually
>> dont know which command is at fault since both return 1022 bytes data
>> read/written].
>>
>> Any help will be greatly appreciated.
>>
>> thanks and regards


Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Matthias Stock | last post by:
Hello, i want to simulate a transmission network. Therefore I must create some blocks, e.g. random integer generator, AWGN, etc. Does anyone know if there exist some libraries (for example...
1
by: Kim Hamilton | last post by:
Hello, I'm using a C++ program to write out a file using sopen(). The file is pointed to a network drive. Some times the network goes down, and the file errors out. Is there any way to spool...
1
by: Bekkali Hicham | last post by:
hi, i have already used xalan several times with success, but i have a error message that i don't understand, thanks for your help (Emplacement inconnu de l'erreur) Erreur XSLT...
1
by: James Fortune | last post by:
In order to get the records I want on a report I sometimes create a SQL string for the RecordSource and sometimes supply the criteria using the Filter Property. If I use the Filter Property rather...
2
by: Leonardo D'Ippolito | last post by:
Hi! I have two .NET win apps that need to communicate on a TCP/IP network. 'App A' must ask 'app B' if it's allowed to do some task, and 'app B' must authorize or prohibit it. How can I do...
1
by: Sammy | last post by:
I am using the following code on a company that hosts our web site. I have noticed lately that their mail server/smtp is unavailable several times a minute for a second or two. This is causing my...
4
by: Bgreer5050 | last post by:
I keep getting the following error on an asp form I have on my site. I know the smtp settings are correct, because if I take out the user fields (i.e. name, weight and assign a text string in code...
4
by: parez | last post by:
Hi, When does the socket (server) know when to stop reading. e.g. if i have a buffer = 25K and do networkStream.write twice.. what will the server read? 25k or 50K?
1
by: mariuchp | last post by:
Can somebody help me. Is it a good method to transfer large data accros network? The query returns about 1 milion rows, and I must transfer them to client application and generate .xml files....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.