Page 1 of 1
LAN networking tutorial?
Posted: Wed Apr 08, 2015 5:41 pm
by redheadgames
Can anyone point me to an introduction to local networking in livecode or at least an example? There seems to be a fair amount available for internet networking, but it's not very beginner friendly and I can't find hardly any references to LAN.
I'm still evaluating if livecode is even the right platform for my app, and it would not ideal to work my way gradually to networking only to find it is suboptimal at what I need it to do (cross platform networking over a LAN).
Thanks for any input at all!
Re: LAN networking tutorial?
Posted: Wed Apr 08, 2015 5:56 pm
by FourthWorld
If your LAN uses TCP/IP is should be pretty much the same as working with the outside Internet, like easier since you won't have to contend with firewalls or proxies.
What problems have you encountered?
Re: LAN networking tutorial?
Posted: Wed Apr 08, 2015 6:13 pm
by redheadgames
FourthWorld wrote:If your LAN uses TCP/IP is should be pretty much the same as working with the outside Internet, like easier since you won't have to contend with firewalls or proxies.
What problems have you encountered?
The problem I am having is getting started. All the networking resources I've found seem to start in the middle. I just need help in knowing where to start (or even a simple example project would probably work). There seem to be specific tutorials for everything else besides networking
Re: LAN networking tutorial?
Posted: Wed Apr 08, 2015 6:15 pm
by FourthWorld
This may be a good starting point, a complete Chat program with client and server stacks:
http://lessons.runrev.com/m/4071/l/1292 ... ng-sockets
Once you have that running you have the basics of socket communications down, and can then build on that to handle just about anything you need.