Aye there a Classification API available in 04s SP9?

I have been creating query based taxonomy and create classification queries through the Taxonomy Query Builder tool/iview.
I found that it is really inefficient to go though every single taxonomy folders and sub-folders to define the query that similiar.
Is that a Classification API that we can use to define the classification query for the tax. folders programmatically.
I really hope that such API exists.
Thanks.
Kent

Hi, Detlev.
I try to use the foloowing code to get QueryFolder (so that I can read the query value of the tax. folder).
The below code is provided in the API Docs , you referred to me.
IIndexService indexService = (IIndexService)ResourceFactory.getInstance().getServiceFactory().getService(IServiceTypesConst.INDEX_SERVICE);
IQBClassificationIndex qbcIndex = (IQBClassificationIndex)indexService.getIndex("prextranet_en");
IQueryFolder queryFolder = qbcIndex.getQueryFolder(RID.getRID("/taxonomies/prextranet_en/PR_News_Room"));
After I referred all he jars that I need using jar locator in IDE. I got the following errors.
<u>"This compilation unit indirectly references the missing type com.sapportals.wcm.WcmException (typically some required class file is referencing a type outside the classpath)"</u>
Here are the jars that I referred to:
KMC_LIBS/bc.rf.framework_api.jar
KMC_LIBS/bc.sf.framework_api.jar
KMC_LIBS/km.shared.service.indexmanagement_api.jar
After some testing, I found out that after I referred to this jar (KMC_LIBS/bc.rf.framework_api.jar) for ResourceFactory , the error start appears.
This is the jar I used for other KM and RF classes to get the ResourceFactory.
I am not sure whether these are the right jars or not?
Thanks for your input.
Kent

Similar Messages

  • Is there any java API available to make call to 11g Composite Service?

    Hi All,
    How can I make a call to 11g Composite from java? Is there any java client API available for this?
    Thanks,
    Vidya

    Sure there is a way.
    Here is a documentation link:
    Link: [http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/invocapi.htm#CHDBBBBC]
    Adam

  • Is there any java api available to get the process identifier ?

    Hai,
    I am in need to get the process identifier of a running process.
    Is there any API available or any shell script which can be used in exec command
    to get it.
    Thanks in Advance.
    Kavitha M.

    Hint: Don't use the exec command! This would spawn off a new shell with a different PID. You might want to look at JNI (Java Native Interface) to attach a piece of C code to your Java application that can find out the PID.

  • Adding 2 byte arrays (6 bytes each ) -any specific API available

    hi friends
    I m fixed up with a problem .
    i want to add to arrays of six bytes each .
    how can i go for this .
    is there any specific API available for the same.
    current method i m using is an function which add first bytes of 2 arrays and then check out if the added value is more then FF its incerments the previous bytes and then start adding the second bytes .
    but its a very time consuming way .
    is there any specific API available ...... to solve out this problem in a much easier way

    i want to add to arrays of six bytes each .Looks like you want to add two 48bit numbers, right?
    how can i go for this .
    is there any specific API available for the same.No. only 8bit and 16bit number operations are supported (and theoretical 32bit operations).
    current method i m using is an function which add
    first bytes of 2 arrays and then check out if the
    added value is more then FF its incerments the
    previous bytes and then start adding the second
    bytes .Sounds like the paper & pencil addition method.
    but its a very time consuming way.That is a common problem when building "large number arithmetic" functions by using 8bit operations.
    From my point of view the only possibility for speeding up your algorithm is using nytes instead of shorts as usually the JavaCard processors are 8bit processors and therefore short/16bit operations are already decomposed into several 8bit operations. The only problem can be that java does not have a carry bit or an number overflow error for detecting if a number gets greater than 0xFF.
    Jan

  • REST API available for CCW?

    Hi Experts,
    I want to develop a web application interfacing CCW. Is there an REST API available for CCW?
    Thanks
    Krishna

    Hi, do Cisco provide a REST API for accessing the CCW in the meantime?

  • Any gpg/pgp java api available

    Is there any java api available for GPG/PGP encryption without using the command line ?

    Thanks for the immediate response , Actually I need
    an api which doesn't use the command line.As I said - www.bouncycastle.org

  • Is there any API available to read drm files in ios devices?

    Hi,
    I am ios developer and trying to read DRM files using my app.
    I want to know is there any API available for the same.
    Thanks in Advance.

    Hi Prathap,
    No, there is no Java API specific for RDF functionality available. However, Java client applications can use JDBC to access the RDF store. A partially relevant post is at How do you query Oracle RDF database using Java program? . The JDBC documentation will have detailed documentation on using JDBC.
    Code snippets for one way of accessing SDO_RDF_MATCH through Java is below:
    <..........>
    sbStmt.append("select * from TABLE( ")
    .append(" SDO_RDF_MATCH('(?S ?P ?O)',")
    .append(" SDO_RDF_Models('")
    .append( <model_name> )
    .append("'),")
    .append("null,null,null))")
    .append(" where rownum <= ")
    .append(iNumRows)
    ResultSet rs = stmt.executeQuery(sbStmt.toString());
    while (rs.next()) {
    System.out.print("\n");
    System.out.print(rs.getString("S"));
    System.out.print(" (");
    System.out.print(rs.getString("S$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("P"));
    System.out.print(" (");
    System.out.print(rs.getString("P$RDFVTYP"));
    System.out.print(") ");
    System.out.print(", ");
    System.out.print(rs.getString("O"));
    System.out.print(" (");
    System.out.print(rs.getString("O$RDFVTYP"));
    System.out.print(") ");
    <............>
    <...... handling CLOB values that are returned ....>
    // read CLOB if applicable
    Reader reader = null;
    try {
    CLOB clob = ((OracleResultSet) rs).getCLOB("O$RDFCLOB");
    if (clob == null) {
    System.out.print("not a long literal ");
    else {
    reader = clob.getCharacterStream();
    char[] buffer = new char[1024];
    // reading 1K at a time (just a demo)
    int iLength = reader.read(buffer);
    for (int i = 0; i < iLength; i++) {
    System.out.print(buffer);
    System.out.print(" ...");
    finally {
    if (reader != null) reader.close();
    <..........>

  • Is there any "Tesseract OCR API" available for "IOS SDK 7.0" ??

    I want to make an application in IOS SDK 7.0 with Xcode 5 that required "Tesseract OCR API". So, Is there any "Tesseract OCR API" available for "IOS SDK 7.0" ? if any, please post the download link.
    Thanks

    I went on with the instructions and it worked properly with whitebackground image with black colored texts and it provide garbage value results with colored images. However when I try to run it on XCode 5.1 it shows "Caanot initialize an object of type 'Tesseract *' with rvalue 'BOOL' in the  "
    (id)initWithDataPath:(NSString *)dataPath
                  language:(NSString *)language
             ocrEngineMode:(NSString *)mode
           configFilenames:(NSArray*)configFilenames
                 variables:(NSDictionary*)variables
    setOnlyNonDebugParams:(BOOL)setOnlyNonDebugParams" method.
    And when I try to modify it then it display many linker errors.

  • Is there Java API available for third-party integrations with SCCM 2012? I went through the "Developer's Survival Guide", and it seems that SCCM 2012 SDKs only support C# and PowerShell

    Hi All,<o:p></o:p>
    My team and I are developing a software using java that works closely with IT management software such as SCCM. Our software will be highly dependent on data stored in SCCM. Basically
    our software will talk to SCCM to get information about a system managed by SCCM. To be able to do that, our software needs to use a java API that talks to SCCM. Is there a java API for SCCM 2012 that we can use? If there is not, what is the work around to
    this issue (integrate a java project with SCCM SDKs)? Any help is appreciated! Thanks!<o:p></o:p>

    Hi,
    As you mentioned, it seems that there is no available Java API for SCCM .
    Just curious, what's information you want to get from SCCM.
    Based on my experience, you could query the SCCM site database to get almost all the information.
    Otherwise, your question seems to be related to SCCM 2012. You may also choose to post there to get more effictive help.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Is there any Adobe Presenter 8 sdk / api available?

    Is there any Adobe Presenter 8 sdk / api available?
    I wasn't able to find any think on Adobe homepage.

    Thank you for the reply.
    I need to interact with the content when it is "played/executed" in Adobe Connect.
    I need to know which slide is currently shown, total number of slides and end of presentation information,
    such that I can use ExternalInterface to do some stuff when terminating the presentation.

  • Is there any way (API ?) to access the UDS repository directly ...?

    This is probably reviving some older thread from way back in 1998 when similar questions where asked ...
    I am working on a program of my own (writing it in Borland Delphi), and I would like to have access to the Repository.
    One way I could think of is through the command line tools (like FScript) that come with UDS . However, I figure that there must e an 'easier' way to access the repository and retrieving/storing information.
    In one of the old threads I saw that an API would become available in v4 ...
    Alas ... no v4 ever saw the light. Instead of v4, the boys and girls of IPlanet/Sun went straight to v5 (and renamed their product from Forte to UDS).
    I can't find the API (documentation) mentioned above ...
    Does any of you guys out there have any information or, even better, examples on how to achieve access to the repository from a non-Forte application.
    If I could get this to work it would mean a huge (and that should be written HUGE) step forward in reaching my goal ...
    Hansz

    Of course there is an API to repository objects, and the SUN/iPlanet people are using it. Also in past times Forte-partners have used it. You can see the classes when you set certain cfg. flags. The problem is, there is no documentation about that API provided by SUN. If you find an expert within the community (who is not bound by a non disclosure ), it will be rather easy to set up C++ wrappers to integrate with an external (non TOOL) application.
    We feel a need for documented access to the repository objects as well, as that would make several tasks of development automatization and integration with other development tools (Forte for JAVA e.g.) more straight forward.

  • IsJRockit Memory leak detector API available ?

    I would like to write up a JAVA client to gather heap information, things like number of instances and memory size of given object(s). These info can be displayed by memory leak detector, so there has to be an interface. my question is that is this API available for me to use? what kind of license if any I need to purchase if I intend to use my client in production?
    thanks in advance.

    Yes, JVMTI is a native interface and requires a non-java library. It's probably not a good idea to try to monitor a Java application by running more Java code in the same JVM because of the interference you create.
    Regards,
    /Staffan

  • Is there a JAVA API to generate out reports yet?

    I've read all the forum information regarding a java api not being available yet. They are dated back in 2004. Is there still not one available? I need to be able to generate reports that were created with Oracle reports, but do it from a Java Application. I need some way to be able to access these reports. Is there a solution out there yet?

    You can execute reports through the reports server through a database package called SRW which is nothing more than a HTTP request.
    If you have a java program which can make a HTTP call you are in business.
    Look at the event driven API called SRW.
    Marcos

  • API available for the Oracle PM?

    We are developing a tool that will automatically generate a (graph based) workflow, which can be fairly complex (invoke hundreds of web servcie operations).
    When the workflow executes we would like the tool to monitor the execution and display the progress dynamically, where each service is displayed as a node on a graph and changes colour as the state of execution changes.
    Does the Oracle PM have an API that allows us to interrogate the state of a BPEL process during execution?

    There is an API in the client package (Java doc available in C:\orabpel\docs\apidocs) that offers access to the list of activities and the audit trail (disclaimer: the xml representation of the audit trail is rather cryptic at this point).
    If you want a more granular mapping, we have seen customers assigning metadata to the in-flight instance as it progresses (assigning a special status for example using <bpelx:exec>setStatus( "...." )</bpelx:exec>.
    Finally, in 2.1, we will start advertizing what we call BPEL sensor which are classes that can register for callbacks to monitor the status/health of in-flight process instances. This is the interface for example that our BAM tool will us to collect business events.
    I hope this helps.
    Edwin

  • Is there the apple api to get os patches info?

    Is there the apple api to get os patches info?

    Join developer.apple.com (free for limited access.) All the documentation is available there.

Maybe you are looking for

  • Arraylist only reading first line of file

    I am reading a text file using an arraylist. my file has a single value on each line e.g. 2 3 4 5 however this method is only reading only the first line of each file. is it because of this statement: String s1[] = number.split("\\s"); I would like t

  • Workbook Displays Data Not Present in the Cube for Non-Cumulative KF

    Hi All, I have a user that is reporting using noncumulative info object 0TOTALSTCK. If I look in the cube, the data starts in October and goes from there. When viewing the data, there are figures that display for the months prior to October even thou

  • CFMAIL -- How to send an e-mail to a network folder

    Guys, I am using Cold Fusion 7.0 and I have the functionality in the website where an e-mail is generated (i.e based on some changes or actions) and that e-mail goes to a folder in the Outlook right now. Instead of sending the email (which is generat

  • Java GUI problem

    Hi everyone! I got some weird java problem. The thing is that I am building a schedule system which contains all the days of the week. It is supposed to print the schedule for each day once you select a day in a comboBox. I have a linked list of JPan

  • Can the display be upgraded?

    1. Product Name and Number HP Pavilion dv6 Notebook PC A5F76AV I have a display of 15.6" which supports 1366 X 768. I was recently browsing through HP website and found one dv6 notebook with the display 15.6" diagonal full HD anti-glare LED-backlit (