wen i deploy my web service on server, its working good in Internet Explorer but not working in mozilla and chrome.
According to this link i add this header to my serveer
Access-Control-Allow-Origin: *
but still its not working.
then i got the solution and add another headers like:
Access-Control-Allow-Origin
Access-Control-Max-Age
Access-Control-Allow-Methods
Access-Control-Allow-Headers
then its working good in all browsers on my desktop, but when i try to this web service using android browser, its showing me undefined error.
now what can i do to solve this problem.
Help me.