I have a two-node NLB setup where I need to call several web services from client-side via ajax POSTs. If I hit the page at say:
http://clusternode1/
no issues.
If I hit it at
http://clusternode2/
no issues.
However, if I hit it at
http//clustername/
I get the cross-origin exception (as expected).
Is there anyway around this? Any way to reconcile which name the request is being made from to avoid the cross-domain exception?
Many thanks.