473,408 Members | 2,832 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,408 software developers and data experts.

Sending a binary file (and other stuffs) with fsockopen

Hi!

I'm havin a problem about sending a binary file with fsockopen. My
problem is solved when i do:

-------------------->8------CODE-----------------------------
<form action="200.120...../file.php" method="POST"
enctype="multipart/form-data">
<form name="file" />
<form name="ip_01" />
<form name="ip_02" />
< (...) submit button (...)>
</form>
-------------------->8------CODE-----------------------------

where file must be a binary file (in this case is a zip file) and
ip_0X is a number.. Some ip from my internal network...

But i was trying a script to do this automaticaly, like:
-------------------->8------CODE-----------------------------
<?

$host='200.120.....';
$port=80;
$path='/file.php';

// Ip Values :)
$ip_01 = "192.168...."
$ip_02 = someRandonIp();

// File to POST
$file = "file.zip"

$file_array[0] = $file; // the file
$content_type = "application/x-zip-compressed"; // the file mime type

srand((double)microtime()*1000000);
$boundary = "---------------------------".substr(md5(rand(0,32000)),0,10);

$data = "--$boundary";

for($i=0;$i<count($file_array);$i++){
$content_file = join("", file($file_array[$i]));

$data.="
Content-Disposition: form-data; name=\"$file_array[$i]\";
filename=\"$file_array[$i]\"
Content-Type: $content_type
$content_file
--$boundary";
}

$data.="--\r\n\r\n";

// ==== I think my error is here!!! ==== //
$path = $path . "?ip_01=$ip_01&ip_02=$ip_02";

$msg = "GET $path HTTP/1.0\r\n";
$msg .= "Content-Type: multipart/form-data; boundary=$boundary\r\n";
$msg .= "Content-Length: ". strlen($data) ."\r\n\r\n";

echo $msg . "\n";

// open the connection
$f = fsockopen($host, $port);
fputs($f, $msg.$data);
$result="";
while (!feof($f)) $result .= fread($f,32000);
fclose($f);

echo $result . "\n";
?>
-------------------->8------CODE-----------------------------
file.php is not receiving ip_01 and ip_2 .. So i thin the problem is
in:

-------------------->8------CODE-----------------------------
$path = $path . "?ip_01=$ip_01&ip_02=$ip_02";
-------------------->8------CODE-----------------------------

Any Ideia?
Thanks!
Jul 17 '05 #1
3 4847
Ot?vio wrote:
// ==== I think my error is here!!! ==== //
$path = $path . "?ip_01=$ip_01&ip_02=$ip_02";

$msg = "GET $path HTTP/1.0\r\n";
$msg .= "Content-Type: multipart/form-data; boundary=$boundary\r\n";
$msg .= "Content-Length: ". strlen($data) ."\r\n\r\n";

echo $msg . "\n";


Yes, it probably is, because it looks like the only thing you want to do is
to call the script with some parameters and get the response.

For this, you don't need to send the Content-Type/Length headers; the
following will suffice:

$msg = "GET $path HTTP/1.0\r\n";
$msg .= "Host: $host\r\n\r\n";
JW

Jul 17 '05 #2
Janwillem Borleffs wrote:
Yes, it probably is, because it looks like the only thing you want to
do is to call the script with some parameters and get the response.

For this, you don't need to send the Content-Type/Length headers; the
following will suffice:

$msg = "GET $path HTTP/1.0\r\n";
$msg .= "Host: $host\r\n\r\n";


Hmmm.. had another look at your message and realized that this reply isn't
correct. You must think of the following rules if you want to send both
parameters and binary data to a script pver HTTP:

1. You can only use POST to send binary data (as in file uploads)
2. Additional parameters should be included in seperate boundaries when they
are part of a multipart message

I have posted an example script, which might be helpful:

http://www.jwscripts.com/playground/postdata.phps
JW

Jul 17 '05 #3
Hello,

on 02/11/2005 08:47 PM Ot?vio said the following:
Hi!

I'm havin a problem about sending a binary file with fsockopen. My
problem is solved when i do:


You should submit it with the POST method and the other variables should
be also submitted in the request body.

Anyway, you may want to try this HTTP client class that can submit a
POST request with uploaded files and other form values correctly:

http://www.phpclasses.org/httpclient
--

Regards,
Manuel Lemos

PHP Classes - Free ready to use OOP components written in PHP
http://www.phpclasses.org/

PHP Reviews - Reviews of PHP books and other products
http://www.phpclasses.org/reviews/

Metastorage - Data object relational mapping layer generator
http://www.meta-language.net/metastorage.html
Jul 17 '05 #4

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

Similar topics

1
by: coder_1024 | last post by:
I'm trying to send a packet of binary data to a UDP server. If I send a text string, it works fine. If I attempt to send binary data, it sends a UDP packet with 0 bytes of data (just the...
2
by: Loopy | last post by:
I'm trying to write a script that will connect to an external site so that I can get access referer information in a database on another one of my sites. I got errors, so I tried to write a script...
5
by: hntgzr | last post by:
I am trying to include a function in a .php file on a different server from the main .php files. I am using: include_path=http://www.anotherserver.com/foldername;...
9
by: fipaj1992 | last post by:
Hi! I have very big problem with fsockopen() function. It is very important... That's code: <?php $test = fsockopen ('chrome.pl', '8080'); ?>
4
by: yawnmoth | last post by:
Is it possible to send http requests with curl but not have curl wait for the response? The reason I ask is because I'd like to code a web app that can sorta start time consuming processes...
9
by: Miro | last post by:
VB 2003 at the end of the code, this works great. bytCommand = Encoding.ASCII.GetBytes("testing hello send text") udpClient.Send(bytCommand, bytCommand.Length) and this recieves it Dim...
3
by: Aetherweb | last post by:
Hi, I need to use fsockopen to open a connection, send a GET request and read in the response. At the moment I'm trying the following code, but I think it's ignoring the actual URL included in...
3
by: Christoph Burschka | last post by:
Is there some way to get the dimensions of an image, given the binary data of the image, without having to write it to a temporary file? It seems that getimagesize() will only take a filename,...
2
by: ksheerasagar17 | last post by:
Hello All, Scenario: Sending an image through webservice as byte array to an Java webservice. The Problem1: The webservice method image property expects (data type) SByte rather than Byte...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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.