How to access Workspace Manager API in VB?

Hi,
Is the Workspace Manager API exposed in OO4O (Oracle Object For OLE)?
We are using VB to retrieve Spatial data and manipulate in AutoCAD and then post them back to Oracle DB.
We have many users accessing the same Tables, and the chances of them having retrieved the same record(s) would be high.
To avoid conflict, we intend to use WM.
I hope to hear from you guys. Any information/advise would be much appreciated. Thank you.
Regards,
Arnold Higuit

Hi,
I have no experience with OO4O. However, it appears that it fully supports PL/SQL, so you should be able to use that capability to execute any of the workspace manager procedures.
If this does not work as expected, please file a TAR on the issue, as they would be better equipped to help you with this particular issue.
Thanks,
Ben

Similar Messages

  • How can I retrieve/compute an X509 certificate's thumbprint in Python and then use it for accessing Service Management APIs from Python SDK?

    Hello,
    I am using Azure Python SDK to perform calls to ServiceManagement APIs.
    I have a .publishsettings file generated for my account which includes an encoded version of my X509 certificate and all of my subscription IDs.
    How can I retrieve/compute an X509 certificate's thumbprint in Python?
    Following is the code snippet that helps us do it in .Net.
    Is there a similar approach to do it in Python?
    var publishSettingsFile = @"C:\temp\CORP DPE Account-11-16-2011-credentials.publishsettings";
    XDocument xdoc = XDocument.Load(publishSettingsFile);
    var managementCertbase64string = xdoc.Descendants("PublishProfile").Single().Attribute("ManagementCertificate").Value;
    var importedCert = new X509Certificate2(Convert.FromBase64String(managementCertbase64string));
    thumbprint = importedCert.Thumbprint;
    Once I have the thumbprint, how can I use that thumbprint to access Service Management APIs from Python SDK?
    Thank you in Advance!
    Regards,
    Vaibhav Kale

    Hi,
    Please have check on the below article and check if it helps.
    http://azure.microsoft.com/en-in/documentation/articles/cloud-services-python-how-to-use-service-management/
    Regards,
    Mekh.

  • How to access search service api to get results in JSON format?

    How to access search service api to get results in JSON format in asp.net web application outside SharePoint farm. It should be an app or SharePoint hosted.
    I have tried the same with the help of "http://dotnetmafia.com/blogs/dotnettipoftheday/archive/2013/04/09/how-to-query-sharepoint-2013-using-rest-and-javascript.aspx".
    function onQuerySuccess(data) {
        var results = data.d.query.PrimaryQueryResult.RelevantResults.Table.Rows.results;
        $("#resultsDiv").append('<table>');
        $.each(results, function () {
            $("#resultsDiv").append('<tr>');
            $.each(this.Cells.results, function () {
                $("#resultsDiv").append('<td>' + this.Value + '</td>');
            $("#resultsDiv").append('</tr>');
        $("#resultsDiv").append('</table>');
    But we are getting data.d as undefined.
    I have checked and verify that I am getting success and data in XML format not in JSON. As I expected the JSON. Although I have specified the "JSON" in headers " headers:
    { "Accept": "application/json;
    odata=verbose" } ". 
    Thanks

    Hi,
    Per my understanding, you might want to access search service REST API and get results in JSON format using jQuery.
    The code you use is working in a SharePoint Hosted App project, to compose a working code snippet easier, you can take the demo below for a try:
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
    _spBodyOnLoadFunctionNames.push("ready");
    function ready()
    var spAppWebUrl = _spPageContextInfo.webAbsoluteUrl;
    var queryUrl = spAppWebUrl + "/_api/search/query?querytext='book'";
    $.ajax({
    url: queryUrl,
    method: "GET",
    headers: { "Accept": "application/json; odata=verbose" },
    success: function (data) {
    console.log(data);
    var results = data.d.query.PrimaryQueryResult.RelevantResults.Table.Rows.results;
    $.each(results, function () {
    $.each(this.Cells.results, function () {
    console.log(this.Key+"--"+this.Value);
    error: function (data) {
    console.log(data);
    </script>
    Add the code into a page of your site, it will retrieve JSON format data and print the search result in the console of browser.
    More information about how to work with SharePoint Hosted App:
    https://msdn.microsoft.com/en-us/library/office/fp142379.aspx
    If you want to call the search service REST API in a remote environment, authentication is required to be taken into consideration, the link below with a working demo
    would be helpful:
    https://pholpar.wordpress.com/2013/05/11/accessing-office-365-sharepoint-sites-using-rest-from-a-local-html-javascript-host/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to access Enterprise manager from another computer

    Hi There,
    I have Oracle 10g installed on a PC. I can access EM from that PC.
    I would like to know how would I access EM Dbconsole from another computer under same LAN.
    Thanks
    Raf

    Opening the web browser, you can specify the hostname and the port configured to listen the incoming call.
    For example:
    https://hostname:port_number/em
    or
    https://ip_address:port_number/em
    you can get information about the information that you need from the "emctl"
    emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    https://hostname:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is not running.
    Best regards !
    Shin-Iti.

  • How to access solaris management console from web browser??

    Hi,
    I am running Sol9 with the latest patches. The console gui freezes every time I try to admin NIS users in my NIS toolbox. It used to work but now it doesn't. I need to access this thing from a web browser if that's possible since there is no console that I can install on my windows laptop that can connect to the server.
    Can this be done?? I can't find any info on docs.sun.com on what URL and port to use.
    I did find something that says there is a /usr/sadm/bin/smcwebserver but it does not exist on any of my machines.
    Help?? Please???
    Thanks,
    Tom

    On my machine, when I point my browser to http://<hostname>:898 (the management server port) I get a nice message telling me that a web version of the Solaris Management Console is not currently available. Running the console tells me I'm running v2.1 which is what came out of the box.
    I think the webserver component you refer to only ships with v3.0 and later. You can go to http://wwws.sun.com/software/solaris/sunmanagementcenter/index.html and download a base version for free to check it out.
    By the way, I don't use a remote console to manage remote servers. It's too clunky. My solution for running the SMC remotely is to start an XServer on my laptop, telnet to the Sun host, su - root, set DISPLAY=<mylaptop>:0 and then run smc directly from the host. As long as there's no firewall blocking port 6000 between you and your host, you should be OK. This should be straightforward if you've run any graphical X apps before.
    However, I don't administer NIS and my laptop is a Mac. Your mileage may vary considerably.

  • How to Access UA Manager without Logic booting?

    BJ, PC, JF, AC, et al:
    Is there a way to get into the AU Manager WITHOUT Logic booting up? I need to remove a bunch of stuff (Waves plugs, mostly) that don't run on 1.5, and they keep crashing Logic.
    Help!

    I use
    http://audiofile-engineering.com/audiounitmanager/
    Lets you choose AU's before running the DAW - save different sets, etc, WORKS GREAT for this kind of thing.

  • How does Apex access and manage db objects in other schemas?

    I'm looking for a description of how Apex accesses and manages database objects in other schemas.
    I'm sure I've seen such a description somewhere earlier but am unable to find it again...

    Hi Rene,
    When you are connected to sqlworkshop, it is basically connected to the sceham owner of the workspace. If you execute the query
    select sys_context( 'userenv', 'current_schema' ), user,  username from user_users;you would see the schema and user(currently connected) and schema owner through which you have logged in. The user will have all the privileges granted to schema owner. So basically you get connected through APEX_PUBLIC_USER and it has all the privileges of the schema owner.
    In order to run scripts in another schema you would need grants on other schema same like you are connected to user A through sqlplus and wants to create objects in schema B. For example lets say you want to create a table in schema B and you have create table privileges in scehma B , you can execute command create table B.emp as select * from A.emp;
    I hope this answers your question.
    Regards,
    Manish

  • [office365 Exchange online][MVC5][EWS Managed Api] Need a hack to get access token ?

    Hi there, I am using following code example to get access token from Azure AD online. I need to bridge EWS managed api with office 365 Api via Azure AD. The below code is working just fine in my MVC application but I am looking for a way to get the access
    token in simple string returning  function so that I can use it to make call against EWS mananged api.
    private static string tempToken = "";
    public static string GetAccessToken()
    return tempToken;
    internal static async Task<OutlookServicesClient> EnsureOutlookServicesClientCreatedAsync(string capabilityName)
    var signInUserId = ClaimsPrincipal.Current.FindFirst(ClaimTypes.NameIdentifier).Value;
    var userObjectId = ClaimsPrincipal.Current.FindFirst("http://schemas.microsoft.com/identity/claims/objectidentifier").Value;
    AuthenticationContext authContext = new AuthenticationContext(Settings.Authority, new NaiveSessionCache(signInUserId));
    try
    DiscoveryClient discClient = new DiscoveryClient(Settings.DiscoveryServiceEndpointUri,
    async () =>
    var authResult = await authContext.AcquireTokenSilentAsync(Settings.DiscoveryServiceResourceId,
    new ClientCredential(Settings.ClientId,
    Settings.AppKey),
    new UserIdentifier(userObjectId,
    UserIdentifierType.UniqueId));
    return authResult.AccessToken;
    var dcr = await discClient.DiscoverCapabilityAsync(capabilityName);
    return new OutlookServicesClient(dcr.ServiceEndpointUri,
    async () =>
    var authResult = await authContext.AcquireTokenSilentAsync(dcr.ServiceResourceId,
    new ClientCredential(Settings.ClientId,
    Settings.AppKey),
    new UserIdentifier(userObjectId,
    UserIdentifierType.UniqueId));
    return authResult.AccessToken;
    catch (AdalException exception)
    //Handle token acquisition failure
    if (exception.ErrorCode == AdalError.FailedToAcquireTokenSilently)
    authContext.TokenCache.Clear();
    return null;
    This is an excerpt from Microsoft single tenant application in MVC5.  In the code, I have created a function called GetAccessToken() which does nothing.. I am hoping you experts can help me figure out how to transfer the accessToken from EnsureOutlookServcesClientCreated
    function which is actually returning token, to  my GetAccessToken() so that I can make call against EWS managed Api. Sorry, If I sound pretty stupid but I really need your help in this regard. 
    best regards,

    Yes sir, Let me try to explain me about my scenario. I need to use EWS managed Api with office 365 Rest Api to get benefits from both the Apis. Here is here code I am using to connect to EWS managed Api but it is failing with 401:Unauthorized.  I already
    have "Full Access" turned on in Azure AD.  I have the access token from AZure AD and want to use it to make call against EWS managed Api.
    var outlookClient = await AuthHelper.EnsureOutlookServicesClientCreatedAsync("Mail");
    //IPagedCollection<IMessage> messagesResults = await outlookClient.Me.Messages.ExecuteAsync();
    // Get the ID of the first message.
    // string messageId = messagesResults.CurrentPage[0].Id;
    string tokenx = AuthHelper.GetAccessToken();
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013);
    service.HttpHeaders.Add("Authorization", "Bearer " + tokenx);
    service.PreAuthenticate = true;
    service.SendClientLatencies = true;
    service.EnableScpLookup = false;
    service.Url = new Uri("https://outlook.office365.com/EWS/Exchange.asmx");
    // Get all the folders in the message's root folder.
    ExFolder rootfolder = ExFolder.Bind(service, WellKnownFolderName.MsgFolderRoot);S
    Scenario of my migration application:
    1. I have a Gmail mailbox email in Raw(complete email in base64-urlsafe with attachments) format with RFC2822. I need to migrate this mailbox to Exchange online. I believe EWS managed Api has better support on this one.
    2.  Likewise I need to migrate Gmail Calendars, Tasks and Contacts to Exchange online.
    I would be highly grateful to you , if you tell me how to bridge EWS managed Api with office 365 Api.
    best regards,

  • How to access Adobe Illustrator workspace from AI initial page

    Hi I have just downloaded Ai CC (trial version) and would like to start testing it but do not know how to access workspace from the initial page that popped up
    (https://creative.adobe.com/products/illustrator?code=eyJhbGciOiJSUzI1NiJ9.eyJpZCI6IjEzNzY2 NjY2NTYyMjQtZWU2Y2YwZjctMGQxMC00ZTJhLTk1YTItYTIyYmMzNGMyM2U1Iiwic2NvcGUiOiJvcGVuaWQsY3JlYX RpdmVfY2xvdWQscmVhZF9vcmdhbml6YXRpb25zLGFkZGl0aW9uYWxfaW5mby5zY3JlZW5fbmFtZSxhZGRpdGlvbmFs X2luZm8uc2Vjb25kYXJ5X2VtYWlsIiwic3RhdGUiOm51bGwsImFzIjoiaW1zLW5hMSIsImNyZWF0ZWRfYXQiOiIxMz c2NjY2NjU2MjI0IiwiZXhwaXJlc19pbiI6IjE4MDAwMDAiLCJ1c2VyX2lkIjoiNDhGNDI2NEY0QjM1MDQxRjk5MjAx NUMzQEFkb2JlSUQiLCJjbGllbnRfaWQiOiJDcmVhdGl2ZUNsb3VkVGVzdDEiLCJ0eXBlIjoiYXV0aG9yaXphdGlvbl 9jb2RlIn0.aR6fcq-8gqF3_RN1lEiVZ2wQ9wZdN6kIb9aPG__Mjoum2hH2fDgLxsnbqLa_O0-m5CB9rLm9scrNe5am Y-Lrnu-eJOM-QGU8gil0GvAI8EbDP7w6bCI-YIchkIHgorR_OMWdyzC3j9NCOpKMTeoXnh-AIQTdkkXch3OxzNWA_T w6vPRPZ5soHsOmJrFtjNl4j-0-ydxv2E1s6EP_uZN88HWkAOzReniN1E8cfaafOJepcSYFSLjzKvP64lcMNfevKO0B HK4OkeWDMVLIU0_xzgzaYRrLtr10bSgZEi7_212sCdoWUj6dMhKso8ZNyTHTYMrwGald_GGNPQTmLTh-Lw) it's called Adobe Creative Cloud Illustrator CC?
    I am completely new to it,
    thanks for your help

    I recommend that you access some videos on the subject.
    http://kelbytv.com/
    http://tv.adobe.com/
    http://creativesuitepodcast.com/
    The above can also be found on Itunes podcasts and youtube.
    Good luck and have fun...

  • How to access calendar rules via java

    Hi to all,
    We have a process in which we need to set a Timer, but the date must be validated against Calendar Rules. We searched in forums, webs, documentation and we couldn't find a way to do this.
    I know it is possible to set an expiration date based on Business Calendar on a Human Task (deadline tab in Human task editor), but this is not what we need.
    We actually need a way to set a variable date in the process that can handle only business days. e.g.: 'now' + 2 business days.
    Right now we are setting the Timers with this expression from a Business Rule: Duration.from string("PT48H")
    Then I associate the business rule output with a Time type variable(deadlineTime) doing: 'now' + deadlineTime
    So right after that I can use the Time variable on a timer attached to the human tasks I need. * We need to use business rules because the customer may want to change the times accordingly to their needs through BPM Composer. *
    The problem is that this solution does not take into account Saturday and Sundays (holidays are a concern too).
    We need to set the expiration time to timers attached to human tasks, but the time should consider working days only. We consulted with experts from Oracle and told us that functionality is available in the PS 6 version. At the moment it is impossible to migrate to that version. I need to know how to access via Java APIs to the calendar rules for checking programmatically.
    JDeveloper version: 11.1.1.6
    Any suggestion?
    Thanks in advance
    Marcelo

    Hi Yarner,
    Once you have all your dll included in a jar and used the nativelib tag, you have to use, at the beginning of you application, the command System.loadLibrary to load all the dll you need. Including the ones called by the others you have direct access.
    The dll�s have to be explicitly loaded in the order they are called.
    For example: you use lib1.dll and lib2.dll. The lib1.dll needs lib0.dll.
    Even if you don't use lib0.dll directly, once its called by lib1.dll you have to put then in the order.
    System.loadLibrary("lib0.dll");
    System.loadLibrary("lib1.dll");
    System.loadLibrary("lib2.dll");
    I hope it may help you, good luck.
    Mario

  • Accessing Tomcat Manager Via URLConnection

    Hi,
    Does anyone know how to access Tomcat Manager using URLConnection? or Can it be done at all?
    I'm using URLConnection, javax.mail.authenticator, and javax.mail.PasswordAuthentication. It seems that I can get to the correct URL, but the servlet can't get pass thru the login dialog box(username ,password)
    for example if you're using Tomcat 5 and type http://localhost/manager/reload?path=/, this will prompt you a login dialog box and if you enter correct username and password with manager role, tomcat will reload the ROOT web application
    I want to get pass that login box, but my servlet doesn't seem to work.
    Here's my code so far:
    package reload;
    import javax.mail.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    public class Reload extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response)
                                  throws ServletException, IOException
              URL url = new URL("http://localhost/manager/reload?path=/");
              URLConnection connection = url.openConnection();
               //----------------------------------Output Stream to supply username and password---
            javax.mail.Authenticator auth = new Auth();
              connection.setDoOutput(true);
              PrintWriter out = new PrintWriter(connection.getOutputStream());
              out.println(auth);   //this is supposed to supply the username and password to Tomcat
              out.close();
                //--------------------------------Input Stream to get content result-------------------
              BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
              String inputLine;
              while ((inputLine = in.readLine()) != null)
                   response.setContentType("text/html");
                   PrintWriter out1 = response.getWriter();
                   out1.println(inputLine);
              in.close();
           //-------------------sub class to store username and password-------------------------------
         private class Auth extends javax.mail.Authenticator
             public javax.mail.PasswordAuthentication getPasswordAuthentication()
                 return (new javax.mail.PasswordAuthentication("test","123"));
    }

    The manager application uses basic authentication. Therefore, you need to add a header to the request you make to the manager URL. Below is an example:
    HttpURLConnection httpconn = (HttpURLConnection)connection;
    String auth = strUsername + ":" + strPassword;
    httpconn.setRequestProperty("Authorization", "Basic " + Base64.encode(auth.getBytes()));
    The Base64 class is in the package org.apache.catalina.util, which is located in the file catalina-ant.jar. Here, I used it as a convenience.
    I also recommend re-writing your input/output loop to:
    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String inputLine;          
    PrintWriter out1 = response.getWriter();
    response.setContentType("text/html");               
    while ((inputLine = in.readLine()) != null)     {
         out1.println(inputLine);
    in.close();
    I hope this helps.

  • Accessing Oragnization management tables

    Hello All,
    Could anyone tell me how to access Oragnisation Management HRPNNN Table in infotype Module pool Include.
    What are the Pre requisite,Do i need to make some configuration
    Thanks & Regards
    Sonu Gupta

    Hi,
    For accessing all the HRP tables, use the t-code SE11.
    For seeing the table entries, you t-code SE16.
    Reward points appreciated,
    Thank You,
    Message was edited by:
            Arun Sundararaman

  • How to Install Analytic Workspace Manager 10.1.0.4.

    Hi,
    how to Install Analytic Workspace Manager 10.1.0.4.?
    Many thanks before.

    Thank you, we have this :
    SELECT COMP_NAME, VERSION, STATUS FROM DBA_REGISTRY WHERE COMP_NAME LIKE '%OLAP%';
    COMP_NAME VERSION STATUS
    OLAP Analytic Workspace 10.2.0.1.0 VALID
    Oracle OLAP API 10.2.0.1.0 VALID
    OLAP Catalog 10.2.0.1.0 VALID
    Is Analytic Workspace Manager installed ? How to know its version ?
    Thank you.

  • How to access the SAP MDM destinations using mdm java api in 7.1

    hi,
    I have SAP MDM 7.1 SP11 and SAP Portal 7.3 and developing the custom webdynpro application using the  JAVA MDM API. I want configure the SAP MDM destinations in SAP Portal .
    How to access the MDM destinations in java code using API? and how to create the connection with MDM using the MDM destinations.
    Please provide the code for access the SAP MDM destinations in java code using MDM java api and creating the connection to MDM.
    Thanks

    Jun,
    Thanks for the reply and api information.
    I have got this api information from the following sap documentation. But i am looking for the code by implementing this class and creating the mdm connection.
    Creating an MDM Connection Using Java Code - SAP NetWeaver Master Data Management (MDM) - SAP Library
    if any thing can you share it.
    Thanks

  • How to user Analytic workspace manager  in Oracel 9

    Hi All,
    I am new to OLAP, I want to know how to configure/use Analytic workspace manager in my database for creating OLAP. I am using oracle 9.2.0.1.0.
    Regards
    Ananth

    The first version of Analytic Workspace Manager came with Oracle 10.2, it does not support Oracle 9.2. If you are new to Oracle OLAP, you really want to be using Oracle 11.1 or 11.2 (11.2 if possible). If your organization uses 9.2 for your apps, consider using an 11.2 instance of OLAP and accessing the 9.2 version as the data source to your cubes. The advantages to 11.x are too numerous to cover here. I can send you some papers that describe 10.2 and 11.x if you send me ([email protected]) your email adress.

Maybe you are looking for