Pleaseeeeeeeeeee help

AudioConf.java is the server code which sends the audio file which is saved in the disk.
Client.java is the receiver code which is supposed to receive which is not happening.
The client does not receive any stream but it can detect the new participant can u please give directions in what might be the problem.
//import java awt and net features
import java.awt.*;
import java.awt.event.*;
import java.util.Vector;
import java.net.*;
import java.lang.String;
import java.io.*;
// import javax media features
import javax.media.*;
import javax.media.Processor;
import javax.media.Multiplexer;
import javax.media.control.*;
import javax.media.control.TrackControl;
import javax.media.control.BufferControl;
import javax.media.format.*;
import javax.media.format.AudioFormat;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import javax.media.protocol.PushDataSource;
//import javax rtp features
import javax.media.rtp.*;
import javax.media.rtp.SendStream;
import javax.media.rtp.event.RTPEvent;
import javax.media.rtp.rtcp.SourceDescription;
//import swing features
import javax.swing.*;
import javax.swing.event.*;
//import sun.com
import com.sun.media.*;
import com.sun.media.rtp.RTPSessionMgr;
public class AudioConf extends JFrame implements ControllerListener
Container frameContainer;
JMenuBar menuBar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
JMenuItem fileExit = new JMenuItem("Exit");
JMenu playerMenu = new JMenu("Player");
JMenuItem playerCapture = new JMenuItem("Capture");
JMenuItem playerTransmit = new JMenuItem("Transmit");
JSeparator sep3 = new JSeparator();
JMenuItem playerPlay = new JMenuItem("Play");
JSeparator sep4 = new JSeparator();
JMenuItem playerStop = new JMenuItem("Stop");
JMenu helpMenu = new JMenu("Help");
JMenuItem helpAbout = new JMenuItem("About");
CaptureDeviceInfo audioCDI = null;
String audioDeviceName=null;
Player audioPlayer=null;
Format audioFormat;
DataSource dataSource;
MediaLocator ml;
Processor p = null;
DataSource ds = null;
CaptureDeviceInfo di=null;
Vector devicelist;
Thread recordthread;
boolean keepRun;
Button stopb;
boolean result;
DataSink filewriter = null;
MediaLocator dest;
Panel capturePanel;
boolean looping= true;
RTPManager rtpMgrs[];
int port = 3000;
DataSource dataOut = null;
Component visualComponent=null;
Component controllerComponent=null;
Player dualPlayer = null;
String contentType="raw";
boolean connected = false;
// MAIN FUNCTION
public static void main(String args[])
AudioConf conf = new AudioConf();
}//end of main
AudioConf()
buildGUI();
setupHandlers();
setSize(400,400);
setTitle("Audio Conference");
show();
}//end of audioconf constructor
//build the graphical user interface necessary
void buildGUI()
setupMenuBar();
layoutComp();
}//end of buildGUI
// setup the menu bar
void setupMenuBar()
     fileMenu.add(fileExit);
     playerMenu.add(playerCapture);
     playerMenu.add(playerTransmit);
     playerMenu.add(sep3);
     playerMenu.add(playerPlay);
     playerMenu.add(sep4);
     playerMenu.add(playerStop);
     helpMenu.add(helpAbout);
     menuBar.add(fileMenu);
     menuBar.add(playerMenu);
     menuBar.add(helpMenu);
     setJMenuBar(menuBar);
}//end of setupMenuBar
//setup the layout componenets
public void layoutComp()
     frameContainer = getContentPane();
frameContainer.setLayout(new BorderLayout());      
     }//end of layoutComp()
// setup the handlers to events
void setupHandlers()
     addWindowListener(new WindowHandler());
fileExit.addActionListener(new MenuItemHandler());
     playerCapture.addActionListener(new MenuItemHandler());
          playerTransmit.addActionListener(new MenuItemHandler());          
     playerPlay.addActionListener(new MenuItemHandler());
     playerStop.addActionListener(new MenuItemHandler());
     helpAbout.addActionListener(new MenuItemHandler());
     }//end of setupHandlers
// function for window closing event
public class WindowHandler extends WindowAdapter
public void windowClosing(WindowEvent e)
System.exit(0);
}//end of windowclosing
}//end of windowhandler
public class MenuItemHandler implements ActionListener
CaptureDeviceInfo audioCDI = null;
String audioDeviceName=null;
Player audioPlayer=null;
Format audioFormat;
DataSource dataSource;
public void actionPerformed(ActionEvent e)
String cmd = e.getActionCommand();
if(cmd.equals("Play"))
playMedia();
}//end of play
else if(cmd.equals("Capture"))
captureMedia();
else if(cmd.equals("Transmit"))
transmitMedia();
}//end of transmitMedia
else if(cmd.equals("Stop"))
stopmedia();
else if(cmd.equals("Exit"))
System.exit(0);
}//end of actionPerformed
}//end of MenuItemHandler
//*************************************Player******************************************************
void playMedia()
try
FileDialog fd=new FileDialog(AudioConf.this,"Select the file",FileDialog.LOAD);
fd.setVisible(true);
String filename = fd.getDirectory() + fd.getFile();
dualPlayer = Manager.createPlayer(new MediaLocator("file:///" + filename));
System.out.println("Adding controller listener");
dualPlayer.addControllerListener(this);
System.out.println("Starting player ...");
dualPlayer.start();
catch (Exception ex)
System.out.println(ex.toString());
}//end of playMedia
//************************************CONTROLLER UPDATE*************************************************
public synchronized void controllerUpdate(ControllerEvent ce)
     if (ce instanceof RealizeCompleteEvent)
          Component comp;
          System.out.println("Adding visual component");
          if ((comp = dualPlayer.getVisualComponent()) != null)
          frameContainer.add ("Center", comp);
          System.out.println("Adding control panel");
          if ((comp = dualPlayer.getControlPanelComponent()) != null)
          frameContainer.add("South", comp);
          validate();
     else if( ce instanceof DurationUpdateEvent)
     Time duration= ((DurationUpdateEvent) ce).getDuration();
     System.out.println( "duration: " + duration.getSeconds());
     else if( ce instanceof EndOfMediaEvent)
          System.out.println( "END OF MEDIA - looping=" + looping);
               if( looping)
                    p.setMediaTime( new Time( 0));
                         p.start();
//******************************Stop Playing**************************************************
public void stopmedia()
     if(dualPlayer!=null)
dualPlayer.close();
     dualPlayer.deallocate();
     validate();
//*************************************Capturing***************************************************
// Capture the media using datasource and save it using datasink
void captureMedia()
captureDialogBox captureDialog=new captureDialogBox(AudioConf.this,"CAPTURE MEDIA",false);
captureDialog.show();
class captureDialogBox extends Dialog implements ActionListener,Runnable
captureDialogBox(Frame parent, String title, boolean mode)
super(parent, title, mode);
setSize(450, 180);
setTitle("Capture");
capturePanel = new Panel();
capturePanel.setLayout(new BorderLayout());
     CaptureDeviceInfo di=null;
     Vector devicelist;
     keepRun = true;
          stopb = new Button("Stop");
capturePanel.add("South",stopb);
add(capturePanel,"Center");
          stopb.addActionListener(this);
devicelist = CaptureDeviceManager.getDeviceList(new AudioFormat("linear",44100,16,2));
if(devicelist.size() > 0)
di=(CaptureDeviceInfo)devicelist.firstElement();
else
System.exit(-1);
ml=di.getLocator();
System.out.println(ml);
     // Create a DataSource given the media locator.
try {
p = Manager.createProcessor(ml);
p.configure();
          result = waitForState(p,Processor.Configured);
System.out.println("Configure over ");
p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.BASIC_AUDIO));
p.realize();
          result = waitForState(p,Processor.Realized);
System.out.println("Realized");
controllerComponent = p.getControlPanelComponent();
if(controllerComponent!=null)
capturePanel.add("North",controllerComponent);
visualComponent = p.getVisualComponent();
if(visualComponent!=null)
capturePanel.add("Center",visualComponent);
validate();
ds = p.getDataOutput();
catch (Exception e)
System.out.println("Cannot create DataSource from: " + ml + e.toString());
System.exit(0);
dest = new MediaLocator("file://c:\\jo\\Test.au");
try {
if(ds == null)
System.out.println("Source null ");
filewriter = Manager.createDataSink(ds, dest);
if (filewriter == null)
System.err.println("Failed to create a DataSink");
catch (NoDataSinkException e)
System.out.println("Error in store NoDataSinkException "+e.toString());
System.exit(-1);
catch (SecurityException e)
System.out.println("Error in store SecurityException "+e.toString());
System.exit(-1);
          try
filewriter.open();
p.start();
filewriter.start();
catch (IOException e)
System.out.println("Error Line abc in store IOException "+e.toString());
System.exit(-1);
recordthread = new Thread(this);
recordthread.start();
public void run()
while(keepRun)
System.out.println("Just record");
try{
recordthread.sleep(50);
}catch(Exception ex){
System.out.println("Line sss");
}//end of while
try{
filewriter.close();
}catch(Exception ex){
System.out.println("Error in closing ");
}//end of run
public void actionPerformed(ActionEvent ae)
keepRun = false;
//System.exit(0);
System.out.println("REcord Over");
recordthread.suspend();
dispose();
//*************************************************Transmission***************************************
void transmitMedia()
try {
MediaLocator playerloc = new MediaLocator("file://c:\\jo\\Test.au");
System.out.println(playerloc);
p = Manager.createProcessor(playerloc);
p.configure();
result = waitForState(p,Processor.Configured);
System.out.println("Configure over ");
          ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW_RTP);
          p.setContentDescriptor(cd);
TrackControl track[]=p.getTrackControls();
boolean encodingPossible = false;
for(int i = 0;i<track.length;i++)
if(!encodingPossible && track[i] instanceof FormatControl)
try
((FormatControl)track).setFormat(new AudioFormat(AudioFormat.ULAW_RTP,8000,8,1));
encodingPossible = true;
}//end of try
catch(Exception e)
          System.out.println("IncompatibleFormatException ");
}//end of if
          else
               System.out.println("else part");
track[i].setEnabled(false);
               }//end of else
}//end of for
p.realize();
          boolean result=waitForState(p,Processor.Realized);
System.out.println("Realized");
System.out.println("Datasource created successfully");
     catch(Exception ex)
     System.out.println("EXception in creating processor");
try
dataOut=p.getDataOutput();
System.out.println(dataOut.toString());
catch(NotRealizedError e)
System.out.println("NotRealizedError");
if(dataOut==null)
System.out.println("Dataout is null");
PushBufferDataSource pbds = (PushBufferDataSource)dataOut;
System.out.println("pbds =" + pbds.toString());
     PushBufferStream pbss[] = pbds.getStreams();
System.out.println("pbss length = " + pbss.length);
     rtpMgrs = new RTPManager[pbss.length];
     SessionAddress localAddr, destAddr;
     InetAddress ipAddr;
     SendStream sendStream;
     SourceDescription srcDesList[];
     for (int i = 0; i < pbss.length; i++)
     try
          rtpMgrs[i] = RTPManager.newInstance();     
System.out.println("rtpMgrs created using new instance");
     System.out.println("port = " + port);
ipAddr = InetAddress.getLocalHost();     
          InetAddress hostAddr= InetAddress.getLocalHost();
System.out.println("Local host= " + hostAddr);
          localAddr = new SessionAddress( hostAddr,3000);
System.out.println("localAddr = " + localAddr);
destAddr = new SessionAddress( ipAddr, 4000);
System.out.println("destAddr = " + destAddr);
rtpMgrs[i].initialize(localAddr);
          rtpMgrs[i].addTarget(destAddr);
          System.out.println( "Created RTP session: ");
          sendStream = rtpMgrs[i].createSendStream(dataOut, i);          
System.out.println("stream send created");
sendStream.start();
System.out.println("sendstream started");
     catch (Exception e)
          System.out.println("Error"+e.toString());
          e.printStackTrace();
}//end of for
}//end of transmitMedia
// ***********************************STATE LOCK**********************************************
private Integer stateLock = new Integer(0);
private boolean failed = false;
Integer getStateLock() {
     return stateLock;
void setFailed() {
     failed = true;
// *******************************************WAIT FOR STATE METHOD *********************
private synchronized boolean waitForState(Processor p, int state) {
     p.addControllerListener(new StateListener());
     failed = false;
     // Call the required method on the processor
     if (state == Processor.Configured)
     p.configure();
     else if (state == Processor.Realized)
     p.realize();
     // Wait until we get an event that confirms the
     // success of the method, or a failure event.
     // See StateListener inner class
     while (p.getState() < state && !failed)
     synchronized (getStateLock())
          try
          getStateLock().wait();
catch (InterruptedException ie)
          return false;
     if (failed)
     return false;
     else
     return true;
// ********************************* STATE LISTENER *************************************
class StateListener implements ControllerListener
     public void controllerUpdate(ControllerEvent ce)
     // If there was an error during configure or
     // realize, the processor will be closed
     if (ce instanceof ControllerClosedEvent)
          setFailed();
     // All controller events, send a notification
     // to the waiting thread in waitForState method.
     if (ce instanceof ControllerEvent)
          synchronized (getStateLock())
          getStateLock().notifyAll();
}//end of audioconf class
Client program - this program receives the stream and play it
//import awt and net features
import java.awt.*;
import java.awt.event.*;
import java.util.Vector;
import java.net.*;
import java.lang.String;
import java.io.*;
// import the media features
import javax.media.*;
import javax.media.MediaEvent;
import javax.media.Processor;
import javax.media.Multiplexer;
import javax.media.control.*;
import javax.media.control.TrackControl;
import javax.media.control.BufferControl;
import javax.media.format.*;
import javax.media.format.AudioFormat;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import javax.media.rtp.*;
import javax.media.rtp.event.*;
import javax.media.rtp.rtcp.*;
import javax.media.rtp.event.RTPEvent;
import javax.media.rtp.RTPManager;
import javax.media.rtp.ReceiveStreamListener;
import javax.media.rtp.rtcp.SourceDescription;
// import the swing features
import javax.swing.*;
import javax.swing.event.*;
// for sessionmedia
import com.sun.media.*;
import com.sun.media.rtp.RTPSessionMgr;
// for PlayerWindow
import com.sun.media.ui.*;
public class client extends JFrame implements ReceiveStreamListener,ControllerListener,SessionListener
Vector playerlist = new Vector();
RTPManager mgr = null;
boolean terminatedbyClose = false;
String address="127.0.0.1";
int port=4000;
int ttl=100;
DataSink filewriter = null;
DataSource dsource=null;
Container frameContainer;
MediaLocator f=null;
JMenuBar menuBar = new JMenuBar();
JMenu fileMenu = new JMenu("File");
JMenuItem fileExit = new JMenuItem("Exit");
JMenu playerMenu = new JMenu("Player");
JMenuItem playerReceive = new JMenuItem("Receive");
JMenuItem playerIgnore = new JMenuItem("Stop");
client()
buildGUI();
setupHandlers();
setSize(400,400);
setTitle("Audio Conference");
show();
}//end of audioconf constructor
//build the graphical user interface necessary
void buildGUI()
setupMenuBar();
layoutComp();
}//end of buildGUI
// setup the menu bar
void setupMenuBar()
     fileMenu.add(fileNew);
     fileMenu.add(sep1);
     fileMenu.add(fileClose);
     fileMenu.add(sep2);
     fileMenu.add(fileExit);
     playerMenu.add(playerReceive);
     playerMenu.add(playerIgnore);
     menuBar.add(fileMenu);
     menuBar.add(playerMenu);
setJMenuBar(menuBar);
}//end of setupMenuBar
//setup the layout componenets
public void layoutComp()
     frameContainer = getContentPane();
frameContainer.setLayout(new BorderLayout());      
     }//end of layoutComp()
// setup the handlers to events
void setupHandlers()
     addWindowListener(new WindowHandler());
     fileNew.addActionListener(new MenuItemHandler());
fileClose.addActionListener(new MenuItemHandler());
fileExit.addActionListener(new MenuItemHandler());
     playerReceive.addActionListener(new MenuItemHandler());
          playerIgnore.addActionListener(new MenuItemHandler());          
     }//end of setupHandlers
// function for window closing event
public class WindowHandler extends WindowAdapter
public void windowClosing(WindowEvent e)
System.exit(0);
}//end of windowclosing
}//end of windowhandler
// menuItem handler class to get action from menu items
public class MenuItemHandler implements ActionListener
     public void actionPerformed(ActionEvent e)
String cmd = e.getActionCommand();
if(cmd.equals("Exit"))
System.exit(0);
else if(cmd.equals("Receive"))
          receiveData();
}//end of play
else if(cmd.equals("Ignore"))
ignoreData();
}//end of actionPerformed
}//end of menuitemhandler
/* *******************************IGNORE STREAM**************** */
void ignoreData()
IgnoreDialog igDialog=new IgnoreDialog(client.this,"IGNORE THE STREAM",false);
igDialog.show();
}//end of ignoreData
class IgnoreDialog extends Dialog implements ActionListener
     // constructor
IgnoreDialog(Frame parent, String title, boolean mode)
super(parent, title, mode);
setSize(250, 120);
Panel p = new Panel();
p.setLayout(null);
Label display = new Label("The Stream sent has been ignored");
Button OKbutton = new Button("OK");
          p.add(display);
display.setBounds(5, 5, 200, 20);
          p.add(OKbutton);
OKbutton.setBounds(80, 50, 60, 25);
          add(p, "Center");
          OKbutton.addActionListener(this);
          }//end of constructor
//actionPerformed in the dialog box
     public void actionPerformed(ActionEvent ae)
dispose();
}//end of actionperformed
}//end of IgnoreDialog class
/* *******************************RECEIVE STREAM**************** */
// receive the data
void receiveData()
SessionAddress localaddr = null;
SessionAddress remoteaddr = null;
InetAddress destaddr = null;
mgr = RTPManager.newInstance();
System.out.println("mgr is created");
     if (mgr == null)
          System.out.println("Manager is null");
     mgr.addFormat(new AudioFormat(AudioFormat.DVI_RTP,44100,4,1),18);
     // Register RecvStreamListener with the session manager
try
destaddr = InetAddress.getLocalHost();
     localaddr = new SessionAddress(destaddr,4000);
remoteaddr = new SessionAddress(destaddr,3000);
     System.out.println("local addr : " + localaddr);
     System.out.println("remote addr : " + remoteaddr);
     mgr.initialize(localaddr);
     mgr.addTarget(remoteaddr);
mgr.addSessionListener(this);
     mgr.addReceiveStreamListener(this);
System.out.println("mgr initialised");
BufferControl bc = (BufferControl)mgr.getControl("javax.media.control.BufferControl");
          if (bc != null)
          bc.setBufferLength(350);
catch(Exception e)
     System.out.println("initialized error" + e.toString());
}//end of receiveData
* 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());
public synchronized void update(ReceiveStreamEvent event)
          Player newplayer = null;
          RTPPlayerWindow playerWindow = null;
     Vector streams = null;
ReceiveStream stream = null;
     // find the sourceRTPSM for this event
try
Participant part1 = event.getParticipant();
          streams = part1.getStreams();
          System.out.println("Streams Length "+streams.size());
          RTPManager source =(RTPManager) event.getSource();
          System.out.println(" source " + source);
          System.out.println("inside source try");
          stream = event.getReceiveStream();
          System.out.println("STream received : =" + stream.toString());
     catch(Exception e)
          System.out.println("Source not obtained" + e.toString());
System.out.println("outside try-catch");
     // create a new player if a new recvstream is detected
try
                    System.out.println("entered try ");
dsource = stream.getDataSource();
                    System.out.println("Dsource is obtained " + dsource);
                    f = new MediaLocator("file://c:\\jo1\foo.au");
                    catch(Exception e)
                         System.out.println("Dsource exception = "+ e.toString());
                    try
                    filewriter = Manager.createDataSink(dsource, f);
System.out.println("Datasink created");
                    catch(Exception e)
                         System.out.println("Datasink exception = "+ e.toString());
     if (event instanceof NewReceiveStreamEvent)
          String cname = "Java Media Player";
          //ReceiveStream stream = null;
               try
               // get a handle over the RTPRecvStream
                    stream = ((NewReceiveStreamEvent)event).getReceiveStream();
                    System.out.println("straem : " +stream);
                    Participant part = stream.getParticipant();
                    System.out.println("partcipant : " + part);
                    if (part != null)
                         cname = part.getCNAME();
                         System.out.println("Cname = " + cname);
               // get a handle over the RecvStream datasource
/*                    DataSource dsource = stream.getDataSource();
                    MediaLocator f = new MediaLocator("file://c:\foo.au");
                    Manager.createDataSink(dsource, f);
System.out.println("Datasink created");
               // create a player by passing datasource to the Media Manager
                    newplayer = Manager.createPlayer(dsource);
                    System.out.println("created player " + newplayer);
               catch (Exception e)
                    System.out.println("newRecvStreamEvent exception " +e.getMessage());
          if (newplayer == null)
               System.out.println("new player is null");
          playerlist.addElement(newplayer);
          newplayer.addControllerListener(this);
          // send this player to player GUI
          playerWindow = new RTPPlayerWindow( newplayer, cname );
          }// instanceof newRecvStreamEvent
     }// end of update(RTPRecvStreamEvent)
public void controllerUpdate(ControllerEvent evt)
          // get a handle over controller, remove it from the player list
          // if player list is empty, close the sesssion manager.
          if ((evt instanceof ControllerClosedEvent) ||(evt instanceof ControllerErrorEvent) ||(evt instanceof DeallocateEvent))
               Player p = (Player)evt.getSourceController();
                    if (!terminatedbyClose)
                         if (playerlist.contains(p))
                              playerlist.removeElement(p);
                         if ((playerlist.size() == 0) && (mgr != null))
                              mgr.dispose();
                         }//edn of if
               }//end of if
     }//end of controllerupdate
     public void closeManager()
          terminatedbyClose = true;
          // first close all the players
          for (int i = 0; i < playerlist.size(); i++)
               ((Player)playerlist.elementAt(i)).close();
          if (mgr != null)
               mgr.dispose();     
               mgr = null;
     }//end of closeManager
     class RTPPlayerWindow extends PlayerWindow
               public RTPPlayerWindow(Player player, String title)
                    super(player);
                    setTitle(title);
               public void Name(String title)
                    setTitle(title);
          }// end of PlayerWindow
public static void main(String args[])
client cl=new client();
}//END OF MAIN
}//end of client

hi there
as far as i can see, you don't start the processor
that provides the datasource to the manager, before
starting the sendstream.
rtpMgrs.initialize(localAddr);
rtpMgrs.addTarget(destAddr);
System.out.println( "Created RTP session: ");
sendStream = rtpMgrs.createSendStream(dataOut, i);
System.out.println("stream send created");p.start();
sendStream.start();
System.out.println("sendstream started")

Similar Messages

  • How do I turn all parental controls off PERMANANTLY?! urgent PLEASE help

    I was playing around on the computer when i stumbled upon "parental controls." I clicked on the control for iChat, and it acted like a parental control. but when i unclicked the control because i wanted to go back to iChat, all my buddies were back, but NONE of them were online, which is impossible because not even the robots were online, or some of my friends who are always on at this time. How do I fix it to get my buddies back?! *PLEASEEEEEEEEEEE HELP!!!!!!!!*

    Hi,
    Only an Admin Account can turns Off Parental Controls.
    Go to System Preferences > Parental Controls.
    Set the controls Back to the basic defaults and then set Parental Controls to be Deselected.
    Then go to System Preferences > Accounts and then click the Padlock if required.
    Enter the Admin Password.
    Now click on the User Account that you are Logged on to the computer with. (Or the one that had Parental Controls set).
    Make sure Parental Controls is Off here as well.
    This should make the Buddy list respond properly.
    NOTES
    IF you have a Test Mac User Account and use the Same Screen Name in iChat in both User Accounts the Test account Parental Controls will flag your Account/Screen Name at AIM and will be effected in the normal User Account buddy List.
    In iChat 3 and 4 Parental Control for iChat disable Bonjour Chatting and Jabber/GoogleTalk Buddy Lists
    8:49 PM Thursday; April 2, 2009

  • Help IMPORTANT......

    Hai All,
    I am Farooq working in Tulip as ABAPer. I joined this company in August. And 'am the only ABAPer for this company. As I do not have Prior SAP Experince & 'am alone, I have lot of trouble at work.
    I am trying things but its very difficult with no person to guide. Can any one guide me to what to do or anyone  who is already working in some other company can guide me on week ends like tutions or can anyone show me the way. I am in Delhi. Atleast give me some contacts in Delhi from whome I can learn things. My mobile number is 9911720120. Even I am trying to change the company, 'am directly ringing companies & speaking HRs, but no one is reverting back just keeping my CV... PLEASEEEEeeeeeee HELP ME. I will be very thankful to U. I will be waiting.
    Thanks.
    Regards.
    Farooq

    Again Farooq...HHayyyyy My number is "9911720210" but not 9911720120. Regret for Typographical error.

  • Nokia 6230i resetting standard ringtone help!!!

    hi my phone keeps resettin its orginal ringtone and its driving me mad i took it into the shop where i bought it and they messed bout with it but its still doin it so will somebody pleaseeeeeeeeeee help me

    Are you removing the memory card on which your custom ringtones are stored ?

  • Blackberry classic battery is disappoint​ing

    i just got in my blackberry classic on the 3rd of march and sold my q10 as soon as i received the classic, i loved the way it felt and looked but the battery does not last at all barley a day is it something im doing because i barly use it drains as bad as a iphone, my q10 would last about 2 days but this think can barley make it throw a day pleaseeeeeeeeeee help blackberry

    Hi gababu,
    The battery on the Classic is a definite improvement, I'm getting two full days whereas before I would get a day at best on my Z10 and my wife also only a day on her Q10.
    The Classic has a 2515 mAh battery compared to the Q10's 2100mAH battery, so the Classic should perform better.
    But it does take a few days to 'settle down'.  Give it a week or so and see if it improves.
    Good battery management also helps.  Have a look at this BlackBerry Battery Management Demo:
    http://demos.blackberry.com/blackberry-classic/na/​ca/gen/how-to/blackberry-classic/blackberry-classi​...
    Specifically, make sure that you do not have an app running in the background that eats away at your battery power.
    The Classic is a beauty, I’m loving it more and more every day as I go learning more about it.  I’m sure you will too once your battery settles down and starts behaving better.  Good luck!
    If my post has helped you or anyone else, please give me a 'Like' by clicking   

  • Load a Presentation EXE in Full window mode.

    Everyone in AS2 use to in the first frame load the Code to
    open a Exe for presentation CDS, the EXE. I didnt have time to go
    through Action Script 3, and the 8 codes are casted off. Can any
    one pleaseeeeeeeeeee help to resolve this for me?
    Open a Frame and the code please to paste to open the Exe in
    Full mode when cd is inserted?
    Thank you.

    Try this step:
    Go to one of the problem points (or even all of the them in the Project Browser) and select it. Under the File Menu>Optimize>Large (960x540). See if will process the clips, still images and try playing it back again.
    If Optimize>Large is grayed out, try pulling the clip out of the Project Browser, close iMovie. Open it up again and putting that clip back in its place. Then try to Preview it again and see if playsback properly.
    Last thing to try is go to File Menu>Duplicate Project, quit iMovie. Open iMovie, go to the Duplicate Project and see if you get a working Preview from the Project Timeline.

  • 802.11N Frustration!

    So i configured about 47 Access points 2 years ago
    AIR-LAP1141N-A-K9  
    WLC 7.0.98
    Its all working fine, using channel extension. Then my company bought a small office and i got 4
    AIR-LAP1141N-A-K9  (awesome deal i pulled) then ok, plugged in, downloaded the image, DNS is config, all took about 10 minutes, AP up and running
    NOw the FRUSTRATION!!!!
    I have spent 5 HOURS! trying to create the CHANNEL EXTENSION! how did i do that? I remember something about 40Mhz but the controller wont allow me.
    All APs says, current channel XX (Extension: XX) 
    1- disable the radio
    2- select 40 Mhz custom
    then magically it would assign a extension to the channel and work at 300mbps
    I CANNOT DO THIS! HOW?!!! PLEASEEEEEEEEEEE HELP!!! I GIVE UP!!!!!!!!
    the worst! I have google this for like 4 hours, i cant fix it, i got tired now im stuck need second set of eyes!
    found this:
    https://supportforums.cisco.com/thread/335229
    no help at all!

    Vinay Saini said "
    Jun 9, 2009 9:28 PM                             (in response to geetsingh22)
    Re: client are not connected through 802.11n (AP 1140, WLC 5.2.178)
    Hii ,
    1. you need to configure WPA2+AES for the WLAN with WMM enabled on Qos page.
    2. AFter doing this you will be able to connect at 144
    3. For making 300 Mbps , Enable 40 Mhz operation for the AP
    1. Go to AP radio setting page , disable radio
    2. Make channel and power assignment as custom
    3. Change the channel width to 40 Mhz
    4. Enable radio
    to make sure 40 mhz is enabled , go to AP console and issue "show controller d1"
    you will see both primary and extended channel in use."
    However the drop down only shows me 20MHZ. What the heck man! Maybe the controller is acting up and needs a reboot?

  • Disable camera standby mode in nokia n95

    Hello
    I cannot record a video over 1 hour with my n95, or so it would seem. So I would like to use my phone as a "video source" for my TV-card, so I could just plug my phone into my TV-card and use that card to do the actual recording. But every time I do this, my phone informs me about standby mode being initialized after one minute of "projecting the video to my TV-card". How can I disable this message?

    Thanks haZey for your response.
    Well, the time-out has a max limit of 20 seconds and I've already set that to the max limit, but the issue still exists.
    I understand that the only  way is to press a button now to see the screensaver (time), but this is not what I want I had a very basic earlier model and it didn't have that issue.
    I am sure there should be a way, even hidden or via some changes in the firmware that can allow me to disable the automatic power-save. I can't believe this is a hopeless case, this is a very basic request.
    Pleaseeeeeeeeeee help me, I might stop using that phone with all its other nice features just because of this issue.
    Thanks for your time and support in advance.

  • BAD SITUATION....

    Hai All,
    I am Farooq working in Tulip as ABAPer. I joined this company in August. And 'am the only ABAPer for this company. As I do not have Prior SAP Experince & 'am alone, I have lot of trouble at work.
    I am trying things but its very difficult with no person to guide. Can any one guide me to what to do or anyone who is already working in some other company can guide me on week ends like tutions or can anyone show me the way. I am in Delhi. Atleast give me some contacts in Delhi from whome I can learn things. I am ready to pay. My mobile number is 9911720210. Even I am trying to change the company, 'am directly ringing companies & speaking HRs, but no one is reverting back just keeping my CV... PLEASEEEEeeeeeee HELP ME. I will be very thankful to U. I will be waiting.
    Thanks.
    Regards.
    Farooq

    Hi,
    Check some helpful documents and links Provided in SDN forums.
    get the help from
    http://www.help.sap.com
    Regards
    vijay

  • Cheapest Routing using graph theory

    i'm really stuck on this. someone please help me out. The purpose is to determine the cheapest and most economical strategy to fly from the starting city to each of the other given cities.
    The program's outline/requirements can be found at:
    http://optlab.mcmaster.ca/~zhanghu/project_2.pdf
    All template files can be found at:
    http://optlab.mcmaster.ca/~zhanghu/Codes_Project_2.zip
    There is basically only 2 algorithms that need to be coded. The pseudocode for each algorithm is given in the project outline.
    PLEASE PLEASE PLEASEEeeeeeeeee help me with this. It's due tomorrow and I'm totally lost on this.
    I am willing to pay $50 if anyone can complete this for me.

    i got most of it working but i'm stuck on this
    specific part of the algorithm:
    public static int[ ][ ] MinPath(Graph L, int m)
    int j=L.n_vertex, k=L.n_edge,w[ ][],d[ ],p[ ];
    for(int i=0; i < L.getVertex(); i++)
    d[ ] = Integer.MAX_VALUE;
    p[i] = 0;
    }I know there is some error here but dunno exactly
    what or where.I think you stole this code... in fact I am pretty sure of it.
    That's okay because it doesn't make any sense either.
    Problems include
      &bull; Missing return
      &bull; d[ ] does not compile
      &bull; Doesn't do anything. Somehow if I was looking for the longest or shortest something I think an if statement fits in there somewhere
      &bull; No context in terms of what Graph is (though I suspect something not all that useful to you)
    I think you should just accept your failing mark. This code appears to have something to do with Graphics that you lifted from somewhere and you are trying to fool us into writing your assignment for you. Sorry but that turkey won't fly.
    Either try and learn and figure it our yourself or fail. Please stop trying to cheat like this.

  • Imag g5 duocore fan loud noise

    Save me and my life....
    People my Imac g5 intel isight fan is making loud noise as soon a dvd is insertedi bght it in febu 2006 and i have hardly used it and no software update has been done pleaseeeeeeeeeee help because i love this systm and want the sound to go ....Syt sps
    Machine Name: iMac
    Machine Model: iMac4,1 :CPU Type:Intel Core Duo :Number Of Cores:2
    CPU Speed: 2 GHz
    L2 Cache (shared): 2 MB
    Memory: 512 MB
    Bus Speed: 667 MHz
    Help

    Hi sir
    i was going through online answered questions on forum and it looks i am so in to sh*t... that after being comp litrate could not make out anything
    I saw you giving advice to check cache flder and check for /appleupdate.com/
    (cache inst) while having problems with software updates (from macosx10.4.6 to 10.4.8 combo becuse of intel based mac) did it and then i never knew what i am trying to get this done for past 4 days yet nowhere to go..
    i think the comboupdater.. was giving error(error.199) while opening the file because i have stopped it many times to do something else (manual downlod)
    which is a bad bad thing to do (read it in forum)
    please help me and you can also write to me on [email protected] to help ...
    the only thing is i have 15mbps lan et so it takes 7 hours to download a 298mb file manually or through automatic updates
    please help me out..

  • Help me pleaseeeeeeeeeee

    hey,
    i recently did the ios4 update on my iphone 3g and everything works fine except for my phone. when i click on phone app i cant scroll or click anyhting therefore i can ring anyone but i can recieve calls. please help me.

    Hi,
    Help us Pleeaseeeeeeeeeeeeee: What is your machine ?
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Help needed urgently pleaseeeeeeeeeee

    okay here's my problem:-
    1. My screen wont let me enter in my passcode and I can't access anything, it's like the screen is frozen in some way
    2. A small circle of lines , like a timer going on in the back ground
    3. it will not connect to WIFI
    4. I've tried everything but restoring as I don't want to lose anything
    5. it keeps vibrating evry couple of secs and briefly saying Sync
    6. it wont show the red line that says turn off
    thank you to anyone who can help

    When you say you've tried everything, does that include resetting it? That is, pressing both the top and bottom buttons simultaneously until the apple symbol appears? If so, I'm afraid that a full restore is about the only thing you can next try, unless you want to take it to an Apple store, but they are likely to do the same thing. Your iPhone's settings, files etc. should be backed up on your computer anyway, so you shouldn't lose too much.

  • Please help me pleaseeeeeeeeeee

    i have a 4g ipod touch with 5.0.1 and when i turn it of into sleep mode and try to tturn it back on it flickers on and then off but when i try again it works and i can unlock it. this does not happen all the time. is this normal and if not is their a fix soz for the bad spelling
    thanks for the helpp

    https://discussions.apple.com/message/17202888#17202888 this person has the same problem as me but he explained it better then me

  • Palm TX - window XP - Loss all contact -- Please help!

    7/23/09 - sync error. all my 10 years of contact gone!
    click on hot sync see record that 7/20/09 hot sync went OK.
    Is there a way to go back to 7/20/09? System restore ?
    What can I do to get my contact back? Pleaseeeeeeeeeee
    Do I need to manually back up data myself? I should have done this once a month to avoid this problem in the first place.
    This support site is huge, can somebody send me down the right path at least.
    Downloaded Palm 6.2  is not helping.
    Please tell me how to sync with palm over ride desk top. seen it but do not remember where and how. I have some old contacts from 2007 on handheld for some unknow reason, if I can not go back to 7/20/09 may be 2007 is OK for now. ( I can not set all those contacts to catagories either, they all goes to "unfile")
    Prior to contact went crazy, I can not set/schedule my task to future date. if I do it went away to plam heaven.
    Message Edited by imjustagirl on 08-07-2009 01:31 PM

    You can recover the data from your user folder provided you have only sync'ed once with the PC when you discovered the data missing. When you sync to the PC there are files created for each PIM category in your user folder. For Example; datebook.dat or datebook (Depending on the version of Palm Desktop) and datebook.bak. Using 6.2 the file names are .mdb and mdb.bak. For 6.2, the files are located in the username folder in PalmOSdesktop in my documents.
    The files are named .dat and .bak. When you sync, the current data is stored in .dat. The next time you sync the data in the .dat file is copied to the .bak file. You can rename the .dat to .old. then rename the .bak to .dat. If the data in the .bak file is intact, it will now be in palm desktop when you reopen Palm desktop. I have included a link to show you how to find the userfolder on the PC.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=26674
    Here is another link regarding data loss;
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=39503
    The best way to backup your data is to use the export feature in Palm Desktop. Make a new folder on the PC desktop named Palm Desktop Backup data. Next, select the category you want to export. You will get a window that asks where you want to save the file, save in the folder created on the desktop. There is a button that allows you to select currently selected record or all, select all. If you don't select all, then only the record highlighted is exported. You will then need to name the file for export, I suggest the name of the category, eg: datebook (With current date). Do this for all critical data in each category. With the data exported to the folder on the PC desktop, you can save this data to a flash drive, external hard drive or a CD-RW. With this method you will have your data in a seperate place than Palm desktop and the device. If you "Lose" data again, you can import the data back into palm desktop.
    Make sure that when you make changes in palm desktop or the device to export the data to the folder created for the backup.
    Here is a link for other options for backing up your data;
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=28751
    To change the hotsync conduits to handheld overwrites desktop;
    Click the HotSync icon in the Windows Taskbar and select Settings.
    Click the link for Applications
    Highlight the conduit you want to change and select change.
    Set the conduit to handheld overwrites desktop.
    Change each conduit to handheld overwrites desktop.
    Sync the PDA to the PC.
    If you do not check the "set as default" box the changes will only last for 1 sync. If you sync and have a problem with the sync, make sure you go back and change the conduits to handheld overwrites desktop.  You can set the conduits to "set as default" while you are trying to get the data on the PC. After you have the data on the PC, change the conduits to sync the files.

Maybe you are looking for

  • Web gallery file size...do I have this straight?

    I've read through the posts so far. I'm new to LR (waiting for my package to arrive, so still using the trial). I set up a collection of 57 photos.  Most were raw, the largest being 167,866 KB.  (kinda large)  I tried to upload from LR (thinking mayb

  • What settings do I set for

    I have the N Airport connected to my cable modem. I have an Express "joining the n Airport" But the Express doesn't get ip addresses from the Airport n. What set up do I need so the N Airport will distribut IP address to anything connect to the Expre

  • Desktop support

    Just got my new Z30. Didn't know it only takes a micro sim. Called provider to send me a new SIM - another 5 day wait ontop of 7+ days to have the phone delivered. Phone is made in Mexico, sent to USA then sent to Canada depot, then sent to me I plug

  • Could not execute command "getState" for server server01 using nodemanager

    Hi, I have built a weblogic 9.1 env with 2 managed servers running on different boxes from the admin server. I am having problems in starting the managed servers using the nodemanager. I get the following error message in the Admin server log: <Error

  • WiSM2 HA issues AP SSO 7.4

    anyone having issues keeping stable wism2 blades reliable. Every so often our WiSM fails over and we done know why. Just curious if anyone else is having this. We have opens tac cases but as usually the issue is not easily replicated. Sent from Cisco