Calendar

March 2006
S M T W T F S
« Feb   Apr »
 1234
567891011
12131415161718
19202122232425
262728293031  

Tag Cloud

Categories

Archives

Recent Posts

Recent Comments

Archive for March 7th, 2006

WebService setup for FDS

Tuesday, March 7th, 2006

Updated for Flex FDS
After struggling for a while to get my webservice setup under FES FDS, I finally got all working properly last week so I thought I would post some insight.
Here is the config that you will need to use for FES FDS:
Add an entry like this to your flex-proxy-service.xml proxy-config.xml file:
<destination id=”myWS” adapter=”soap-proxy”>
<properties>
<wsdl>http://www.whatever.com/Mywebservice.wsdl</wsdl>
<soap>http://www.whatever.com/Mywebservice*</soap>
</properties>
</destination>
Now [...]