PDA

View Full Version : Details of LPS->SWF SOAP communication (FWS format)


seasea
11-30-2006, 05:20 PM
Could someone post pointers, how LPS send back data for this spec:

>>>
<soap name="amazon" wsdl="http://soap.amazon.com/schemas3/AmazonWebServices.wsdl">
<method event="onload">
Debug.write('-- ' + this.name + ':', this.proxy);
</method>

<!-- if error isn't handled by call, the error is propagated up to
soap -->
<method event="onerror" args="error">
Debug.write('error:', error);
</method>

</soap>
<<<

I already know, that LPS send back initial data, which seems to have a 'FWS' signature. I'd like to mirror this format using PHP.

... well, meanwhile, I discovered, that this seems to be a standard flash file. Still, I'm interested, if this is simple somehow compressed data (no code), which i could write directly using PHP.

Any ideas?