Hello guys!
We want to better integrate between our provisioning and billing systems, and the vcloud login portal (version 5.5), by giving customers a "Open Control Panel" like button in our systems, which would POST to the https://vcloud.example.com/cloud or something, and then once session cookie is established, open a new tab to the vcloud interface.
So I've tried doing a POST imitating the POST done if you manually login in the web client, however this request is denied by browser security due to CORS - Cross Origin Resource Sharing, as the web server does not reply with the required headers to allow this (mostly Access-Control-Allow-Origin header, but few others too).
Any ideas how to accomplish my goal? Perhaps some tweak to the vCloud web server config to send those headers? some other recommended method? I have Googled about this, and no similar information found.
Thanks!