是否有示例或说明如何在 Bluemix 应用程序中利用 Azure 服务?

Are there examples or instructions how to leverage Azure services in Bluemix apps?

任何人都可以分享一些示例 and/or 说明如何在 Bluemix 应用程序中利用 Azure 服务吗?

如果 Azure 服务端点可通过 Internet 公开访问,您可以直接从 Bluemix 应用程序连接到它。您可以在 Bluemix 中创建一个 'User Defined Service',它将包含您的 Azure 服务(或任何其他服务)的 url 和凭证。然后,您可以将此用户定义的服务绑定到您的一个或多个应用程序,并从 VCAP_SERVICES 变量中读取凭据。

$ cf cups myExternalDB -p "host, username, password"
host> 123.123.123.123
username> myusername
password> mypassw0rd