A colleague build a formengine in flex based on xml configuration files.
The engine is working nice, but i detected a problem when we submit the 
data to the server.
The information is Send as one big string, because we want to reuse the 
existing backend on the server.

Code:

    <mx:HTTPService id="myService" url="http://10.0.0.50:8080/static/x/";
      method="GET" fault="alert(event.fault.faultstring);"
      result="alert('HTTPService responded!')">
        <mx:request id="myRequest">
            <result></result>
        </mx:request>       
    </mx:HTTPService>

and from the class we try to post it:
    appView.myService.myRequest.result = resultString;
    appView.myService.send(resultString);

The resultString is filled with the formdata. When i submit the server 
responses succesful.
The problem is that when i check the logfiles on my webserver that the 
page was requested, but no information was send, also the page is 
requested by a GET method and not by POST.

The request page is NOT a webservice, and the data send is not xml

Can someone tell me what's wrong? Or is there maybe a better way to 
tackle this problem.

Greets,

Sjors





------------------------ Yahoo! Groups Sponsor --------------------~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to