Logical error in code, please help, thanks alot.

I have this file Socks.java which reads in a file containing information about a sock drawer. The file is of the format:
11
red athletic
green casual
blue athletic
blue athletic
red athletic
so when the program runs, it is supposed to output the socks that are pairs: so it would output
1 pair red athletic
1 pair blue athletic
my code compiles and runs fine and i am testing it with println statements, but I am not getting the desired ouput. Can someone look over it and see if they spot what is wrong. Right now in the code I am seeing what the value of socks[i] and socks[j] is by printing them out as you will notice. If anyone can help, I appreciate it. Thanks so much for all your wonderful help
Here is the code:
import java.io.*;
public class Socks {
public static void main(String args[])
try
String socks[] = new String[1000];
int pairs[] = new int[500];
int numOfsocks;
int i;
int j;     
FileReader fr = new FileReader("test.txt");
BufferedReader inFile = new BufferedReader(fr);
numOfsocks = Integer.parseInt(inFile.readLine());
int possiblePairs = numOfsocks/2;
//System.out.println(numOfsocks);
//System.out.println(possiblePairs);
for(i = 0; i < numOfsocks; i++)
socks[i] = inFile.readLine();
//for(i = 0; i < numOfsocks; i++)
//System.out.println(socks);
for(i = 0; i <= possiblePairs;i++)
for(j = i; j <= possiblePairs;j++)
System.out.println(socks[i]);
System.out.println(socks[j]);
//if(pairs[i] >= 2)
//System.out.println(pairs[i]/2 + " pairs" + socks[i]);
inFile.close();     
catch(IOException e){}
          System.out.println("File Not Found or no File Specified");

Try the following quickly revised version of your code.
import java.io.*;
public class Socks {
public static void main(String args[])
  try
    String socks[] = new String[1000];
    int pairs[] = new int[500];
    int numOfsocks;
    int i;
    int j;
    FileReader fr = new FileReader("test.txt");
    BufferedReader inFile = new BufferedReader(fr);
    numOfsocks = Integer.parseInt(inFile.readLine());
    for(i = 0; i < numOfsocks; i++)
      socks[i] = inFile.readLine();
    for(i = 0; i < numOfsocks; i++)
      if (socks[i] != null)
        pairs[i]++;
        for(j = i + 1; j < numOfsocks; j++)
            if (socks.equals(socks[j]))
pairs[i]++;
socks[j] = null;
System.out.println(pairs[i]/2 + " pairs " + socks[i]);
inFile.close();
catch(IOException e){
e.printStackTrace();

Similar Messages

  • Putting video clips (mov) in to edit work place time line after photos (jpeg) getting error message, the importer reported a generic error. ? please help thanks

    premier elements12, putting video clips (mov) in to edit work place time line after photos (jpeg) error message, the importer reported a generic error. ? please help.

    TINA54
    Thanks for the reply.
    Some general comments...
    Regarding:
    THERE ANY WAY I CAN PUT MULTIPLE RANDUM TRANSITIONS IN TO THE TIME LINE WITH JUST ONE CLICK ? .
    There is no transition choice for random transitions across the Premiere Elements 12 workspace Timeline. But, the Elements Organizer 12/Create Menu/Slideshow and its Slideshow Editor does have that random transition choice. So, one possibilitity would be to create your slideshow in Elements Organizer 12 Slideshow Editor and then move the slideshow into Premiere Elements with the Output of Edit with Premiere Elements Editor command.
    Pending more details of the slideshow you are creating, I think that you would get your best photo quality and overall results staying with Premiere Elements 12 workspace (1080p) project and the transitions randomized manually.
    perhaps applying the default to all (all at the same time),
    using Timeline Menu/Apply Default Transition,
    and then replacing transitions randomly for the random transition look).
    Please let us know if any of that worked for you.
    Thanks.
    ATR

  • Error in code: Urgent, Please help, thanks alot

    I'm getting two errors with the following code. The code is supposed to read in a text file with the format
    11
    blue casual
    green athletic
    red athletic
    The first number represents the numbers of socks. The code is supposed to ouput the number of pairs, so if there were 2 red athletic , it would say
    1 matching pair
    1 pair of red athletic
    If possible can someone run my code to see if they can get it to output that, I'm having a hard time doing it.
    here is the code
    import java.io.*;
    public class Socks {
    public static void main(String args[])
    try
         String socks[1000];
    int pairs[500];
    int numOfsocks;
    int i;
    int j;     
    FileReader fr = new FileReader("test.txt");
    BufferedReader inFile = new BufferedReader(fr);
    numOfsocks = Integer.parseInt(inFile.readLine());
    int possiblePairs = numOfsocks/2;
    for(i = 0; i < numOfsocks; i++)
    socks[i] = inFile.readLine();
    for(i = 0; i <= possiblePairs;i++)
         for(j = i; j<=possiblePairs;j++)
         if (socks.equalsIgnoreCase(socks[j]))
              pairs[i] = i++;
    for(i = 0; i <= possiblePairs;i++);
    if(pairs[i] >= 2)
    System.out.println(pairs[i]/2 + " pairs" + socks[i]);
    inFile.close();     
    catch(IOException e){}
              System.out.println("File Not Found or no File Specified");
    --------------------Configuration: Socks - JDK version 1.3.1_04 <Default>--------------------
    C:\Socks\Socks.java:13: ']' expected
         String socks[1000];
    ^
    C:\Socks\Socks.java:14: ']' expected
    int pairs[500];
    ^
    2 errors

    consider the following
    not for copying
    but for studying working code
    to help clarify ideas
    import java.io.*;
    list items and count of each item
    in a list of socks
    file has list of socks ...
    4
    red sock
    green sock
    blue sock
    green sock
    the first line is n = count of socks
    if no socks match, there are n items
    for example : 3 items in ...
    3
    red sock
    blue sock
    green sock
    if all socks match there is one item
    for example : 1 item in ...
    3
    red sock
    red sock
    red sock
    if socks come in pairs, there are at most n/2 items
    for example : 2 items in ...
    4
    red sock
    green sock
    red sock
    green sock
    program does not assume that socks come in pairs !!
    public class Socks {
    public static void main(String args[]) throws IOException
    String[] socks = new String[1000];
    int numOfsocks;
    String[] item = new String[1000];
    int[] count = new int[1000]; // initializes each count to zero
    int totalcount = 0;
    int i;
    int j;
    boolean ifound;
    FileReader fr = new FileReader("test.txt");
    BufferedReader inFile = new BufferedReader(fr);
    numOfsocks = Integer.parseInt(inFile.readLine());
    for (i = 0; i < numOfsocks; i++)
    socks[ i ] = inFile.readLine();
    inFile.close();
    for (i = 0; i < numOfsocks; i++) {
    ifound = false;
    for (j = 0; j < totalcount; j++) {
    if (socks[ i ].equalsIgnoreCase(item[j])) {
    ifound = true;
    count[j]++; // increase count for matched item
    break; // exit "for j loop"
    } // for j
    // sock not found so add it to item list ...
    if (ifound == false) {
    item[totalcount] = socks[ i ];
    count[totalcount] = 1;
    totalcount++;
    } // for i
    for (i = 0; i < totalcount; i++)
    System.out.println (item[ i ] + ", count = " + count[ i ]);
    } // class

  • Errors in code, please help

    I am trying to generate random motion in flash and can't seem
    to make it work.
    Any help will be much appreciated
    newpos = function () {
    ranx = Math.random ()*250)
    rany = Math.random ()*250)
    this.onEnterFrame = function() {
    newpos ()
    this._x = ranx;
    this._y = rany;
    acceleration = 10
    newpos = function () {
    ranx = Math.round((Math.random ()*250));
    rany = Math.round ((Math.random ()*250));
    newpos();
    this.onEnterFrame = function() {
    this._x += ((ranx-this._x)/ acceleration);
    this._y += ((rany-this._y)/ acceleration);
    acceleration = 10
    newpos = function () {
    ranx = Math.round((Math.random ()*250));
    rany = Math.round ((Math.random ()*250));
    newpos();
    this.onEnterFrame = function() {
    this._x += ((ranx-this._x)/acceleration);
    this._y += ((rany-this._y)/acceleration);
    if (Math.round(this._x) == ranx || Math.round(this._y) ==
    rany) {
    newpos();

    Try this:
    newpos = function () {
    acceleration = 10;
    ranx = Math.round((Math.random()*250));
    rany = Math.round((Math.random()*250));
    this._x += ((ranx-this._x)/acceleration);
    this._y += ((rany-this._y)/acceleration);
    this.onEnterFrame = function() {
    newpos();
    cheers,
    blemmo

  • HT1212 tried to restore my iPod, received this error code: 0xE8000065?!! please help thanks

    Tired to restore my iPod, but I received this error code: 0xE8000065
    Please help
    Thanks all

    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting
    Unknown Error containing "0xE" when restoring
    To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.

  • Error 213.5 Please help me get DW working again. Thanks CaptJim4685

    I have a Mac OS 10.10 used the Migration Assistant to move all files from old computer to new computer yesterday. Now can not use my Dreamweaver CS 5.5 program I have my original install disk. Tried that. get error 213.5 Please help me get DW working again. Thanks CaptJim4685

    Hi Nancy O.
    Thing is, I was using it on my old MacBookPro, also w/ yosemite. No problem. So I think it should run on the new one with the same OS.
    I did figure out how to find the CC cleaner log file. It had a lot of stuff in it, but did not indicate any kind of failures. I did not see the word “failure in the log file at all.
    After your suggestions, I went thru all the steps again - twice - very carefully emptying the trash between steps and restarting. Got the same error message at the end.
    Now, I still have 5.5 working on the old computer. That was my first and only install. My notes suggest  I installed it in 2011.
    If I knew for sure that if I deactivated it (if I knew how to do that) on the old computer, and uninstalled it, AND I could then count on the install working on my new computer, I would do it, but I am afraid to do that for fear that then I wouldn’t have it to use at all.
    I had expected it to transfer over, and then I would clean the old computer, as my son wants it for his wife, They have no use for DW.
    I also had trouble w/ MS Office, but they allowed me to call them and get a new install code. Now that Works fine.
    I wish Adobe were as accommodating. I have my original install disk & code. I never expected any of this trouble.
    I hope you can come up with a new plan. I really can’t afford to buy a new copy, especially when I know that this one should work, if it would just get rid of this blocking action.
    I only use it for editing my own personal family website: http:www.americanfenner.com.  I am not a webmaster/webwriter/ computer programmer or anything like that. Just an old guy doing personal stuff on my mac.
    Jim Fenner
    [email protected]

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

  • When i sync my ringtone to my phone, it pop up a message" unknown error occurred -54", please help me!! thank you!!!

    when i sync my ringtone to my phone, it pop up a message" unknown error occurred -54", please help me!! thank you!!!

    http://www.lmgtfy.com/?q=The+iPhone+couldn%27t+be+restored.+An+unknown+error+occ urred+(12)

  • HT201304 ello my little brother has developed lock my iPhone and I could not see the unlocking code Please help and thank you

    Hello
    ello my little brother has developed lock my iPhone and I could not see the unlocking code Please help and thank you
    edited by host

    Hi Omar_a983,
    If you are having an issue with the passcode on your iPhone, you may find the following article helpful:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Regards,
    - Brenden

  • I am from South Africa an the itune store only allows the purchase of some music , whenever i try to buy Jesus Culture- Everything . an error message comes  "only availble in US " , PLEASE HELP .Thank you

    I am from South Africa and the itune store only allows the purchase of some music , whenever i try to buy Jesus Culture- Everything . an error message comes up  "only availble in US " , PLEASE HELP .Thank you

    I had the same issue this morning downloading a pre-order of Alanis, Flavors of Entanglement . I noticed that the only thing that had changed fro me was that I had some song credits for purchasing ticketmaster tickets over the past few weeks. When I went ahead and spent my remaining credits... it downloaded with no prompting or trouble. Maybe the credits issues hangs it up?

  • TS3694 I could not upadate ipad 4 to ios 6.1.3 cause error occurred 3194.Please help me.Thanks

    I could not upadate ipad 4 to ios 6.1.3 cause error occurred 3194.Please help me.Thanks

    The article you attached above addresses what you should do:
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.
    Is your iPad hacked or jailbroken?  This error can show up in a hacked or jailbroken iPad.

  • Error inOID installation,please help.

    I have been trying to install OID in RHEL machine but it doesnt install successfully. I get the below error everytime in the log file. Has anybody experinced it and if yes how did you solve the issue?
    [2010-01-28T13:12:44.882-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] Start of create component
    [2010-01-28T13:12:44.885-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] Action for the oid1 is START
    [2010-01-28T13:12:44.885-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] Trying to start the component oid1
    [2010-01-28T13:12:44.947-06:00] [as] [WARNING] [] [oracle.as.config] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] Failed to start component oid1[[
    oracle.as.config.ProvisionException: HTTP status code = 400 : No processes or applications match the specified configuration.
    at oracle.as.config.impl.OracleASComponentBaseImpl.manageProcess(OracleASComponentBaseImpl.java:942)
    at oracle.as.config.impl.OracleASComponentBaseImpl.start(OracleASComponentBaseImpl.java:1061)
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:153)
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:525)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:441)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:938)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:619)
    [2010-01-28T13:12:44.948-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] Status of component false
    [2010-01-28T13:12:44.949-06:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [[
    oracle.as.config.ProvisionException: Failed to start the component
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:157)
    at oracle.as.provisioning.fmwadmin.ASComponentProv.createComponent(ASComponentProv.java:73)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv._createComponent(ASInstanceProv.java:401)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createComponent(ASInstanceProv.java:358)
    at oracle.as.provisioning.fmwadmin.ASInstanceProv.createInstanceAndComponents(ASInstanceProv.java:136)
    at oracle.as.provisioning.engine.WorkFlowExecutor._createASInstancesAndComponents(WorkFlowExecutor.java:525)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:441)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:938)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:619)
    [2010-01-28T13:12:44.949-06:00] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: IdMProvisioningEventListener] [SRC_METHOD: onConfigurationError] ENTRY 12717fe5-a7c7-487b-b5cf-707d11b28aa8
    [2010-01-28T13:12:44.949-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2010-01-28T13:12:44.950-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> configGUID 12717fe5-a7c7-487b-b5cf-707d11b28aa8
    [2010-01-28T13:12:44.950-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] ErrorID: 35076
    [2010-01-28T13:12:44.950-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] Description: [[
    Error creating ASComponent oid1.
    Cause:
    An internal operation has failed: Failed to start the component
    Action:
    See logs for more details.
    [2010-01-28T13:12:44.950-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] ________________________________________________________________________________
    [2010-01-28T13:12:44.951-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS: oracle.as.idm.install.config.event.IdMProvisionEventListener] [SRC_METHOD: onConfigurationError] [OOB IDM CONFIG EVENT] onConfigurationError -> eventResponse ==oracle.as.provisioning.engine.ConfigEventResponse@1a0b9e
    [2010-01-28T13:12:44.951-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Configuration Status: -1
    [2010-01-28T13:12:44.951-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [OOB IDM CONFIG EVENT] onConfigurationError -> Asking User for RETRY or ABORT
    [2010-01-28T13:12:44.951-06:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [OOB IDM CONFIG EVENT] onConfigurationError -> ActionStep:OID_START
    [2010-01-28T13:12:44.951-06:00] [as] [TRACE] [] [oracle.as.provisioning] [tid: 35] [ecid: 0000IPqJTSX1Zbd5Tf5Eic1BOTk700000Q,0] [SRC_CLASS:
    Appreciate your help,
    Gitanjali.

    yes it is OID 11g installation and the components are as per the certification matrix.
    I see the below messages in $MIDDLEWARE_HOME/asinst_1/diagnostics/logs/OID/tools/oid1/oidldapd01-0000.log file:
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 1] ProcessDispatcher: sgsluscpPollPort: Recvd connect from server process 9317
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 1] ProcessDispatcher: sgsluscHsHandShake : Sending Conn ACK to server process 9317
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: Listening on (IPV6) NON SSL port = 3060
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: sgslunlListen: Listen failed, OS error = (98)
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: Listen on (IPV4) NON SSL port = 3060 failed, ignoring ...
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: Listening on (IPV6) SSL port = 3131
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: sgslunlListen: Listen failed, OS error = (98)
    [2010-02-03T09:57:40-06:00] [OID] [NOTIFICATION:16] [] [OIDLDAPD] [host: tthomas-lnx] [pid: 9313] [tid: 2] DispatcherListener: Listen on (IPV4) SSL port = 3131 failed, ignoring ...
    could this be a problem? There are no processes using port no 3060 or 3131, still why it is throwing this error?
    Please help.
    thanks,
    Gitanjali.

  • TS3694 How can I fix this type of error in iphone 4?"The iphone could not be restored. An unknown error occurred (3194) "please help me.

    Hi everybody !
    AT&T company is unlocked (factory)my iphone4 before 3 days ago so i want to restore to unlock iphone 4 with itunes but it is not restore.
    How can I fix this type of error in iphone 4?- "The iphone could not be restored. An unknown error occurred (3194) "
    please help me in nepali language(if posible) or english. thank you.

    http://support.apple.com/kb/TS3694#error3194
    This means that either your firewall/antivirus is blocking access to Apple's servers, or you have used your computer to jailbreak an iDevice in the past. The link above tells you how to resolve this issue.

  • TS2865 when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.

    when i export movie from final cut pro to quicktime , something happened. it says error quicktime -50. please help.
    i need to submit this movie for uni project tomorrow.
    any help/advice will help . thanks.

    According to Crash Analyzer
    -50 (QuickTime)
    This error occurs when there is corrupt or invalid media in your timeline. Check that the codec used by the file is recommended for use in your editing application.
    good luck

  • HT1338 how can i get an upgrade or update on my mac notebook, I have version 10.5.8 and i have tried to update and or upgrade and I am not able to , Please Help Thank you

    Please can anyone help me how to upgrade or update my mac notebook my versionis 10.5.8 I have tried several updates and or upgrade and have not been able to . Is there any new OS X availabel for my version. Please Help Thank you

    Click here, install the DVD, run Software Update, open the Mac App Store, and try purchasing Mountain Lion. If you get told it's incompatible, phone the online Apple Store and order a download code for Lion.
    (89308)

Maybe you are looking for

  • Webdynpro component in new tab.

    Hi Experts, I am tring to add a new tab in the struture level of a Project . I successfully added a new tab and created a webdynpro component for the Tab as well . However, when i see in the application , the tab does not show the created component.

  • Step User Decision and Approval of Purchase Order

    Hello All, I have created a workflow with step user decision and also attached the object BUS2012 to display from SAP Inbox. But is there a way i can attached the object that would show the approval screen when the work item is executed, and also sen

  • Course material : SQL Programming & Design

    Hello, Monday I have an exam of SQL Programming & Design, witch I followed online on the oracle academy site. Now I see that the website is down! Is there a opportunity to view the course material? Greetz, Dries

  • BOM Change Restriction

    Dear All, My client has Requirement that the BOM should not be allowed to Change ( for specific Product ) for specific Period ( Say for 3 months ) i.e the BOM of the Finish Product & the semifinish below it will not be changed for next 3 months from

  • Customized PO report is printing blank after R12 upgrade

    We have upgraded from 11.5.9 to R 12.1.3 .The customized PO report works fine in 11i but prints blank in R12. Kindly help.It is a bit urgent.