To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+unsubscribe@cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.
I was reproducing the same issue trying to connect through http (I haven't yet installed an SSL termination such as https://github.com/cloudfoundry-community/sslproxy-boshrelease ).
In my case, this seems to be due to an invalid bosh CF manifest that was specifiying https urls instead of http urls for the following properties: uaa.no_ssl: false, uaa.url, ccng.srv_api_uri, cc.srv_api_uri, uaa.clients.login.redirect-uri:
you can easily verify that with on the info endpoint:
$ cf curl info
{"name":"vcap","build":"2222","support":"http://support.cloudfoundry.com","version":2,"description":"Cloud Foundry sponsored by Pivotal","authorization_endpoint":"http://login.my.org","token_endpoint":"http://uaa.my.org","allow_debug":true}
See related issue cloudfoundry/cf-release#419 on how I fixed the cf bosh manifest. This solved the authentication issue in both maven and eclipse.
Seems the go cli has a different behavior and works around the invalid info returned by the /info endpoint