Consigo enviar datos por ajax(jquery) al servidor TCP el cual esta corriendo por linea de comandos, pero al parecer el servidor es incapaz de manejarlos.
Desde este JS/HTML pretendo enviar datos al servidor.
<script type="text/javascript">
$(document).ready(function(){
$("#bloquear").click(function(){
$.post("http://localhost/proyectodam/app/Lib/ServerSocket.php", {op: 1});
});
});
</script>
Servidor en PHP.
<?php
namespace proyectodam\Lib;
try{
set_time_limit(0);
$address = '127.0.0.1';
$port = 5555;
// Create a TCP Stream socket
$sock = socket_create(AF_INET,SOCK_STREAM,SOL_TCP); // 0 for SQL_TCP
// Bind the socket to an address/port
socket_bind($sock, $address, $port) or die('Could not bind to address'); //0 for localhost
// Start listening for connections
socket_listen($sock);
//loop and listen
while(true){
/* Accept incoming requests and handle them as child processes */
$client = socket_accept($sock);
//$_SESSION[socket_getpeername($client, AF_INET, 5555)] = socket_getpeername($client, AF_INET, 5555);
// Read the input from the client – 1024000 bytes
//$input = socket_read($client, 1024000);
// from here you need to do your database stuff
// and handle the response
// Display output back to client
if(isset($_POST["op"]) && $_POST["op"] == 1){
$message = $_POST["op"];
socket_write($client, $message, strlen($message));
//echo json_encode("si");
}
socket_close($client);
}
// Close the master sockets
socket_close($sock);
}catch(Exception $e){
echo 'Excepción capturada: ', $e->getMessage(), "\n";
}
Cliente en Java.
public class ClienteSocket{
public static void main(String args[]){
try {
Socket client = new Socket("127.0.0.1", 5555);
BufferedReader in = new BufferedReader(new InputStreamReader(client.getInputStream()));
OutputStreamWriter wr = new OutputStreamWriter(client.getOutputStream());
String op;
while((op = in.readLine()) != null){
System.out.println(op);
}
}catch (IOException e){
System.out.println("error");
e.printStackTrace();
}
}
}
¿Como podría el servidor interceptar los datos que le llegan por ajax y una vez obtenidos enviarlos al cliente Java?
pd: Siento si estoy ensuciando el foro con redundancia.