Is there Java doc & tutorial for AQ

hi,
where can i get java doc for the classes: AQDequeueOption and classes located in apapi13.jar?
We need to do a POC which uses Streams, AQs and oracle JMS. Right now we are able to do capture and apply process, and now we are left out with AQs and oracle JMS. Can i get any links to tutorials please.......
ravi
Edited by: user480471 on 17 Sep, 2008 6:21 PM
Edited by: user480471 on 17 Sep, 2008 7:16 PM

http://www.czpet.cn/java/jdbc/oracle/javadoc/oracle/jdbc/aq/package-summary.html
Hope this Helps.
Sanju.

Similar Messages

  • Is there a video tutorial for using cyberduck and iweb?

    So, is there a video tutorial for using cyberduck and iweb to upload to a website? The written instructions on iweb are not specific enough.

    Might be worth posting that in the iWeb forum.
    http://discussions.apple.com/category.jspa?categoryID=188
    This is the iPhoto 09 forum.
    Also, have you tried searching with google?
    Regards
    TD

  • Is there a simple tutorial for Garageband?

    Is there a simple tutorial for Garageband?

    Mac 101: GarageBand
    http://www.apple.com/ilife/video-showcase/
    Type "Garageband" into the search bar at the top of this page by "Support"

  • Is there an online tutorial for IPhone 4?

    Is there an online tutorial for using the IPhone 4?  I just got one and could use some help to get started with it.

    http://www.apple.com/support/iphone/

  • Where can i find the Java doc API for Sun Portal 6.2

    Hi
    I am looking for the java doc api for portal.. for e.g, i want to know the available classes under com.sun.portal.providers.util and method details under that..
    Thanks
    Ramesh

    There should be a file called javadocs.jar in your portal installation directory. Either under SUNWps/sdk or SUNWps/export.
    - Jim

  • Is there a good tutorial for copyeditors new to InCopy?

    I have several copyeditors who have been making text changes to InDesign files in hard-copy markup. We want to give InCopy a try. What's a good tutorial for the editors that won't get them bogged down in anything but how to make text changes?

    There are a few chapters specifically for editors new to InCopy in my InDesign/InCopy Collaborative Workflow videos for lynda.com (http://j.mp/lynda-incpy)
    4. InCopy Editing Essentials
    Working with the Assignments panel
    Editing in Layout view
    Editing in Story or Galley view
    Copyfitting text
    Inserting special characters
    Importing text
    Working with read-only layouts
    5. Formatting Text in InCopy
    Applying styles for copyfit
    Applying local character formatting
    Applying local paragraph formatting
    Splitting and spanning columns
    Using the Eyedropper tool to copy/paste formatting
    6. Useful InCopy Tools
    Checking spelling
    Using the language dictionaries
    Using the thesaurus
    Using Find/Change
    Working with the Autocorrect feature
    Building text macros
    Using inline notes
    Working with built-in scripts
    7. Advanced Text Editing in InCopy
    Adding footnotes
    Using conditional text
    Creating hyperlinks
    Inserting cross-references
    Working with tables
    8. Tracking Changes in InCopy
    Setting up and using Track Changes
    Customizing the markup
    Accepting and rejecting changes
    If you don't have a lynda.com subscription, you should! So worth it.  Or you can use this for a free week's trial: http://lynda.com/freepass/amconcepcion
    Anne-Marie
    InDesignSecrets.com

  • Java Docs info for IDataConnection

    <p>Hi,</p><p> I need to create universe connection from java.</p><p>IDataConnection object is used for this, but I can&#39;t find any java docs for it!</p><p>Maybe someone knows?</p><p>Thanks!</p><p>Alex</p>

    Â Hi Alex
    Do you want to create a universe or create a connection to an existing universe? We only have a COM SDK for creating Universes. You can find this SDK in the Developer Library under 'Universe Designer and Desktop Intelligence SDK:
    [http://devlibrary.businessobjects.com | http://devlibrary.businessobjects.com/]
    My guess is that you only want to create a connection to an existing Universe using the WebI SDK. Is this right? Where are you getting your reference to the IDataConnection object. I couldn't find any references to it.Â
    It might be easier if you explain the work flow that you are trying to accomplish.
    thanks,
    Rob Horne
    http://diamond.businessobjects.com/blog/10

  • HT5225 is there a video tutorial for the dyslexic?

    i don't have the time nor attn span to read thru all this -- is there an available tutorial? 
    Surely someone at APPLE has been wise enough to make e video explaining all this, right?

    Welcome to the Apple Community.
    I don't believe there is a video unfortunately.
    If you haven't moved to iCloud or saved everything from your iDisk by midnight tonight, you will lose it all, so you need to do it now.
    Have you got a mobile me account.
    If so have you migrated to iCloud.
    Do you use your iDisk
    Do you host a website on Mobile me
    Do you have photos or video on Mobile Me
    Answer these questions and we will gladly help you do what you need to before midnight.

  • Infinite loop error after using Java Sun Tutorial for Learning Swing

    I have been attempting to create a GUI following Sun's learning swing by example (example two): http://java.sun.com/docs/books/tutorial/uiswing/learn/example2.html
    In particular, the following lines were used almost word-for-word to avoid a non-static method call problem:
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);I believe that I am accidentally creating a new instance of the gui class repeatedly (since it shows new GUI's constantly and then crashes my computer), possibly because I am creating an instance in the main class, but creating another instance in the GUI itself. I am not sure how to avoid this, given that the tutorials I have seen do not deal with having a main class as well as the GUI. I have googled (a nice new verb) this problem and have been through the rest of the swing by example tutorials, although I am sure I am simply missing a website that details this problem. Any pointers on websites to study to avoid this problem would be appreciated.
    Thanks for your time-
    Danielle
    /** GUI for MicroMerger program
    * Created July/06 at IARC
    *@ author Danielle
    package micromerger;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.swing.JFileChooser;
    import java.lang.Object;
    public class MGui
         private static File inputFile1, inputFile2;
         private static File sfile1, sfile2;
         private static String file1Name, file2Name;
         private String currFile1, currFile2;
         private JButton enterFile1, enterFile2;
         private JLabel enterLabel1, enterLabel2;
         private static MGui app;
         public MGui()
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        System.out.println("About to run create GUI method");
                        app = new MGui();
                        System.out.println("declared a new MGui....");
                        createAndShowGUI();
         //initialize look and feel of program
         private static void initLookAndFeel() {
            String lookAndFeel = null;
         lookAndFeel = UIManager.getSystemLookAndFeelClassName();
         try
              UIManager.setLookAndFeel(lookAndFeel);
         catch (ClassNotFoundException e) {
                    System.err.println("Couldn't find class for specified look and feel:"
                                       + lookAndFeel);
                    System.err.println("Did you include the L&F library in the class path?");
                    System.err.println("Using the default look and feel.");
                } catch (UnsupportedLookAndFeelException e) {
                    System.err.println("Can't use the specified look and feel ("
                                       + lookAndFeel
                                       + ") on this platform.");
                    System.err.println("Using the default look and feel.");
                } catch (Exception e) {
                    System.err.println("Couldn't get specified look and feel ("
                                       + lookAndFeel
                                       + "), for some reason.");
                    System.err.println("Using the default look and feel.");
                    e.printStackTrace();
         // Make Components--
         private Component createLeftComponents()
              // Make panel-- grid layout
         JPanel pane = new JPanel(new GridLayout(0,1));
            //Add label
            JLabel welcomeLabel = new JLabel("Welcome to MicroMerger.  Please Enter your files.");
            pane.add(welcomeLabel);
         //Add buttons to enter files:
         enterFile1 = new JButton("Please click to enter the first file.");
         enterFile1.addActionListener(new enterFile1Action());
         pane.add(enterFile1);
         enterLabel1 = new JLabel("");
         pane.add(enterLabel1);
         enterFile2 = new JButton("Please click to enter the second file.");
         enterFile2.addActionListener(new enterFile2Action());
         pane.add(enterFile2);
         enterLabel2 = new JLabel("");
         pane.add(enterLabel2);
         return pane;
         /** Make GUI:
         private static void createAndShowGUI()
         System.out.println("Creating a gui...");
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("MicroMerger");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         //Add stuff to the frame
         //MGui app = new MGui();
         Component leftContents = app.createLeftComponents();
         frame.getContentPane().add(leftContents, BorderLayout.WEST);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
    private class enterFile1Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile1 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file1Name = inputFile1.getName();
                   enterLabel1.setText(file1Name);
    private class enterFile2Action implements ActionListener
         public void actionPerformed(ActionEvent evt)
              JFileChooser chooser = new JFileChooser();
              int rVal = chooser.showOpenDialog(enterFile1);
              if(rVal == JFileChooser.APPROVE_OPTION)
                   inputFile2 = chooser.getSelectedFile();
                   PrintWriter outputStream;
                   file2Name = inputFile2.getName();
                   enterLabel2.setText(file2Name);
    } // end classAnd now the main class:
    * Main.java
    * Created on June 13, 2006, 2:29 PM
    * @author Danielle
    package micromerger;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Main
        /** Creates a new instance of Main */
        public Main()
         * @param args the command line arguments
        public static void main(String[] args)
            MGui mainScreen = new MGui();
            //mainScreen.setVisible(true);
            /**Starting to get file choices and moving them into GPR Handler:
             System.out.println("into main method");
         String file1Name = new String("");
             file1Name = MGui.get1Name();
         System.out.println("good so far- have MGui.get1Name()");
        }// end main(String[] args)
    }// end class Main

    um, yeah, you definitely have a recursion problem, that's going to create an infinite loop. you will eventually end up an out of memory error, if you don't first get the OS telling you you have too many windows. interestingly, because you are deferring execution, you won't get a stack overflow error, which you expect in an infinite recursion.
    lets examine why this is happening:
    in main, you call new MGui().
    new MGui() creates a runnable object which will be run on the event dispatch thread. That method ALSO calls new MGui(), which in turn ALSO creates a new object which will be run on the event dispatch thead. That obejct ALSO calls new MGui(), which ...
    well, hopefully you get the picture.
    you should never unconditionally call a method from within itself. that code that you have put in the constructor for MGui should REALLY be in the main method, and the first time you create the MGui in the main method as it currently exists is unnecessary.
    here's what you do: get rid of the MGui constructor altogether. since it is the implicit constructor anyway, if it doesn't do anything, you don't need to provide it.
    now, your main method should actually look like this:
    public static void main( String [] args ) {
      SwingUtilities.invokeLater( new Runnable() {
        public void run() {
          MGui app = new MGui();
          app.createAndShowGUI();
    }// end mainyou could also declare app and call the constructor before creating the Runnable, as many prefer, because you would have access to it from outside of the Runnable object. The catch there, though, is that app would need to be declared final.
    - Adam

  • 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.

  • Want to import Edge animation as hover over link reaction, is there a good tutorial for this?

    Hey guys, I just got Edge Animate yesterday, and I understand most of the animation techniques since it's very similar to After Effects. However I am having trouble integrating it with Dreamweaver. So far I can publish is as an .html file and hotlink to it. What this does right now in a preview browser, I will click on the link connected to the EdgeAnimate.html file and it will open a new window, play the animation and that's it. (I know you can set images in the animation to thier own links as well, just don't have it set up yet)
    However, what I actually want to accomplish is to use these animations in my main dreamweaver website layout I am currently working on right now. As an example, let's say I have 4 link buttons in this crude layout:
    -Images             |              empty space                |
    -Videos             |              empty space                |
    -About              |              empty space                |
    -Contact            |              empty space                |
    When I hover over the links on the lefthand side, let's say the "Images" link, I'd like a short animation I made in Edge to play in the    | empty space |   part of my web layout. When I hover over the other links, I want the animation they trigger to be different. When I click on the link, it will take you to a different page.
    I hope this made sense and someone can lend me a hand, it will be greatly appreciated. I am pretty new to Dreamweaver so many of the code terms are a bit difficult to understand still.
    Thanks in advance!
    p.s. if there are video tutorials or something that already covers this, a link to that would be great.

    Hi there!
      You could easily make the buttons with the rollover animation in Edge Animate itself, rather than have the animation separate from the links in Dreamweaver. You would make an animation in a symbol and then reference the symbol in the rollover function of the link. I'm providing a sample project below for you to check out:
      https://creative.adobe.com/share/c0a2785d-1a43-482b-afa2-11620b367e8
      If you need further clarification, let me know. After you create your links and animations you can import the entire navigation into your Dreamweaver project using Insert > Media > Edge Animate Composition.
    I hope this helps!

  • Are there .java.policy changes for 1.6.0_10-rc2?

    Hi,
    I just installed 1.6.0_10-rc2 and now my applets are getting: access denied (java.io.FilePermission read errors. The .java.policy file has been working for years with 1.4 and 1.5. Now with 1.6.0_10-rc2 I get these errors?
    How do I find out what the problem is and correct it?
    Thanks,
    Norm

    Hi All
    Got a similar issue with the tracking / bookmarking of sessions - when on sun Java update 7 all is well however when update 10 or 11 is installed then SCROM session start on page 1 not the page you were on, also as expected they do not get marked as complete.
    Two things happen
    1) A small window is left for - [http://riti04.cornwall.nhs.uk:7780/ilearn/en/learner/jsp/relogin.jsp] - URL
    2) We get an Error on page - [http://riti04.cornwall.nhs.uk:7780/ilearn/en/learner/jsp/lms.jsp] - URL
    Looked for the Plugin section as per a pervious within the Java Control panel - but I'm not seeing it.
    We use iLearn 5.0 and I am begining to think we need a patch but unsure which.
    Thanks
    Stephen

  • Is there a recommended tutorial for editing multiple track regions?

    I've been used to DP where you define a region of time on the sequence, select all the tracks you want to affect, then proceed to do any number of things with those tracks..like, maybe nudge them one way or another to line up a punch in more precisely. For example, I was tracking in another studio where they were using Nuendo. The session was laying down 8 tracks of drums to a stereo mix of the main tune. When the drummer wanted to go back and punch in a few bars, the engineer could grab the in and out of all 8 tracks of the punch in and easily line up the in point to a precise location, as well as trim the out.
    Maybe I need to break out the manual again, but in Logic, I can set the locators, but only see the button where I can "cut" that selection, and am not sure if it's possible to move all the tracks around.
    Anyway...thanks for any direction here.

    Hello JAYUSBEEUS,
    "iMovie is meant to work with firewire connected miniDV camcorders"
    HDD camcorders record in MPEG format which is not accepted by iMovie. If you were to buy one of these cameras, you would have to convert all your recorded video to DV format before being able to edit it.
    If you want to be able to edit your videos on your mac, your best choice is a MiniDV camcorder. Sony, Canon, and Panasonic have several models in your pricerange. My personal favorite is the Panasonic GS500, a 3-chip camcorder with very good pic quality at a reasonable price. In order to browse through some unbiased reviews go to www.camcorderinfo.com - maybe start reading here:
    The 10 questions to ask when buying a camcorder
    http://www.camcorderinfo.com/content/10-Questions-to-Ask-When-Buying-A-Camcorder .htm
    And also here: Which camera to buy and why
    http://discussions.apple.com/thread.jspa?threadID=523995&tstart=0
    hope this helps
    mish

  • Newbie to Java Doc

    Hello All,
    I am pretty new to JavaDoc - i got a general hang of it and did some sample java doc generations for some java files to understand more better. Now I have been requested to create custom javadoc tags for an existing project. How do I go about this? It would be appreciated if anyone could help me out with pointers .
    Thanks

    Depending on how complex the produced output of your custom tags should be you can either use Javadoc's -tag option or write a custom Taglet.
    See [http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#tag] and [http://java.sun.com/j2se/1.5.0/docs/guide/javadoc/taglet/overview.html] for related documentation.

  • Tutorial for a beginner for Adobe photoshop elements 7

    Hi, Many years to remember when I first downloaded Adobe photoshop worked ok. Then purchased the PSE set-up. I found it a very sophistcated program but never could master it. So I kept with Adobe photoshop. But when I changed recently form Windows XP to Windows 7 in the transfer the adobe photoshop although it appears on the screen it is inopretive. My PSE seems still to be working but with the lack operational  skill. Can anyone tell me if there is a tutorial for a beginner. Step by step.. Also would appreciate a adobe help contact to discuss my cd issue of Adobe photoshop elemets 7 .Thanks

    I suggest to you to puchase  the manual by Barbara Brundage for PSEv.7. It's availabe on Amazon (new) for $5.00 or less for a used copy.
    http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=photoshop%20e lements%207%20brundage

Maybe you are looking for

  • New Tiger 10.4.6  installation Questions

    Just installed a new retail version of Tiger 10.4.6 today. I bought it from Apple. It's up and running and I'm using it now, but I have some questions and things I'm not sure about. When I bought the DVD the Apple rep told me it was not compatible wi

  • PSE 10 Organizer Show ? On All Thumbnails

    When I try to access any of my photos in the PSE 10 Organizer they all come up with a ?. If I try to edit a photo the software treats it as a missing file, so I try to reconnect the file only to be told that it already exits in the Organiizer. I have

  • ITunes will not close!  possible scripting issue

    i'm coming across this situation almost daily, iTunes will refuse to close when i hit the close button or go File -> Exit. sometimes i will get a prompt that iTunes is scripting but usually it just doesn't respond to either methods of closing. obviou

  • Installation/deployement of an application with wls

    Hello, I'm trying to package an application that I deployed under wls7 so that I could give it to someone else and he/she would be able to deploy it under his/her own wls7 installation. If I zip my application and unzip it under another wls7 installa

  • White Balance Questions

    Is there a way that I can shoot a pic of a gray card at the beginning of a photo session and then magically apply that neutral gray to an entire project automatically? Or, do I have to go through and adjust the white balance on each and every picture