cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
512
Views
0
Helpful
0
Comments
cdnadmin
Level 11
Level 11
This document was generated from CDN thread

Created by: don smith on 03-02-2013 12:26:29 AM
I'm not getting errors from this, so I believe the authorization is successfull. However, I am not able to make my IP Phone 7942 chime. Any suggestions please? I am using Javascript.   var xml = new XMLHttpRequest();   xml.open("post", "http://172.25.11.59/CGI/Execute"); xml.setRequestHeader("Authorization", "Basic MTgyMjg6MTgyMjg="); xml.setRequestHeader('Content-Type', 'text/xml'); xml.send("");    

Subject: RE: Sending XML Object Using Javascript
Replied by: David Staudt on 08-02-2013 02:39:15 PM
Modern browsers prevent 'cross origin' requests like this, where the host that provided the javascript is different from the host that the XMLhttpRequest is going to.
http://en.wikipedia.org/wiki/Same_origin_policy
The usual recourse is to have the javascript post a custom request back to the origin web server, and have the web server make the actual post to the phone (i.e. proxy)
 
Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Quick Links