php - Alternatives to using Java Servlets for reading and writing to an Ethernet Port -


i'm reading data on ethernet port using , post methods , have made use of java servlets.

i wondering if there alternative servlets, example can achieve same using purely php or else?

my goal eliminate use of servlets.

you can use tcp/ip sockets directly. here's tutorial: http://docs.oracle.com/javase/tutorial/networking/sockets/

note can't write ethernet frames directly in pure java since there's no support - you're limited ip protocols tcp , udp.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -