GHI G120 with WiFi RS21 - Create a endpoint?

Gents,

Is it possible to create a endpoint/service on the G120 that something can call into?

For example, I would like to have a app call the G120 and get some data.

Could someone point me to an example, a search has only turned up netduino stuff :confused:

-Matt

This is .NET so most examples of listening sockets will apply to any NETMF device. The only exception are the couple lines of code needed to initialize the Wi-Fi module.

2 Likes

There are examples in GHI Codeshare for webservers:

https://www.ghielectronics.com/community/codeshare/search?q=webserver

Alternatively, you can likely port the Gadgeteer webserver:

http://gadgeteer.codeplex.com/SourceControl/latest#Main/GadgeteerCore/Libraries/Core/WebServer43/WebServer.cs

Also there are also 3rd party webservers:
http://www.bing.com/search?q=.netmf%20webserver

An example of this:
http://blogs.msdn.com/b/laurelle/archive/2012/05/29/creating-an-efficient-http-web-server-for-net-microframework-netmf.aspx

1 Like

Thanks guys! Apparently my searching skills are weak… I was thinking more endpoint/service than webserver…

+1 to both of you

Cheers,
-Matt