Calendar

March 2006
M T W T F S S
« Feb   Apr »
 12345
6789101112
13141516171819
20212223242526
2728293031  

Tag Cloud

Categories

Archives

Highest Rated

Most Viewed

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 [...]