GLBasic html

Previous topic - Next topic

jboadas

I have a application in flash that use https cloud webservices and I need to go mobile and Im considering GLBasic to be an option for this because http is a very simple protocol it only have post and get.
and I'm wondering if I can use GLBasic sockets commands to access the webservices ?.
or try to wrap curl ? (this need to be done for every platform and not sure how much work is involved because Im just scratching the surface of GLBasic) I had see in the forum that using inline C is very easy in GLBasic.

Do anyone have any sugestions on this?

sorry my bad English Im not native speaker.

Best Regards.

Im really falling in love with the power and the simplicity of GLBasic keep up the good work and very thanks for this amazing language

mentalthink

Hi jboadas, well I don´t have too much idea about your question, my programming skill not are too much, but if you need sockets, have a lotg of commands about this ... I think, in the help, search socket, you will see a few commands about sockets.

Kitty Hello

something like:
Code (glbasic) Select

SOCK_INIT
SOCK_TCP_CONNECT "www.server.com/whatever", port%
SOCK_SEND, SOCK_RECV


shoud do. Read the manual and the forums for "Networking for cowards"

jboadas

Very thanks, by the way I didnt noted that GLBasic Have support to Berkeley sockets, this are a very powerfull network support.