Connecting view button to player! help

hi! I have posted my codes for Client and ClientChoice.
in the actionlistener event of the ClientChoice(gui) have i have called the Client class where the player is found and where connection is made to the server. the error i get is that the .class of the Client is:
mainCl(java.lang.String[]) in Client cannot be applied to (java.lang.String,java.lang.String)          cl.mainCl(a,b);
can anyone help me ! am i doing the right thing or someway else plz help me......i have a week on that and i'm being late. here are the code:
//Client.java
//package ana;
import java.io.*;
import java.awt.*;
import java.net.*;
import java.awt.event.*;
import java.util.Vector;
import javax.media.*;
import javax.media.rtp.*;
import javax.media.rtp.event.*;
import javax.media.rtp.rtcp.*;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import javax.media.format.AudioFormat;
import javax.media.format.VideoFormat;
import javax.media.Format;
import javax.media.format.FormatChangeEvent;
import javax.media.control.BufferControl;
* Client to receive RTP transmission using the RTPConnector.
public class Client implements ReceiveStreamListener, SessionListener,
     ControllerListener
String sessions[] = null;
RTPManager mgrs[] = null;
Vector playerWindows = null;
boolean dataReceived = false;
Object dataSync = new Object();
public Client(String sessions[]) {
     this.sessions = sessions;
public Client(String a, String b)
     }//constructor
protected boolean initialize() {
try {
     mgrs = new RTPManager[sessions.length];
     playerWindows = new Vector();
     SessionLabel session;
     // Open the RTP sessions.
     for (int i = 0; i < sessions.length; i++) {
          // Parse the session addresses.
          try {
          session = new SessionLabel(sessions);
          } catch (IllegalArgumentException e) {
          System.err.println("Failed to parse the session address given: " + sessions[i]);
          return false;
          System.err.println(" - Open RTP session for: addr: " + session.addr + " port: " + session.port + " ttl: " + session.ttl);
          mgrs[i] = (RTPManager) RTPManager.newInstance();
          mgrs[i].addSessionListener(this);
          mgrs[i].addReceiveStreamListener(this);
          // Initialize the RTPManager with the RTPSocketAdapter
          mgrs[i].initialize(new RTPSocketAdapter(
                         InetAddress.getByName(session.addr),
                         session.port, session.ttl));
          // You can try out some other buffer size to see
          // if you can get better smoothness.
          BufferControl bc = (BufferControl)mgrs[i].getControl("javax.media.control.BufferControl");
          if (bc != null)
          bc.setBufferLength(350);
} catch (Exception e){
System.err.println("Cannot create the RTP Session: " + e.getMessage());
return false;
     // Wait for data to arrive before moving on.
     long then = System.currentTimeMillis();
     long waitingPeriod = 30000; // wait for a maximum of 30 secs.
     try{
     synchronized (dataSync) {
          while (!dataReceived &&
               System.currentTimeMillis() - then < waitingPeriod) {
          if (!dataReceived)
               System.err.println(" - Waiting for RTP data to arrive...");
          dataSync.wait(1000);
     } catch (Exception e) {}
     if (!dataReceived) {
     System.err.println("No RTP data was received.");
     close();
     return false;
return true;
public boolean isDone() {
     return playerWindows.size() == 0;
* Close the players and the session managers.
protected void close() {
     for (int i = 0; i < playerWindows.size(); i++) {
     try {
          ((PlayerWindow)playerWindows.elementAt(i)).close();
     } catch (Exception e) {}
     playerWindows.removeAllElements();
     // close the RTP session.
     for (int i = 0; i < mgrs.length; i++) {
     if (mgrs[i] != null) {
mgrs[i].removeTargets( "Closing session from AVReceive3");
mgrs[i].dispose();
          mgrs[i] = null;
PlayerWindow find(Player p) {
     for (int i = 0; i < playerWindows.size(); i++) {
     PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
     if (pw.player == p)
          return pw;
     return null;
PlayerWindow find(ReceiveStream strm) {
     for (int i = 0; i < playerWindows.size(); i++) {
     PlayerWindow pw = (PlayerWindow)playerWindows.elementAt(i);
     if (pw.stream == strm)
          return pw;
     return null;
* SessionListener.
public synchronized void update(SessionEvent evt) {
     if (evt instanceof NewParticipantEvent) {
     Participant p = ((NewParticipantEvent)evt).getParticipant();
     System.err.println(" - A new participant had just joined: " + p.getCNAME());
* ReceiveStreamListener
public synchronized void update( ReceiveStreamEvent evt) {
     RTPManager mgr = (RTPManager)evt.getSource();
     Participant participant = evt.getParticipant();     // could be null.
     ReceiveStream stream = evt.getReceiveStream(); // could be null.
     if (evt instanceof RemotePayloadChangeEvent) {
     System.err.println(" - Received an RTP PayloadChangeEvent.");
     System.err.println("Sorry, cannot handle payload change.");
     System.exit(0);
     else if (evt instanceof NewReceiveStreamEvent) {
     try {
          stream = ((NewReceiveStreamEvent)evt).getReceiveStream();
          DataSource ds = stream.getDataSource();
          // Find out the formats.
          RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
          if (ctl != null){
          System.err.println(" - Recevied new RTP stream: " + ctl.getFormat());
          } else
          System.err.println(" - Recevied new RTP stream");
          if (participant == null)
          System.err.println(" The sender of this stream had yet to be identified.");
          else {
          System.err.println(" The stream comes from: " + participant.getCNAME());
          // create a player by passing datasource to the Media Manager
          Player p = javax.media.Manager.createPlayer(ds);
          if (p == null)
          return;
          p.addControllerListener(this);
          p.realize();
          PlayerWindow pw = new PlayerWindow(p, stream);
          playerWindows.addElement(pw);
          // Notify intialize() that a new stream had arrived.
          synchronized (dataSync) {
          dataReceived = true;
          dataSync.notifyAll();
     } catch (Exception e) {
          System.err.println("NewReceiveStreamEvent exception " + e.getMessage());
          return;
     else if (evt instanceof StreamMappedEvent) {
     if (stream != null && stream.getDataSource() != null) {
          DataSource ds = stream.getDataSource();
          // Find out the formats.
          RTPControl ctl = (RTPControl)ds.getControl("javax.media.rtp.RTPControl");
          System.err.println(" - The previously unidentified stream ");
          if (ctl != null)
          System.err.println(" " + ctl.getFormat());
          System.err.println(" had now been identified as sent by: " + participant.getCNAME());
     else if (evt instanceof ByeEvent) {
     System.err.println(" - Got \"bye\" from: " + participant.getCNAME());
     PlayerWindow pw = find(stream);
     if (pw != null) {
          pw.close();
          playerWindows.removeElement(pw);
* ControllerListener for the Players.
public synchronized void controllerUpdate(ControllerEvent ce) {
     Player p = (Player)ce.getSourceController();
     if (p == null)
     return;
     // Get this when the internal players are realized.
     if (ce instanceof RealizeCompleteEvent) {
     PlayerWindow pw = find(p);
     if (pw == null) {
          // Some strange happened.
          System.err.println("Internal error!");
          System.exit(-1);
     pw.initialize();
     pw.setVisible(true);
     p.start();
     if (ce instanceof ControllerErrorEvent) {
     p.removeControllerListener(this);
     PlayerWindow pw = find(p);
     if (pw != null) {
          pw.close();
          playerWindows.removeElement(pw);
          //p.close(); //i added to know if player close when click
     System.err.println("Client internal error: " + ce);
* A utility class to parse the session addresses.
class SessionLabel {
     public String addr = null;
     public int port;
     public int ttl = 1;
     SessionLabel(String session) throws IllegalArgumentException {
     int off;
     String portStr = null, ttlStr = null;
     if (session != null && session.length() > 0) {
          while (session.length() > 1 && session.charAt(0) == '/')
          session = session.substring(1);
          // Now see if there's a addr specified.
          off = session.indexOf('/');
          if (off == -1) {
          if (!session.equals(""))
               addr = session;
          } else {
          addr = session.substring(0, off);
          session = session.substring(off + 1);
          // Now see if there's a port specified
          off = session.indexOf('/');
          if (off == -1) {
               if (!session.equals(""))
               portStr = session;
          } else {
               portStr = session.substring(0, off);
               session = session.substring(off + 1);
               // Now see if there's a ttl specified
               off = session.indexOf('/');
               if (off == -1) {
               if (!session.equals(""))
                    ttlStr = session;
               } else {
               ttlStr = session.substring(0, off);
     if (addr == null)
          throw new IllegalArgumentException();
     if (portStr != null) {
          try {
          Integer integer = Integer.valueOf(portStr);
          if (integer != null)
               port = integer.intValue();
          } catch (Throwable t) {
          throw new IllegalArgumentException();
     } else
          throw new IllegalArgumentException();
     if (ttlStr != null) {
          try {
          Integer integer = Integer.valueOf(ttlStr);
          if (integer != null)
               ttl = integer.intValue();
          } catch (Throwable t) {
          throw new IllegalArgumentException();
* GUI classes for the Player.
class PlayerWindow extends Frame {
     Player player;
     ReceiveStream stream;
     PlayerWindow(Player p, ReceiveStream strm) {
     player = p;
     stream = strm;
     public void initialize() {
     add(new PlayerPanel(player));
     public void close() {
     player.close();
     setVisible(false);
     dispose();
     public void addNotify() {
     super.addNotify();
     pack();
* GUI classes for the Player.
class PlayerPanel extends Panel {
     Component vc, cc;
     PlayerPanel(Player p) {
     setLayout(new BorderLayout());
     if ((vc = p.getVisualComponent()) != null)
          add("Center", vc);
     if ((cc = p.getControlPanelComponent()) != null)
          add("South", cc);
     public Dimension getPreferredSize() {
     int w = 0, h = 0;
     if (vc != null) {
          Dimension size = vc.getPreferredSize();
          w = size.width;
          h = size.height;
     if (cc != null) {
          Dimension size = cc.getPreferredSize();
          if (w == 0)
          w = size.width;
          h += size.height;
     if (w < 160)
          w = 160;
     return new Dimension(w, h);
public static void mainCl(String argv[])
     if (argv.length == 0)
     prUsage();
     Client avReceive = new Client(argv);
     if (!avReceive.initialize()) {
     System.err.println("Failed to initialize the sessions.");
     System.exit(-1);
     // Check to see if Client is done.
     try {
     while (!avReceive.isDone())
          Thread.sleep(1000);
     } catch (Exception e) {}
     System.err.println("Exiting Client");
static void prUsage() {
     System.err.println("Usage: Client <session> <session> ...");
     System.err.println(" <session>: <address>/<port>/<ttl>");
     System.exit(0);
}// end of Client
//package ana;
import javax.swing.*;
import javax.swing.UIManager;
import java.awt.*;
import java.awt.event.*;
public class ClientChoice
     public static void main(String args[])
          try
                         UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                    catch(Exception e)
     }//main
     JFrame frame=new JFrame("--- New Line Movie ---");
     //Create the menu bar
     JMenuBar menuBar;
     JMenu menu;
     menuBar = new JMenuBar();
     //Build the file menu in the menu bar
     menu = new JMenu("File");
     menu.setMnemonic(KeyEvent.VK_F);
     menuBar.add(menu);
     JMenuItem menuItem= new JMenuItem("Exit",KeyEvent.VK_X);
     menuItem.addActionListener(new ActionListener()
          public void actionPerformed(ActionEvent e)
                    System.exit(0);
     menu.add(menuItem);
     //Build help menu in the menu bar.
     menu = new JMenu("Help");
     menu.setMnemonic(KeyEvent.VK_H);
     menuBar.add(menu);
     JMenuItem help_item=new JMenuItem("Help Topics",KeyEvent.VK_T);
     menu.add(help_item);
     JMenuItem about_item=new JMenuItem("About Us");
     menu.add(about_item);
     frame.setJMenuBar(menuBar);
          ImageIcon icon=new ImageIcon("images/potter.jpg","");
          JButton clickmovie=new JButton(icon);
          //final JLabel latest=new JLabel("<html><caption>Harry Potter</caption></html>");
          //clickmovie.add(latest);
          final JLabel welcome1=new JLabel("<html><font color=blue face=arial size=3><strong>New Line Movie</strong> gives you the possibility to view your favorite movies.<br>You can choose your category of movies below and click on any movie to get more information about it. <br>Latest News about new movies are also available. ENJOY!!!</font></html>");
          frame.getContentPane().add(welcome1,BorderLayout.EAST);
          final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
          //frame.getContentPane().add(copyright,BorderLayout.EAST);
          JPanel actionPanel=new JPanel();
          JPanel cartoonPanel=new JPanel();
          JPanel comedyPanel=new JPanel();
          JPanel fictionPanel=new JPanel();
          JPanel mainPanel=new JPanel();
          mainPanel.setLayout(new GridLayout(2,1,5,5));
          mainPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
          mainPanel.add(actionPanel);
          mainPanel.add(cartoonPanel);
          mainPanel.add(comedyPanel);
          mainPanel.add(fictionPanel);
          //mainPanel.add(copyright);
          actionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Action"),BorderFactory.createEmptyBorder(5,5,5,5)));
          cartoonPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Cartoon"),BorderFactory.createEmptyBorder(5,5,5,5)));
          comedyPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Comedy"),BorderFactory.createEmptyBorder(5,5,5,5)));
          fictionPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Science Fiction"),BorderFactory.createEmptyBorder(5,5,5,5)));
          frame.getContentPane().add(mainPanel,BorderLayout.SOUTH);
          frame.getContentPane().add(clickmovie,BorderLayout.WEST);
          // Create combo box with action movies choices
          final JComboBox actionChoices;
          String[] actionmovie={"-Select a movie-","X-Men","Spiderman"};
          actionChoices=new JComboBox(actionmovie);
          actionChoices.setSelectedIndex(0);
          actionPanel.add(actionChoices);
          actionChoices.addActionListener(new ActionListener()
               public void actionPerformed(ActionEvent e)
                    JComboBox cb = (JComboBox)e.getSource();
                    String act = (String)cb.getSelectedItem();
                    if(act=="X-Men")
                         JFrame action_xmen= new JFrame("--- New Line Movie: X-Men --- ");
               action_xmen.setSize(400,350);
               JPanel main=new JPanel();
               main.setLayout(new GridLayout(2,1,5,5));
                         main.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
                         ImageIcon icon_men=new ImageIcon("images/x-men.jpg","");
               JButton clickmovie_men=new JButton(icon_men);
               final JLabel xmen_overview=new JLabel("<html><font color=blue face=arial size=3><b>Title:</b></font> <font color=black><strong>X-Men 2 </strong></font> <br><br><font color=blue face=arial size=3><b>Starring:</b> Hugh JACKMAN and Halle BARRY<br><br><b>Story:</b> The time has come for those who are different to stand united. <br><br>A military officer with a link to Wolverine's mysterious past conspires <br><br>to eradicate the mutant population for once and all. In order to defeat <br><br>this new menace, the X-men will be forced to join forces with Magneto. <br><br><b>Duration:</b> 1hr45min </font></html>");
               final JLabel copyright=new JLabel("<html><font color=blue face=arial size=3><p align=center>&copy Copyright 2004</p></font></html>");
                         action_xmen.getContentPane().add(copyright,BorderLayout.SOUTH);
               JButton view=new JButton("View");
               view.setLayout(new BoxLayout(view,BoxLayout.X_AXIS));
                                        view.add(Box.createHorizontalGlue());
                         view.add(Box.createRigidArea(new Dimension(30,0)));
               view.setMinimumSize(new Dimension(20,100));
               view.setPreferredSize(new Dimension(20,100));
               view.setMaximumSize(new Dimension(Short.MAX_VALUE,Short.MAX_VALUE));
               view.setMnemonic('v');
               view.addActionListener(new ActionListener()
                              public void actionPerformed(ActionEvent e)
                                        String a="172.22.45.44/42050";
                                        String b="172.22.45.44/42052";
                                        String argv=a+b;
                                        Client cl= new Client(a,b);
                                        cl.mainCl(a,b);
                                        //this is the code i added so that on clicking the view button
                                        //the client is automatically connected to the server and the player
                                        //plays on the current machine
               main.add(clickmovie_men);
                         main.add(view);
                         //action_xmen.getContentPane().add(view,BorderLayout.SOUTH);
               action_xmen.getContentPane().add(main,BorderLayout.WEST);
               action_xmen.getContentPane().add(xmen_overview,BorderLayout.EAST);
               action_xmen.show();
                    else if(act=="Spiderman")
                         JFrame action_spider= new JFrame("--- New Line Movie: Spiderman --- ");
                         action_spider.setSize(400,350);
               action_spider.show();
          //Create combo box with cartoon movies choices
          JComboBox cartoonChoices=null;
          String[] cartoonmovie={"-Select a movie-","Le Roi Lion"};
          cartoonChoices=new JComboBox(cartoonmovie);
          cartoonChoices.setSelectedIndex(0);
          cartoonPanel.add(cartoonChoices);
          //cartoonChoices.addActionListener();
          //Create combo box with comedy movies choices
          JComboBox comedyChoices=null;
          String[] comedymovie={"-Select a movie-"};
          comedyChoices=new JComboBox(comedymovie);
          comedyChoices.setSelectedIndex(0);
          comedyPanel.add(comedyChoices);
          //comedyChoices.addActionListener();
          //Create combo box with fiction movies choices
          JComboBox fictionChoices=null;
          String[] fictionmovie={"-Select a movie-","ET"};
          fictionChoices=new JComboBox(fictionmovie);
          fictionChoices.setSelectedIndex(0);
          fictionPanel.add(fictionChoices);
          //fictionChoices.addActionListener();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.pack();
          frame.setVisible(true);
//Implement player function here
}//end of ClientChoice

You are passing two String objects to a method that accepts an String array.
try this to get rid of one error.
Client cl = new Client(a, b);
String[] c = {a,b};
Client.mainCl(c);

Similar Messages

  • Connecting to portable DVD player help.

    When I connect my 5G 30gb iPod to my portable DVD player (single mini plug) all I get on the player are intermittent horizontal white lines. No sound, no picture.
    Yes, I have checked the video output settings on the iPod.
    What could be wrong?

    As long as your DVD player accepts the plugs on your cable all you have to do is hook up the white plug to the audio. If you have a plug that looks more like a mini headphone plug then you can get an adaptor to make the RCA plug on your cord become a mini plug. Still, you should be able to just plug in the one audio plug and get sound. Same as I do on my TV that only has mono.

  • Why does the fire fox page change, sometimes it is just an orange fire fox button and othr times it says file, edit, view History, bookmarks, tools, help? I barely learn how to run one version of the page and then it changes

    Why does the fire fox page change, sometimes it is just an orange fire fox button on the top left that opens a panel with all the things listed in it and then it sometimes has a bar across the top that says File, Edit, View, History, bookmarks, tools, Help? I barely get used to using one type of set up and then it changes to the other without me doing anything??

    [[Menu bar is missing]] and [[Preferences are not saved]] may help to you

  • I just bought an iPad and each time I click on the iTunes button it says "cannot connect to iTunes" I need help on this urgently

    I just bought an iPad2 and each time I click on the iTunes button it says "cannot connect to iTunes" I need help on this urgently

    Try a Reset...
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    Basic troubleshooting
    From Here
    http://www.apple.com/support/ipad/basics/

  • My imac stops(freezes) everytime when I try to extract ipod nano. So if I quit the connection by force, it stops again. Have no choice but to shut down the imac pushing power supply button. Pls help me solve out this problems.

    My imac stops everytime when I try to extract ipod nano. So if I do it by force it freezes agian. Have no choice but to shut down the computer
    by pushing power button. Pleas help me solve this out!!!
    It's not good to shut off the power forcibly, right? (I dun know what else I can do...)

    Hi Min! I'm having exactly the same issue - have been putting up with it now for months but have finally had enough! Every single time i eject either my iphone, ipad or ipod nano, itunes freezes up, the computer becomes unresponsive. Usually i can use the mouse to highlight icons but the system doesn't respond, the keyboard doesn't work and I have to do a hard reset.
    Arrrrrggggggh!!!!!!! lol
    Someone please help!!!

  • Help with view buttons.

    Hello,
    I am unable to use the three view buttons in the upper right hand of screen when I am in the ipod music section. I can us them when in library but not in ipod music. I check view and the option for view list is checked, but not highlighted. Any suggestions?
    Thanks in advance.

    * In Firefox 3.6 versions on Windows and Firefox 4 on Windows and Linux it's possible to hide the "Menu Bar" via "View > Toolbars" or via the right-click context menu of a toolbar.
    * Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * Go to "View > Toolbars" or right-click the "Menu Bar" or press Alt+V T to select which toolbars to show or hide (click on an entry to toggle the state).
    See also:
    * [[Menu bar is missing]]
    * http://kb.mozillazine.org/Toolbar_customization

  • Connecting a VCR/DVD Player to a new iMac?

    Hi,
    Just bought an iMac 17" with the 2.0 cpu. It is connected to the internet via a wireless dsl router elsewhere in our house. No problems, my daughter has put nearly 15-hours on the net with no complaints so far, fingers crossed, of course.
    [I have an older Dell pc and a vcr/dvd player connected using RCA plugs directly from the player into my video & sound cards. I have the option of using the S-video cable as well.]
    I asked the dealer if it was possible to connect a vcr/dvd player to the iMac for viewing only, and the salesperson did not know. Has anyone seen such a device? A customer at the Apple Store said that I might have to bypass Apple's OS and get a copy of Windows. I thought I was getting rid of the pc when I switched to the iMac.
    Any help would be appreciated!

    I use a Dazzle Hollywood DV bridge. It's a firewire A/D converter that lets me capture composite or s-video to my iMac. I also use it to watch TV on my desktop using a VCR and Video Viewer utility.
    I would recommend you use a firewire device to ensure maximum compatibility with the Mac (iMovie, etc.) with no need for drivers. In the case of the Hollywood Bridge, it was sold as a Windows only product. But as a firewire device, no software was needed for the Mac. It works great with all video/media software and is recognized like any firewire camcorder.
    Although the Hollywood bridge isn't sold anymore, you can find them on ebay. Otherwise, you can research any video A/D converter device such as those sold by Pinnacle (pinnaclesys.com).
    Mark
    iMac C2D (20in:2.16Ghz)   Mac OS X (10.4.8)  

  • Connecting my blu ray player to FiOS router/modem for Netflix streaming

    With the proper connections, my Blu ray player can stream films from Netflix.  How do I go about connecting my Blu ray player to the FiOS equipment?  Has Verizon provided me with both a wireless router and modem?  Is the Verizon wireless router already connected to a modem with a LAN cable?
    Solved!
    Go to Solution.

    marvinarb wrote:
    Thank you all for providing such great support....it is much appreciated.
    Hasta,
    Marvin
    That is great to hear/read, please mark as solved (if it is solved that is).
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • View button issue in BI publisher 101.3.4.0 and 10.1.3.4.1

    Hi,
    Initially I had a BI Publisher 10.1.3.4.0 in OAS 10.1.3.4.0 that I sorted out from Oracle_Home\config\ias.properties file
    Then my clients were facing an issue with the View Button, when u'd want to print or generate reports in whichever available format.
    The issue was that the view button does not get disabled after clicking it for the first time. If its a huge report, it wud take time to get generated. However clients impatiently click on the view button again an again thinking that they would get quicker response.
    The underlying concept, when the first request is not completed, and then you send a second request and third and fourth..... there springs up heavy load on the database end.
    I had raised an SR with Oracle on Metalink. Oracle is unable to provide a solution.
    Ofcourse the asked me to upgrade it to 11g, which is not possible.
    Eventually they gave me patch 11931697.
    I went ahead and successfully applied the patch.
    But the problem continues during report generation. The VIEW button still is active and allows my clients to click on it any number of time eventually causing heavy load on the Database end.
    Please help...
    Regards
    Lam.

    Hello Jorge,
    My extreme apologies. Didn't know I was actually talking to a Pro.
    What I did is, I deployed the xmlpserver application from 10.1.3.4.1 in BI publisher 10.1.3.4.0, and only kept the xmlp folder and xmlp-server-config.xml file the same.
    At least the hour glass/clock is now seen rotating when the report is generated. That way my customers are assured that processing is going on and they can wait patiently unlike in the earlier case, no hour glass and customers thinks they need to press the VIEW button again and again undesirably.
    Seen your BLOG, am really impressed Sir..! Allow me to call you "Sir". Its outta deep Respect.
    However I am still waiting for Oracle for their Final say on this case. They have converted my SR to a BUG. :-)
    Cheers.
    Lam

  • I am unable to receive or send email from my IPAD.  The error message says "Connection to server failed".  Help!! geandreamer44

    I am unable to receive or send email from my IPAD.  The error message says "Connection to server failed".  Help!! geandreamer44

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that doesn't help, tap Settings > General > Reset > Reset Network Settings
    You will have to re enter your Wi-Fi password.
    If nothing above helped, restart your router.
    No data is lost due to a reset.

  • "Archive" and "View" buttons don't work after folio update

    Hi all,
    I have a subscription to the professional edition and I have built a custom viewer app for Android. I have built about 10 folios and at first download all is ok, the folios are displayed without problems and the app works fine except for one issue: "Archive" button don't work, when I tap on it, near folio cover, nothing happens, the folio does not disappear from folios list.
    But the serious problem occurs when I perform a folio update from Folio Producer ('Update content' from adobe dashboard DPS): both "Archive" and "View" buttons stop working, nothig happens when I tap tap on them and I am forced to uninstall and reinstall the application on tablet (.apk file) to see folio changes in my custom viewer.
    This is very annoying as well as time expensive.
    Tablet is Samsun Galaxy Tab SII with Android 3.2.
    Any help is appreciated.

    To the best of my knowledge, the SII is a smartphone and not a tablet device, and the official claim is (correct me if I'm wrong) that DPS on Android is corrently tablet only.
    Anyway, it seems strange to me so checked and found out that even though the DPS apps are not available when you search for them in the Play Market of a smartphone you can still force load them to the phone and run them.
    I've done it on both a Samsung SIII running Android 4.0.4 and a Samsung GT-I9070 running Android 2.3.6 (I currently don't have a device running Android 3.2)
    The interface is so small that it's hardly possible to use it, but it works.

  • Flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    I have had the same problem for WEEKS and I cannot access any sites that use Flash. Flash has been installed on this computer since I bought it in 2012. I have allowed auto updates but for weeks the updates never get past Step 2 - is this because I do NOT want the Google Tool bar? I use NO tool bars as there is only 6 inches of vertical screen space. Is this because I uncheck wanting Chrome as a default browser?  It is already installed, I just don't use it.  I came to this site and ran the check is it installed and the system says it is either not installed or not enabled. Version 14 just downloaded about 30 minutes ago - but did not progress to Step 3 although a pop up screen came up with a finish button, which I clicked. WHAT is the problem and how do I fix it?  If this were just a compatibility bug between IE11 and Adobe they have had plenty of time to fix it.
    Stephanie HC

  • I'm having a problem connecting my BlueRay DVD player and other non-Mac devices to my wireless network. Is there a limit on the number of devices I can connect to my AirPort? I never have a problem connecting an Apple device (AirBook, iPad, etc).

    I'm having a problem connecting my BlueRay DVD player and other non-Mac devices to my AirPort Express network. Is there a limit on the number of devices I can connect to the wireless network? I never have a problem connecting a new Apple product (AirBook, iPad) and even a basic laptop. Thanks for your help.

    The AirPort Express Base Station (AX) can support up to ten (10) simultaneously connected Wi-Fi clients.

  • No list view button in calendar month view with iOS 7.1

    There is no calendar list view button in the month view or any other view on my iPad Air after the iOS 7.1 update? Is this just an iPhone feature or did I Miss something?  

    The list view at the bottom of the screen is an iPhone feature. If you tap the magnifying glass in the calendar, that brings up a list view.
    http://help.apple.com/ipad/7/#/iPad99d9847f

  • My iphone 4 is not working and I cant reset it from the computer either because it wont connect to it I need help!!!

    My iphone 4 is not working and I cant reset it from the computer either because it wont connect to it I need help!!!
    1. I tried connecting it to itunes for a system reset and it didnt work.
    2. The phone wont even turn on!!!

    If the phone wont turn on it sounds like it needs to be charged.  Plug it into a charger and wait about 15 minutes and try turning it on while still charging. Have you tried holding in your home button with the on/off button held in?  Hold them both together until the apple logo comes up and then release them.  The screen will blink off an on while it is resetting. I still think this is a battery issue. Good luck~

Maybe you are looking for

  • PS CS5 - Where are my Smart Sharpen settings?

    I'm using PS CS5 and I know I had previously saved several customized smart sharpen settings. They're now MIA (they don't appear as options, just the default is there in the drop down), and I'm wondering if anyone can tell me what PS has done with th

  • EJB Not Retrieving database updates

    Hello, I have named queries in EJBs built of tables. For example: @Entity @NamedQueries({ @NamedQuery(name = "DadUser.findAll", query = "select o from DadUser o"), @NamedQuery(name = "DadUser.findOne", query = "select o from DadUser o " +            

  • Nokia 7710 - Problem connecting phone to PC

    Hi Using PC Suite 6.8, USB Connection, Windows 2000 SP 4 As soon as PC Suite was installed, the first connection to PC worked ! But somehow connection got cut, and data transfer stopped abruptly. There after, the "PC Suite - Get Connected" doesnt act

  • Where is PortableRemoteObject.class?

    In J2SDKEE1.2.1,I can find javax.rmi.PortableRemoteObject.class,but in J2SDKEE1.3,I can not find PortableRemoteObject.class. Who can tell me where is it? In developing EJB,the client code contains: " RemoteHome home=(RemoteHome)javax.rmi.PortableRemo

  • My iphon 4 screen broken, how to repair in UAE

    I bought iphone4 in Dubai, United Arab Emirates one month ago.  The screen was broken when it fell down the ground. how to find the place to repair?: