Asked by duncanb7
at 2024-07-09 09:00:05
Point:500 Replies:9 POST_ID:828566USER_ID:11059
Topic:
PHP Scripting Language;Windows 2003 Server;Scripting Languages
I write a server/client php script for socket communication based on the reference link at
http://php.net/manual/en/sockets.examples.php
And I used same server address(163.77.88.6) and port number(10000) in server.php and client.php for socket communication
The client.php is running on my home PC xampp server. And it is no issue at all and the connection is establish and server socket is keep sending out non-stop message to client
such as "welcome you.." from my remote server site .And Client just receive the message and echo out on window console without stopping that is what I want to do.
Now I go to check netstat command on window and see
Port 10000 is still active and report two address, For example,
Local Addresss REmote Adress
========================================================
TCP 218.123.88.123:41345 163.77.88.6:10000 Established
The Local address is my home PC ISP provider address.
So Two address location is doing socket communcation without stopping.
Just want to know, Could I use other new C or PHP or Java program to
connect(or Direct Acess) the establed communication port and grab the data or message such as"Welcome you ..."
I tried to use php socket and set socket address for ISP address as 218.123.88.123:41345 but socket connection error "connection is refused "
Suppose what data is coming to my ADSL device on home PC, I should be able
to collect all data stream by other new applcation, RIght ?
The error whether it is related to Firewall or WIndow system issue ? Web Proxy is not working because the data is raw data not http repsonse data. Charles or Fiddle is http proxy only could NOT grab raw data for my case.
I google it , found there is similar topic like Window 2008 server DirectAcess or VPN
but it seems not easy to understand for me
I try one application for drect access I/O at http://www.codeproject.com/Articles/10263/Kport-Part-2-Direct-Access-I-O-Ports-under-Win-NT but the application is not working at all when type the established port number 10000
Please advise and hope you understand my this testing example for collecting data
from establish communcation port on my home pc
Duncan
http://php.net/manual/en/sockets.examples.php
And I used same server address(163.77.88.6) and port number(10000) in server.php and client.php for socket communication
The client.php is running on my home PC xampp server. And it is no issue at all and the connection is establish and server socket is keep sending out non-stop message to client
such as "welcome you.." from my remote server site .And Client just receive the message and echo out on window console without stopping that is what I want to do.
Now I go to check netstat command on window and see
Port 10000 is still active and report two address, For example,
Local Addresss REmote Adress
========================================================
TCP 218.123.88.123:41345 163.77.88.6:10000 Established
The Local address is my home PC ISP provider address.
So Two address location is doing socket communcation without stopping.
Just want to know, Could I use other new C or PHP or Java program to
connect(or Direct Acess) the establed communication port and grab the data or message such as"Welcome you ..."
I tried to use php socket and set socket address for ISP address as 218.123.88.123:41345 but socket connection error "connection is refused "
Suppose what data is coming to my ADSL device on home PC, I should be able
to collect all data stream by other new applcation, RIght ?
The error whether it is related to Firewall or WIndow system issue ? Web Proxy is not working because the data is raw data not http repsonse data. Charles or Fiddle is http proxy only could NOT grab raw data for my case.
I google it , found there is similar topic like Window 2008 server DirectAcess or VPN
but it seems not easy to understand for me
I try one application for drect access I/O at http://www.codeproject.com/Articles/10263/Kport-Part-2-Direct-Access-I-O-Ports-under-Win-NT but the application is not working at all when type the established port number 10000
Please advise and hope you understand my this testing example for collecting data
from establish communcation port on my home pc
Duncan