SOAP requests between domains
Eugene Prokopiev <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | Another Netscape Collabra Server User |
| Message-ID | <[email protected]> |
Hi,
I need to allow SOAP requests from XUL to another domain as described in
http://lxr.mozilla.org/mozilla/source/extensions/webservices/docs/New_Security_Model.html
XUL page is located at http://localhost/xul/hello-soap/HelloWorld.xul
SOAP service is located at http://localhost:8080/axis/HelloWorld.jws
File http://localhost:8080/axis/web-scripts-access.xml looks like:
<wsa:webScriptAccess>
<wsa:allow type="soapv" from="http://localhost:8080/"/>
</wsa:webScriptAccess>
On SOAP request I get the next error message:
A script from "http://localhost" was denied from UniversalBrowserRead
privileges
How can I correct this?