I've been struggling for hours to understand what is said in the
livedoc but I do not manage to figure out how to do that !!! Adobe
surely have to improve their "data acess and interconnectivity" help
part !

So, I want to access a WebService which requires to be authentified by
a Basic Anthentication process. How would you that ?

Apparently I have to define a so-called "destination", in config
files... here's what i dended up with (not working obviously) :

-- services-config.xml ------------------

<?xml version="1.0" encoding="UTF-8"?>
<services-config>
        <services>
            <!-- PROXY SERVICE -->
            <service-include file-path="proxy-config.xml"/>
        </services>
</services-config>

-- proxy-config.xml ------------------

<?xml version="1.0" encoding="UTF-8"?>
<destination id="bmDestination">
        <adapter ref="soap-proxy" />
        <properties>
        
<wsdl>http://localhost:8888/BubbleMindServer/services/bubblemind?wsdl</wsdl>
                
<soap>http://localhost:8888/BubbleMindServer/services/bubblemind</soap>
        </properties>
</destination>

-- and in my mxml ------------------

<mx:WebService
        id="bmSoapService"
                destination="bmDestination"        
                useProxy="true"
        showBusyCursor="false"
        />

Any help please ?

{Maz}

Reply via email to