Oracle MAF-MCS连接

时间:2015-09-17 04:32:59

标签: oracle oracle-maf mcs

我在Oracle MCS中创建了一个用于登录身份验证的自定义API,并且我在MAF中构建了一个Application。我怀疑如何从Oracle MAF应用程序调用此自定义API?

2 个答案:

答案 0 :(得分:1)

如果您使用的是OEPE(Oracle Enterprise Pack for Eclipse),则可以使用本教程来使用任何REST服务API,

对于MCS-MAF支持,以下YouTube应该提供帮助,

答案 1 :(得分:0)

查看MAF MCS Utility应用程序(应该在您的公共示例文件夹中),尤其是源代码。

更多信息也可以是found in this link

简短代码示例:

MBEConfiguration mbeConfiguration = 
    new MBEConfiguration(
          <mbe rest connection>,<mobileBackendId>,
          <anonymous key string>,<application key string>, 
          MBEConfiguration.AuthenticationType.BASIC_AUTH);
 mbeConfiguration.setEnableAnalytics(true);
 mbeConfiguration.setLoggingEnabled(false)
 mbeConfiguration.setMobileDeviceId(
         DeviceManagerFactory.getDeviceManager().getName());
 MBE mobileBackend = MBEManager.getManager().
         createOrRenewMobileBackend(<mobile backend Id>, mbeConfiguration);

CustomAPI customApiProxy = mbe.getServiceProxyCustomApi();
UserInfo userInfo = mobileBackend.getServiceProxyUserInfo();
Analytics analyticsProxy = mobileBackend.getServiceProxyAnalytics();
Storage storageProxy = mobileBackend.getServiceProxyStorage();