Years ago, when I wrote the code to talk to the NB and send data back and forth I was very excited. It was a far better way to get quick updates to a web page then the ole HTML way with the familiar "UPDATE PAGE" button or the otherwise "click" sound when the page would automatically refresh.
I have had some projects where multiple users needed to access a page at the same time and though connecting back to the board on another socket connection was great, it also prevented multiple users from connecting at the same time.
Tony, is much more knowledgeable in FLEX than I am, as I am just learning it now.
So far I have been able to send data to the board using the POST method in FLEX, now its time that I want to use the GET method so that when the page starts I can pre load values into lets say text boxes. So far I have been unable to get part working.
In my NB code I have this to listen for the GET from the FLEX app.
Code: Select all
int MyDoGet( int sock, PSTR url, PSTR rxBuffer )
{
printf("MyDoGet=%s\r\n",url);
writestring( sock, "Here You Go\r\n" );
return ( *oldhand ) ( sock, url, rxBuffer ); //If we got here the password was acceptable.
}
I am not sure what the FLEX app is expecting for a return from the GET command.
This is my FLEX code for the GET, which fires when the page opens.
Code: Select all
<mx:HTTPService
id="userRequestget"
url="http://192.168.0.7"
useProxy="false"
method="GET"
result="handle_plain(event)"
fault="handle_fault(event)"
resultFormat="text">
<mx:request xmlns="">
<sendthis>{"getme"}</sendthis>
</mx:request>
</mx:HTTPService>
Does anyone know what I should send back to the FLEX app from the NB board to stop this error ?