Help with Partner Application

Hello,
     I am looking for some help with the �Administer Partner Application� page ( This can be reached from Portlet Repository : Administration : SSO/OID: SSO Server Administration: Administer Partner Applications).
     This page contains the list of partner applications authenticated through the SSO Server.
     I am looking for a way to add specific applications from this list (not all of them but only a few) to another page. Is there a way to do this either programmatically or through the GUI?
Thanks in advance,
Karthik Paliniappan.

Hi
can you be little more expalinatory with you sentance
I am looking for a way to add specific applications from this list (not all of them but only a few) to another page. Is there a way to do this either programmatically or through the GUI?
Regards
Samir

Similar Messages

  • Help with Partner Applications

    Hello,
    I am looking for some help with the �Administer Partner Application� page ( This can be reached from Portlet Repository : Administration : SSO/OID: SSO Server Administration: Administer Partner Applications).
    This page contains the list of partner applications authenticated through the SSO Server.
    I am looking for a way to add specific applications from this list (not all of them but only a few) to another page. Is there a way to do this either programmatically or through the GUI?
    Thanks in advance,
    Karthik Paliniappan.

    Hi,
    Please post this question on login server and sso forum.
    Thanks,
    Sharmila

  • Please need Help with web application deployment in Jdeveloper 12c

    Hi,
    I am desperate for help guys. am trying to deploy a web application in weblogic server, but nothing works!!
    I created a project in jdeveloper and created a jsp page inside the project, all what i want is to run that page!
    I followed the instruction here: Deploying Fusion Web Applications , I don't really know if i did it right or wrong, the document is too detailed and not understood clearly.
    I am a newbie oracle user, and trying to build jsp web application connected to oracle database. application deployment fails it says: cannot run application error deploying IntegratedWeblogic..
    please could you tell me the steps of application deployment in Jdeveloper 12c?
    what deployment profiles I need to create (ear, war , mar)?
    what deployment descriptor I need for my app to work?
    please guys I am newbie to oracle, if you could give me simplified answers and straight instructions it will be appreciated .
    thank you

    hi Timo,
    I am building a local web application, meaning the server is internal and will not connect to the web, only to local pcs via network. the application will insert/select data from the database server. My company wants to embed oracle technology on the datatabse and that what am trying to. I am not that expert in java and oracle in general, my main knowledge are in php, html and mysql programming. through my long internet research a lot has recommended jsp with html to be a good choice.
    At beginning I played around with ADF faces, I found it annoying because I prefer coding than using drag and drop interfaces, which always create unwanted results.
    Also am not that professional java programmer, i started learning jsp and found it easier.
    What I am thinking of is to make a web based application that works in browsers (like php), this application has forms to insert data, and also has forms to output data for printing. that's all. I tried to make it in php, but through my little knowledge and internet researches it seems php does not work with oracle and java is the recommended choice (or it works with php but too complicated to make it)
    any recommendation will be much appreciated
    thank you

  • Need Help With An Application That Produces Live Images Within Tilelists

    At the moment I have an application which is meant to produce live thumbnail images of websites. Currently how it does this is a html component (myhtml) loads websites via it's location property changing from website to website and upon fully loading of each site a "snapshot" is taken of the html component and saved as a bitmap and applied as the source of an image corresponding to that particular site (abcnewsimage and bbcnewsimage). However I now need to insert these snapshots within the 'icon' properties of 2 array collections (myTilelistAArrayCollection and myTilelistBArrayCollection) which act as dataproviders to populate 2 tilelists (mtTilelistA and myTilelistB).
    Basically I need the same images to appear automatically within the tilelists the way they do in the 2 images as the snapshots are taken by applying the same bitmaps into the currently empty 'icon' properties of the 2 tilelists i.e. the icon of the ABC News Item of both array collections must be the same as the abcnewsimage and appear as it appears and the same for the BBC News Item icon being the same as the bbcnewsimage picture as that appears.
    It should look like the images are appearing in the tilelist at the same time as they are appearing in the regular images. What will I need to put into the icon properties to do this?
    I hope this makes sense and if anyone can help me out it would be much appreciated. :-)
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="middle" backgroundColor="white" width="1024" height="768">
    <mx:Script>
    <![CDATA[
    import mx.graphics.ImageSnapshot;
    import mx.collections.*;
    private function takeSnapshot(event:Event) :void{
    var imageBitmapData:BitmapData = ImageSnapshot.captureBitmapData(myhtml) ;
    switch(myhtml.location){
    case "http://abcnews.go.com/":abcnewsimage.source =
    new Bitmap(imageBitmapData);myhtml.location =
    "http://news.bbc.co.uk/";
    break;
    case "http://news.bbc.co.uk/":bbcnewsimage.source =
    new Bitmap(imageBitmapData);
    break;}
    private var myTilelistAArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC New Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    private var myTilelistBArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC News Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    ]]>
    </mx:Script>
    <mx:HBox x="10" y="10">
    <mx:Image id="abcnewsimage" width="100" height="100" scaleContent="true"/>
    <mx:Image id="bbcnewsimage" width="100" height="100" scaleContent="true"/>
    </mx:HBox>
    <mx:HTML id="myhtml" location="http://abcnews.com/" complete="takeSnapshot(event)" width="250" height="250" horizontalScrollPolicy="off" verticalScrollPolicy="off" x="10" y="118"/>
    <mx:TileList x="268" y="118" width="294" height="250" id="myTilelistA" dataProvider="{myTilelistAArrayCollection}" rowHeight="100" columnWidth="100"/>
    <mx:TileList x="570" y="118" width="294" height="250" id="myTilelistB" dataProvider="{myTilelistBArrayCollection}" rowHeight="100" columnWidth="100"/>
    </mx:WindowedApplication>

    Cheers Flex harUI. From what I can see superimage is mainly used to keep images at better quality. What I'm concerned with is having the images set within the 'icon' properties of the 2 tilelists AS they are set within their specific images. I've tried databinding by doing this for example:-
    {id:
    "ABC New Item", label:"ABCNews", icon:"{abcnewsimage.source}"},
    I hoped that would cause the icon field of the array collection to be populated by the source of the abcnewsimage so that as the abcnewsimage is populated by the snapshot that is taken of the abcnews website the icon field of the abc news item in the array collection would be too so that furthermore the tilelists would then be populated by these images. Basically as each snapshot appears in it's specfic image it needs to be loaded into the icon property of the array collection too. In the end the icons should look as if they are appearing within both the tilelists the same way as they are appearing within the images if that makes sense. The images should be loading within the tilelist one at a time as they are in the regular image components.

  • Need Help With An Application Which Produces Live Images Within Tilelists

    At the moment I have an application which is meant to produce live thumbnail images of websites. Currently how it does this is a html component (myhtml) loads websites via it's location property changing from website to website and upon fully loading of each site a "snapshot" is taken of the html component and saved as a bitmap and applied as the source of an image corresponding to that particular site (abcnewsimage and bbcnewsimage). However I now need to insert these snapshots within the 'icon' properties of 2 array collections (myTilelistAArrayCollection and myTilelistBArrayCollection) which act as dataproviders to populate 2 tilelists (mtTilelistA and myTilelistB).
    Basically I need the same images to appear automatically within the tilelists the way they do in the 2 images as the snapshots are taken by applying the same bitmaps into the currently empty 'icon' properties of the 2 tilelists i.e. the icon of the ABC News Item of both array collections must be the same as the abcnewsimage and appear as it appears and the same for the BBC News Item icon being the same as the bbcnewsimage picture as that appears.
    It should look like the images are appearing in the tilelist at the same time as they are appearing in the regular images. What will I need to put into the icon properties to do this?
    I hope this makes sense and if anyone can help me out it would be much appreciated.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="middle" backgroundColor="white" width="1024" height="768">
    <mx:Script>
    <![CDATA[
    import mx.graphics.ImageSnapshot;
    import mx.collections.*;
    private function takeSnapshot(event:Event) :void{
    var imageBitmapData:BitmapData = ImageSnapshot.captureBitmapData(myhtml) ;
    switch(myhtml.location){
    case "http://abcnews.go.com/":abcnewsimage.source =
    new Bitmap(imageBitmapData);myhtml.location =
    "http://news.bbc.co.uk/";
    break;
    case "http://news.bbc.co.uk/":bbcnewsimage.source =
    new Bitmap(imageBitmapData);
    break;}
    private var myTilelistAArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC New Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    private var myTilelistBArrayCollection:ArrayCollection = new ArrayCollection([{id:
    "ABC News Item", label:"ABCNews", icon:""},{id:
    "BBC News Item", label:"BBC News", icon:""}]);
    ]]>
    </mx:Script>
    <mx:HBox x="10" y="10">
    <mx:Image id="abcnewsimage" width="100" height="100" scaleContent="true"/>
    <mx:Image id="bbcnewsimage" width="100" height="100" scaleContent="true"/>
    </mx:HBox>
    <mx:HTML id="myhtml" location="http://abcnews.com/" complete="takeSnapshot(event)" width="250" height="250" horizontalScrollPolicy="off" verticalScrollPolicy="off" x="10" y="118"/>
    <mx:TileList x="268" y="118" width="294" height="250" id="myTilelistA" dataProvider="{myTilelistAArrayCollection}" rowHeight="100" columnWidth="100"/>
    <mx:TileList x="570" y="118" width="294" height="250" id="myTilelistB" dataProvider="{myTilelistBArrayCollection}" rowHeight="100" columnWidth="100"/>
    </mx:WindowedApplication>

    Cheers Flex harUI. From what I can see superimage is mainly used to keep images at better quality. What I'm concerned with is having the images set within the 'icon' properties of the 2 tilelists AS they are set within their specific images. I've tried databinding by doing this for example:-
    {id:
    "ABC New Item", label:"ABCNews", icon:"{abcnewsimage.source}"},
    I hoped that would cause the icon field of the array collection to be populated by the source of the abcnewsimage so that as the abcnewsimage is populated by the snapshot that is taken of the abcnews website the icon field of the abc news item in the array collection would be too so that furthermore the tilelists would then be populated by these images. Basically as each snapshot appears in it's specfic image it needs to be loaded into the icon property of the array collection too. In the end the icons should look as if they are appearing within both the tilelists the same way as they are appearing within the images if that makes sense. The images should be loading within the tilelist one at a time as they are in the regular image components.

  • Please help with purchased application on app world....

    Hi. I hope someone can help me. I purchased an application (shazam encore) on bb app world, I clicked on the price tag, and then entered my password 2 start the purchase and downloading. When it was supposed to start the download, it gave me an error message of insufficient funds, while I had R160.83 in my account. When I checked my balance, I found that app world billed me for the application which I can't download. What can I do?
    Solved!
    Go to Solution.

    Hi and Welcome to the Community!
    I suggest that you clear the AppWorld application cache:
    1. Open App World
    2. Go to My World
    3. Follow one (and only one!) of these steps:
    3a. For keyboard-based BB's -- Hold down the ALT key and then press, in sequence R, then S, then T
    3b. For Touch Screen Only BBs -- Hold the num-lock (!?123) button so it locks and then press, in sequence 3, then 4, then (
    3c. For newer (e,g., OS6 and 7) BB's, see this KB:
    KB24714 How to clear the BlackBerry App World cache
    4. AppWorld should close.
    5. If your BB locks after issuing the cache clear, perform a battery pull reboot
    6. Return to AppWorld/MyWorld (it may be sluggish while it re-synchronizes).
    If step (4) does not happen as listed, then the clear cache did not work.
    Hopefully that will allow you to download the app you paid for. If not, then you need to contact your mobile service provider (vodacom, according to your profile) for resolution of this...they may have to escalate you into RIM so that teh records can be properly checked. Please be aware that if the vodacom rep tells you they can't help or that you need to contact RIM directly, then you need to either ask for their supervisor or hang up and call back. There is no method for you to contact RIM directly on this...only via escalation from your carrier can your case receive formal attention from RIM.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please i need help with sound application! please?

    hey there people heres the deal I need to complete this before 5 today but im completely stumped...we have to make a sound file player with a swing interface I have it playing(kind of!) but where now...I would be forever in your debt as my masters degree hangs in the balance! de de duhhhh! cheers
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.*;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.Clip;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.LineEvent;
    import javax.sound.sampled.LineListener;
    import javax.sound.sampled.LineUnavailableException;
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener{
    boolean playing;
    boolean looping;
    String filename = File.separator+"tmp";
    File selFile;
    Clip clip;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton("Open");
    JButton btnPlay = new JButton("Play");
    JButton btnStop = new JButton("Stop");
    JButton btnPause = new JButton("Pause");
    JButton btnLoop = new JButton("Loop");
    JSlider volume = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    JSlider panning = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    public AudioPlayer(){
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    contentPane.add(btnOpen);btnPlay.addActionListener(this);
    contentPane.add(btnPlay);btnPlay.addActionListener(this);
    contentPane.add(btnStop);btnStop.addActionListener(this);
    contentPane.add(btnPause);btnPause.addActionListener(this);
    contentPane.add(btnLoop);btnLoop.addActionListener(this);
    // Show open dialog; this method does not return until the dialog is closed
    fc.showOpenDialog(this);
    selFile = fc.getSelectedFile();
    volume.addChangeListener(this);
    panning.addChangeListener(this);
    volume.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    volume.setPaintTicks(true);volume.setPaintLabels(true);
    volume.setMajorTickSpacing(20);volume.setMinorTickSpacing(10);
    contentPane.add(volume);
    panning.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    panning.setPaintTicks(true);panning.setPaintLabels(true);
    panning.setMajorTickSpacing(20);panning.setMinorTickSpacing(10);
    contentPane.add(panning);
    addWindowListener(
    new WindowAdapter () {
    public void windowClosing(WindowEvent e){
    setVisible(false);
    public void actionPerformed(ActionEvent e){
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    if (e.getSource() == btnOpen)
    System.out.println("FA1");
    returnVal = fc.showOpenDialog(AudioPlayer.this);
    if (returnVal == JFileChooser.APPROVE_OPTION)
    { selFile = fc.getSelectedFile();
    //This is where a real application would open the file.
    else
    if(e.getSource() == btnPlay)
    playAudio();
    public void stateChanged(ChangeEvent e)
    public static void main(String[] args)
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize(400,400);
    audioPlayer.show();
    public void playAudio ()
    playing = true;
    AudioInputStream audiosource = null;
    try
    audiosource = AudioSystem.getAudioInputStream(selFile);
    System.out.println("here");
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info(Clip.class,audiosource.getFormat());
    clip = (Clip)AudioSystem.getLine(dataLineInfo);
    clip.open(audiosource);
    catch (UnsupportedAudioFileException e)
    catch (LineUnavailableException e)
    catch (IOException e)
    //catch (Exception e) {}
    if (looping)
    clip.loop(clip.LOOP_CONTINUOUSLY);
    else
    clip.loop(0);
    playing = false;
    }

    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import javax.sound.sampled.*;
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener {
    File selFile;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton( "Open" );
    JButton btnPlay = new JButton( "Play >" );
    JButton btnStop = new JButton( "Stop" );
    JButton btnPause = new JButton( "Pause ||" );
    JCheckBox btnLoop = new JCheckBox( "Loop" );
    JSlider volume = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JSlider panning = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JLabel label = new JLabel( " " );
    public AudioPlayer() {
    Container contentPane = getContentPane();
    contentPane.setLayout( new FlowLayout() );
    btnOpen.addActionListener( this );
    contentPane.add( btnOpen );
    btnPlay.addActionListener( this );
    contentPane.add( btnPlay );
    btnPlay.addActionListener( this );
    contentPane.add( btnStop );
    btnStop.addActionListener( this );
    contentPane.add( btnPause );
    btnPause.addActionListener( this );
    contentPane.add( btnLoop );
    btnLoop.addActionListener( this );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    // Show open dialog; this method does not return until the dialog is closed
    // fc.showOpenDialog( this );
    // selFile = fc.getSelectedFile();
    volume.addChangeListener( this );
    panning.addChangeListener( this );
    volume.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    volume.setPaintTicks( true );
    volume.setPaintLabels( true );
    volume.setMajorTickSpacing( 20 );
    volume.setMinorTickSpacing( 10 );
    contentPane.add( volume );
    panning.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    panning.setPaintTicks( true );
    panning.setPaintLabels( true );
    panning.setMajorTickSpacing( 20 );
    panning.setMinorTickSpacing( 10 );
    contentPane.add( panning );
    contentPane.add( label );
    addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e ) {
    setVisible( false );
    System.exit( -100 );
    public void actionPerformed( ActionEvent e ) {
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    System.out.println( e.getActionCommand() );
    ///open
    if ( e.getSource() == btnOpen ) {
    System.out.println( "FA1" );
    returnVal = fc.showOpenDialog( AudioPlayer.this );
    if ( returnVal == JFileChooser.APPROVE_OPTION ) {
    selFile = fc.getSelectedFile();
    player = new Player( selFile );
    label.setText( "File loaded : " + selFile.getAbsolutePath() );
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    //This is where a real application would open the file.
    } else {
    //play
    if ( e.getSource() == btnPlay ) {
    player.go( btnLoop.isSelected() );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( true );
    btnPause.setEnabled( true );
    // playAudio();
    // pause
    if ( e.getSource() == btnPause ) {
    player.pause();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( true );
    btnPause.setEnabled( false );
    if ( e.getSource() == btnStop ) {
    player.finish();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    public void stateChanged( ChangeEvent e ) {
    private Player player = null;
    public static void main( String[] args ) {
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize( 400, 400 );
    audioPlayer.show();
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    class Player {
    Clip clip;
    private java.io.File selectedFile = null;
    private boolean looping = false;
    public Player( File file ) {
    selectedFile = file;
    AudioInputStream audiosource = null;
    try {
    audiosource = AudioSystem.getAudioInputStream( selectedFile );
    System.out.println( "here" );
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info( Clip.class, audiosource.getFormat() );
    clip = ( Clip ) AudioSystem.getLine( dataLineInfo );
    clip.open( audiosource );
    } catch ( UnsupportedAudioFileException e1 ) {
    e1.printStackTrace();
    } catch ( LineUnavailableException e2 ) {
    e2.printStackTrace();
    } catch ( IOException e3 ) {
    e3.printStackTrace();
    private boolean work = false;
    public void go( boolean loop ) {
    looping = loop;
    playAudio();
    public void finish() {
    clip.stop();
    public boolean isWorking() {
    return clip.isRunning();
    long pausePosition = ( long ) 0;
    public void pause() {
    pausePosition = clip.getMicrosecondPosition();
    clip.stop();
    public void restart() {
    clip.setMicrosecondPosition( pausePosition );
    playAudio();
    public void loop( boolean loop ) {
    looping = loop;
    private void playAudio() {
    if ( looping ) {
    clip.loop( clip.LOOP_CONTINUOUSLY );
    } else {
    clip.loop( 0 );

  • Help with installing application express

    that´s my problem
    I install oracle application express in virtual machine and when I acces yo the web
    I got
    wwv_flow.app_not_found_footer_err
    please some helps .. only I know the version of the owa is not geater
    the version of APEX is 3.2
    and I was looking in other pages on internet and tells that i have to
    Confirm the PL/SQL Web Toolkit version is 10.1.2.0.6 or greater
    my version Web Toolkit version is 10.1.2.0.4 so I think could be the problem ,
    I all ready update the version but the problem is the same

    Hello,
    Did you already look in your log of the apex installation. Are you sure everything ran ok and you didn't have any errors?
    As far as I know it's or the owa package which is not correct or an incomplete install of APEX.
    Did you try to recompile the invalid objects already? @?/rdbms/admin/utlrp.sql
    If all of that doesn't work I would try to reinstall APEX.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/

  • Need help with an application problem - Photoshop Elements 3.0

    Hi,
    I wrote to an Adobe Photoshop Elements forum, but the suggestions made there have not helped solve the problem. A friend suggested that I post about it here as there are likely many of you who use the program.
    I start up PSE 3 and it begins to load. When it gets to where it says that it is "building TWAIN menu items" as soon as it says that, it closes. I have put the Photoshop Elements 3.0 Settings file into the trash, emptied the trash then restarted the program (one of the suggestions from the Adobe forum) and that didn't fix the problem. I've deleted that file and uninstalled the program, restarted the computer, then reinstalled the program - and it still closes at the same point in the startup.
    I bought my Mac in Dec. 2005 and bought PSE 3 at the computer store the same day, so neither is very old.
    Have any of you had this problem? Any suggestions on how to fix it?
    Thank you
    Pearl
    iMac G5   Mac OS X (10.4.5)  

    Thank you Rod That worked. Now, what do I do with the stuff I took out of that file?
    What are the files actually called, Pearl?
    The stuff in that folder will be a "TWAIN" driver or drivers for something that you connect to your computer to take images - a scanner or a camera, for example, (though not many cameras use TWAIN these days).
    What brand and model of scanner or camera are you using?
    The best solution in such situations is usually to download a new set of current drivers from the manufacturers web site, and install them fresh. Just stick the old ones in the trash once you have done this, and checked that it works.
    Cheers
    Rod

  • PLeazzzzzzz help with scrolling application

    Hello all,
    Basically, I want a JFrame that allows the user to scroll down if the monitor size doesn't allow the user to see the entire contents of the JFrame. The problem is that the JPanel is larger than the JScrollPane. However, it doesn't allow me to scroll down and see the rest of the components on the panel?????????????????????????
    thanks for your help!
    import java.awt.*;
    import javax.swing.*;
    public class WindowFrames extends JFrame
    private JScrollPane scrollPane;
    private JPanel mainPanel;
    private Container cp, scp;
    private static final int WIDTH = 500, HEIGHT = 500;
    public WindowFrames()
    setTitle( "Scrolling Pane Application" );
    setSize(WIDTH, HEIGHT );
    setBackground( Color.gray );
    setVisible(true);
    // setResizable(false);
    cp = getContentPane();
    cp.setLayout(null);
    mainPanel = new JPanel();
    mainPanel.setBounds(0,0,2*WIDTH,2*HEIGHT);
    mainPanel.setBackground(Color.red);
    mainPanel.setLayout(null);
    JTextArea a,b,c;
    a = new JTextArea();
    a.setVisible(true);
    a.setBounds(0,0,200,200);
    b = new JTextArea();
    b.setVisible(true);
    b.setBounds(0,400,200,200);
    c = new JTextArea();
    c.setVisible(true);
    c.setBounds(0,700,200,200);
    mainPanel.add(a);
    mainPanel.add(b);
    mainPanel.add(c);
    scrollPane = new JScrollPane(mainPanel,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS ,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED );
    scrollPane.setBounds(0,0,WIDTH, HEIGHT);
    cp.add(scrollPane);
    repaint();

    Since you are using a null layout manager, you have to manually set the
    preferrred size of the mainPanel. JScrollPane use the perfered size of it children to determine how to display the scrool bar.
    add this to your code and the scrool bar will show up.
    mainPanel.setPreferredSize(new Dimension(200, 900));
    in your code:
    ==================
    mainPanel.add(a);
    mainPanel.add(b);
    mainPanel.add(c);
    mainPanel.setPreferredSize(new Dimension(200, 900));

  • Please Help with RMI Application?

    I'm require to develop an application to simulate system services such as changing passwords and executing remote commands. ie. an application to let the client change a password on a remote machine.
    May problem is i'm very very new to java programming and wouldn't know where to start. If anybody knows of a similar application or can have the source code please please reply me with a copy.
    Thanks

    Well, the place to start is by breaking it down a little bit, and then breaking it down some more, ...
    You need something on the client computer - sounds like some kind of a command-line program, or perhaps a batch script wrapped around a command-line program. You could start by defining your comand-lines.
    You need something on the server host - another program. Needs to do all the things your client program requests, so there are some pretty clear functions to be written.
    The two programs need to communicate. Since you posted to an RMI forum, I guess you want to use RMI. You can either design your server to have one method per client-request type, or - more likely - one remotely callable server routine. You decide, and design your command protocol.
    Then, your server has to do some mechanical things: At startup, register itself with an RMIRegistry.
    Your client, when invoked, will have to get from the user the server host, and look up the server in the registry. Then it will have to make a request and - I guess - just hang waiting for a result.
    Ypou may need user ID and/or password so that your server can authenticate the user.
    Final suggestion: Pick just ONE remote function you would like to implement first, and do the smallest possible implementation just for that function.

  • Hi..I need help with an application in Adobe Illustrator..can you help me?

    I just want to type something in Adobe Illustrator and rastersize the image so I can upload onto a transfer designing site to have a transfer made of the image. How do I do that?

    I'm not sure what your skill level is, so please forgive these instructions if they are too simplistic.
    1) Type some text using the Type tool, highlighted in the image below:
    2) Go to File > Export.
    3) And, like Steve said, select the file format the transfer designing site indicates.
    Please let us know if you need any more help.

  • I need help with an application error message

    AcroRd32.exe.- application error message appears. It states that   The instruction @"0x60006db6" referenced memory at "0x60006db6". The memory could not be "read". Click OK to terminate program.

    Please try to repair the Installation from control Panel-> Add Remove Programs-> Adobe Reader-> Repair.

  • Need some help with web application structure

    I'm trying to develop a web app, scalability and flexibility are very important to me.
    I'm pretty lost right now but I am a quick learner. Basically this is what I need.
    I want a web app, but I want to structure it to be able to run using multiple client types. I want to be able to access the business logic using a CLI interface (for cron jobs), as well as HTML over HTTP, XML-RPC over HTTP, and WAP/WML. Does anyone have any advice on how to set this up in a clean, structured way? I'm having a very hard time finding information on the internet.
    By the way I am also looking for ongoing tutoring which I am willing to pay for, so I can get help when I have questions like this.

    Wow, those are some requirements. You have a lot of work ahead of you.
    I think what you will have to do is take a layered approach. Find the lowest-common-denominator (which sounds like it may be XML in this case) and have your servlets return that. Then you will have to implement various frontend- / pre-processors that are capable of taking the XML output from the servlets and reformatting it as either HTML, XML-RPC, JSON, or whatever.
    Good luck.

  • Help me with Report Application Server SDK

    Please, I need help with Report Application Server SDK.
    public static void rpt2xml(ReportClientDocument rcd) {
    IXMLExportFormat xmlExportFormat = new XMLExportFormat();
    XMLExportFormats xmlExportFormats = new XMLExportFormats();
    IXMLExportFormatOptions xmlExpFormatOpts = new XMLExportFormatOptions();
    PrintOutputController rcdPrint = rcd.getPrintOutputController();
    xmlExportFormats = rcdPrint.getSavedXMLExportFormats(); //  <------ ERROR HERE
                                        //" This method is undefined
                                               // for the type PrintOutpupController", ¿why?
    int index = xmlExportFormats.getDefaultExportSelection();
    xmlExpFormatOpts.setXMLExportSelection(index);
    xmlExportFormat = xmlExportFormats.getXMLExportFormat(index);
    Edited by: Diego XMunch on Mar 1, 2011 3:35 PM

    I819738 wrote:
    Ok, so you do have the right version of Crystal Reports.  I would like to see which assemblies you have referenced in your project and their assembly versions.  Might also be good to list your imports/using statements as well.
    Hi, I´m trying to use Report Engine SDK buy I have this error:
    com.businessobjects.rebean.wi.ServerException: Error interno al llamar a la API 'openDocumentMDP'. (Error: ERR_WIS_30270)
         at com.businessobjects.rebean.wi.occa.OccaDocumentComAdapter.checkOpenDocError(Unknown Source)
         at com.businessobjects.rebean.wi.occa.OccaDocumentComAdapter.openDocument(Unknown Source)
         at com.businessobjects.rebean.occa.OccaReportEngineComAdapter.openDocument(Unknown Source)
         at com.businessobjects.rebean.wi.ReportEngineImpl.openDocument(Unknown Source)
         at com.businessobjects.rebean.wi.occa.WebiReportEngine.openDocument(Unknown Source)
         at org.apache.jsp.login_jsp._jspService(login_jsp.java:163)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Thread.java:619)
    Edited by: Diego XMunch on Mar 10, 2011 3:37 PM

Maybe you are looking for

  • IMovie 6.02 HD Saving Error

    ERROR 1 The file could not be imported: The file "Macintosh HD/Users/johnreneski/Pictures/iPhoto Library/Originals/2006/Jamboree /IMG79702.JPG" can't be imported; QuickTime couldn't parse it: -2048 Leads to : Error: the project could not be saved. Th

  • How do you create folders within a folder on Pages?

    I have the lates version of Pages. I have a number of documents in folders ie for each month.  I would like to create another folder ie for each year and place all the folders into it.  So basically, can I or how do I create a folder to place folders

  • HOW I CAN FIX THE ERROR 69

    HOW I CAN FIX THE ERROR 69

  • 2 Versions on the same box

    Is there any risk / known problems with running iPlanet version 4.1 and iPlanet version 6 on the same server? This configuration is not being setup for migration. Thanks Kris Dailey

  • Por que mi id de apple me deja entrar a mi ipod si me deja entrar a mi pc

    Que porción Identificación mi no medeja Para entrar al iPod y Por Que si me deja Entrar en mi pc