Hi,
I want to create user provided service. Could you please guide me the documentation or sample project or project with which I can start developing service.
Any help on this would be more helpful.
Thanks,
Chetana
cf create-service <ServiceName>
--
You received this message because you are subscribed to the Google Groups "Cloud Foundry Developers" group.
To view this discussion on the web visit https://groups.google.com/a/cloudfoundry.org/d/msgid/vcap-dev/b4312f1e-0a36-4088-a68b-78c378e7a686%40cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.

To view this discussion on the web visit https://groups.google.com/a/cloudfoundry.org/d/msgid/vcap-dev/db7863e3-9188-4aff-876d-5a19eebf3d13%40cloudfoundry.org.
To unsubscribe from this group and stop receiving emails from it, send an email to vcap-dev+u...@cloudfoundry.org.
I want to create user provided service.
Could you please guide me the documentation or sample project or project with which I can start developing service.
Thanks for the reply. I want to develop user provided service. The link you gave tells about how to create service instance of user provided service.
I want a documentation which explains, how we can accept the user provided credentials in code and puts in VCAP_Variables.
Yeah, I know that we get VCAP_SERVICES when we bind the service and I know how to parse and use VCAP_SERVICE variable too.
My requirement is : I want to develop user-provided-service.
UserProvided Service:User-provided Service Instances are a mechanism to deliver credentials to applications for service instances which have been pre-provisioned outside of Cloud Foundry.
I have created a Cloud Foundry service using ServiceBrocker API. In this case user can not pass any credentials/arguments to service.
eg:
When we run command:Following arguments gets passed by default : - "service_id", "plan_id", "organization_guid" and "space_guid".
cf create-service <ServiceName>
However if we want to pass some more details like," Credentials for some endpoint" which service needs; we can not.
For that I think we need to create User Provided Service.
I want to know the architecture of user provided service so that I can develop.
I want to create user-provided-service which need not have provision/deprovision.When we create service instance using CUPS command I want to accept credentials of some web application.These creds will be maid available to a application which binds to it.
For command like: cf cups/create-service <Service_instance> -p {credentials}.
I want a service like <Service_Instanc> , which will be available in market place.I want write this service in Java .This will accept credentials and set credentials in VCAP_SERVICES environment variable when application bind to it.