- 22 May, 2019 1 commit
-
-
liucong.tp(刘聪) authored
-
- 27 Mar, 2019 1 commit
-
-
Georgia.Liao authored
-
- 25 Feb, 2019 1 commit
-
-
Boshen.Chen authored
-
- 18 Feb, 2019 1 commit
-
-
Boshen.Chen authored
-
- 14 Feb, 2019 1 commit
-
-
Steven.Li authored
-
- 11 Feb, 2019 35 commits
-
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
Correcting the link: 以下提供了許多使用情況提供您能更加了解平台的單一簽入服務,接著您可以參考使用[教學文件](https://portal-technical.wise-paas.com/doc/document-portal.html#SSO-3)提供範例程式作為整合參考。
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
Correcting the link: You may integrate SSO into any of the example apps mentioned in this [tutorial](https://portal-technical.wise-paas.com/doc/document-portal.html#SSO-3).
-
Dave.Lee authored
In contrast to XML, JWTs can be sent via a URL or POST parameter...
-
Dave.Lee authored
Correcting the URL: 連線憑證兌換服務網址:與雲平台網域有關,格式為 `https://api-dccs.{雲平台網域}` 。例如雲平台網域為 wise-paas.com ,連線憑證兌換服務網址為 `https://api-dccs.wise-paas.com`。
-
Dave.Lee authored
Correcting the URL: 連線憑證兌換服務網址:與雲平台網域有關,格式為 `https://api-dccs.{雲平台網域}` 。例如雲平台網域為 wise-paas.com ,連線憑證兌換服務網址為 `https://api-dccs.wise-paas.com` 。
-
Dave.Lee authored
Correct the URL: URL for redeeming a credential: This URL is formatted as `https://api-dccs.{cloud platform domain name}`. For example, “wise-paas.com” is the domain name of the WISE-PaaS cloud platform. Therefore, the URL for redeeming a credential is written as `https://api-dccs.wise-paas.com`.
-
Dave.Lee authored
訂閱服務與隔離機制相關規格 以下針對使用者訂閱共用型服務,所得到或可以使用的參數做整理,讓使用者更容易了解權限和相關操作方法。 綁定服務前需要先訂閱一個服務 不同APP綁定同一個已訂閱的服務,會共用同一個資料庫 使用者只有讀取/寫入資料的權限,無法建立、切換、刪除資料庫 將APP重新綁定會取得不同的連線憑證Credential 關聯式資料庫服務加入了group的概念,依照綁定時的參數,使用者可能存在不同的group中,以下說明有用到的或特殊功能的group名稱 Instance ID:此group與資料庫名稱同名,使用者綁定服務時,不論有無帶入group參數,都會被加入這個group中,通常使用者在資料需要分享給其他服務時綁定相同的訂閱服務。只要將schema及table的權限賦予給這個group,就可以分享給其他相同group的應用程式。 g_ro_public:在此group的使用者,對於public schema只有讀取的權限, APP應用程式在綁定服務時,不論有無帶入group參數,都會被加入這個group中。 g_rw_public:在此group的使用者,對於public schema具有read/write的權限, applications bind service時,帶入”g_rw_public” group參數,就可以加入這個group中。 客製化:使用者自行定義group名稱,通常使用在同一個APP應用程式升級不同版本時需要使用同一份資料。
-
Dave.Lee authored
订阅服务与隔离机制相关规格 以下针对使用者订阅共享型服务,所得到或可以使用的参数做整理,让使用者更容易了解权限和相关操作方法。 绑定服务前需要先订阅一个服务 不同APP绑定同一个已订阅的服务,会共享同一个数据库 用户只有读取/写入数据的权限,无法建立、切换、删除数据库 将APP重新绑定会取得不同的连线凭证Credential 关系数据库服务加入了group的概念,依照绑定时的参数,使用者可能存在不同的group中,以下说明有用到的或特殊功能的group名称 Instance ID:此group与数据库名称同名,用户绑定服务时,不论有无带入group参数,都会被加入这个group中,通常用户在数据需要分享给其他服务时绑定相同的订阅服务。只要将schema及table的权限赋予给这个group,就可以分享给其他相同group的应用程序。 g_ro_public:在此group的使用者,对于public schema只有读取的权限, APP应用程序在绑定服务时,不论有无带入group参数,都会被加入这个group中。 g_rw_public:在此group的使用者,对于public schema具有read/write的权限, applications bind service时,带入”g_rw_public” group参数,就可以加入这个group中。 客制化:使用者自行定义group名称,通常使用在同一个APP应用程序升级不同版本时需要使用同一份数据。
-
Dave.Lee authored
NodeJS sample code: postgres_uri = vcap_services['postgresql-develop'][0].credentials.uri postgres_database = vcap_services['postgresql-develop'][0].credentials.database postgres_host = vcap_services['postgresql-develop'][0].credentials.host1 postgres_port = vcap_services['postgresql-develop'][0].credentials.port1 postgres_user = vcap_services['postgresql-develop'][0].credentials.username postgres_password = vcap_services['postgresql-develop'][0].credentials.password
-
Dave.Lee authored
NodeJS sample code: postgres_uri = vcap_services['postgresql-develop'][0].credentials.uri postgres_database = vcap_services['postgresql-develop'][0].credentials.database postgres_host = vcap_services['postgresql-develop'][0].credentials.host1 postgres_port = vcap_services['postgresql-develop'][0].credentials.port1 postgres_user = vcap_services['postgresql-develop'][0].credentials.username postgres_password = vcap_services['postgresql-develop'][0].credentials.password
-
Dave.Lee authored
NodeJS Developer: postgres_uri = vcap_services['postgresql-develop'][0].credentials.uri postgres_database = vcap_services['postgresql-develop'][0].credentials.database postgres_host = vcap_services['postgresql-develop'][0].credentials.host1 postgres_port = vcap_services['postgresql-develop'][0].credentials.port1 postgres_user = vcap_services['postgresql-develop'][0].credentials.username postgres_password = vcap_services['postgresql-develop'][0].credentials.password
-
Dave.Lee authored
步驟一 / 請點我 adding a link to the Support Ticket page
-
Dave.Lee authored
步骤一 / 请点我 Adding a link to the Support Ticket page
-
Dave.Lee authored
Adding a link to the Support page --> Step 1 / Click here
-
Dave.Lee authored
NodeJS sample code: mongo_uri = vcap_services['mongodb-develop'][0].credentials.uri mongo_database = vcap_services['mongodb-develop'][0].credentials.database mongo_host1 = vcap_services['mongodb-develop'][0].credentials.host1 mongo_port1 = vcap_services['mongodb-develop'][0].credentials.port1 mongo_user = vcap_services['mongodb-develop'][0].credentials.username mongo_password = vcap_services['mongodb-develop'][0].credentials.password
-
Dave.Lee authored
NodeJS Sample code: mongo_uri = vcap_services['mongodb-develop'][0].credentials.uri mongo_database = vcap_services['mongodb-develop'][0].credentials.database mongo_host1 = vcap_services['mongodb-develop'][0].credentials.host1 mongo_port1 = vcap_services['mongodb-develop'][0].credentials.port1 mongo_user = vcap_services['mongodb-develop'][0].credentials.username mongo_password = vcap_services['mongodb-develop'][0].credentials.password
-
Dave.Lee authored
Fix the NodeJS sample code mongo_uri = vcap_services['mongodb-develop'][0].credentials.uri mongo_database = vcap_services['mongodb-develop'][0].credentials.database mongo_host1 = vcap_services['mongodb-develop'][0].credentials.host1 mongo_port1 = vcap_services['mongodb-develop'][0].credentials.port1 mongo_user = vcap_services['mongodb-develop'][0].credentials.username mongo_password = vcap_services['mongodb-develop'][0].credentials.password
-
Dave.Lee authored
步驟三 mongodb://username:password@host1:port1,host2:port2/database_UUID
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
步骤三:取得连接凭证Credential mongodb://username:password@host1:port1,host2:port2/database_UUID
-
Dave.Lee authored
步骤三:取得连接凭证Credential mongodb://username:password@host1:port1,host2:port2/database_UUID
-
Dave.Lee authored
Step3: uri: a string with the format: mongodb://username:password@host1:port1,host2:port2/database_UUID
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
-
Dave.Lee authored
Modified: 1.1 事前準備 首先確定您擁有下列資訊: - 已購買訂閱方案。 - Technical portal 或是 Management Portal 的登入網址。 - 您的帳號擁有登入 Management Portal 的權限。 2.1事前準備 首先確定您擁有下列資訊: - 已購買訂閱方案。 - Technical portal 或是 Management Portal 的登入網址。 - 您的帳號擁有登入 Management Portal 的權限。
-
Dave.Lee authored
1.1 Prerequisites First, make sure the following conditions are satisfied: - Have subscribed to a WISE-PaaS plan. - Have access to WISE-PaaS Technical Portal or Management Portal. - Your account has the rights to login to the Management Portal. 2.1 Prerequisites First, make sure the following conditions are satisfied: - Have subscribed to a WISE-PaaS plan. - Have access to WISE-PaaS Technical Portal or Management Portal. - Your account has the rights to login to the Management Portal.
-
Dave.Lee authored
Adding a valid link to Step 1 --> 詳細規範細節可以參考"此份文件"。
-
Dave.Lee authored
Adding a link to the Support Ticket for Step 1 / click here
-