Hi All,

As per http://www.html5rocks.com/en/tutorials/cors/     this link mentions 
we can make cross domain request as simple form POST.

so, In my angular app(SPA), when navigating to following page, browser 
should change the url to https://otherdomain.com/processRequest

crossdomainreq.html
------------------------------

<div class="col-md-9">
        <form method="post" action="https://otherdomain.com/processRequest"; 
name="f1">
          <table border="1">
            <tbody>
              <input type="hidden" name="ORDER_ID" value="645783663">
              <input type="hidden" name="CUST_ID" value="makeb42499">       
       
            </tbody>    
          </table>          
        </form>
        <script type="text/javascript">document.f1.submit();</script>
</div>  

but, when navigating to this page, Form submit request is NOT logged in 
chrome and browser url also not changing.

Not sure why this cross domain post request is not working. Please suggest 
me what i can do for this.


Thanks in Advance.
    

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to