Topic: Embedded Linux with wolfssl call web service

Could you tell me how to implement a web service call for embedded linux using wolfsll embedded ssl?
Thanks in advanced!

Share

Re: Embedded Linux with wolfssl call web service

Hi anhdv,

Can you explain a little more about what you would like to do?

Thanks,
Chris

3 (edited by anhdv 2012-11-21 06:57:59)

Re: Embedded Linux with wolfssl call web service

I intend to develop a vending machine with embedded linux and I would like to use wolfssl for a secure connection to back-end via a web service or WCF service hosted in IIS

Share

Re: Embedded Linux with wolfssl call web service

Adding SSL/TLS to your application code and switching from using TCP/IP directly to using SSL/TLS is usually fairly simple.  I'm guessing that you'll already have a thin HTTP client that will communicate back to your server, which you now want to add HTTPS support to?

You can take a look at our example client (<cyassl_root>/examples/client/client.c), which sends a simple "GET" command when used with the "-g" option.  We also have several documentation resources which may be of assistance, including:

1)  SSL Tutorial: http://yassl.com/yaSSL/Docs-cyassl-manu … orial.html
2)  wolfSSL Embedded SSL Manual:  http://yassl.com/yaSSL/Docs-cyassl-manual-toc.html

Best Regards,
Chris