Help - cannot find a suitable category

I need to find a category for general Forum questions.
Who can help me? Who is responsible for the design of this forum?
An annoyed programmer.

In Database: SQL Developer

Similar Messages

  • KDC Event ID 29 - The KDC cannot find a suitable certificate to use for smart card logons...

    I am getting the event (below) every day on a new 2008 domain controller that I brought up recently. The DC has a domain controller certificate, that was automatically issued by an online enterprise CA. This CA is located in another domain (child domain) within the same forest. The 2008 DC is in the top-lvel domain.  None of the other domain controllers , which are 2003, are reporting this message. I ran certutil.exe, and it successfully verifies all domain controller certificates, including the certificate on my new 2008 DC. Any ideas why these messages continue to appear?
    The Key Distribution Center (KDC) cannot find a suitable certificate to use for smart card logons, or the KDC certificate could not be verified. Smart card logon may not function correctly if this problem is not resolved. To correct this problem, either verify the existing KDC certificate using certutil.exe or enroll for a new KDC certificate.

    Hi,
    I have checked the file. Here is my findings:
    1.    The computer name of the domain controllers are different in this dcinfo.txt file. There is no Swampoak. I would like to confirm which one is Windows Server 2008 domain controller.
    2.    The domain controller Buckeye and Madrone both have 2 KDC certificates, one is expired and the other one is valid:
    *** Testing DC[0]: MADRONE
    ** KDC Certificates for DC MADRONE
    Certificate 0:  -à Valid
    Serial Number: 116bbdd90000000000b6
    Issuer: ***
    NotBefore: 12/15/2008 2:28 AM
    NotAfter: 12/15/2009 2:28 AM
    Subject: CN=madrone.****
    Certificate Template Name (Certificate Type): DomainController
    Non-root Certificate
    Template: DomainController, Domain Controller
    Certificate 1:   --à Expired
    Serial Number: 15c2f00b000000000028
    Issuer: ****
    NotBefore: 3/9/2007 3:05 PM
    NotAfter: 3/8/2008 3:05 PM
    Subject: EMPTY (DNS Name=madrone.****)
    Non-root Certificate
    Template: DomainControllerAuthentication, Domain Controller Authentication
    *** Testing DC[1]: BUCKEYE
    ** KDC Certificates for DC BUCKEYE
    Certificate 0:  -à Expired
    Serial Number: 15c4ddc2000000000029
    Issuer: *****
    NotBefore: 3/9/2007 3:07 PM
    NotAfter: 3/8/2008 3:07 PM
    Subject: EMPTY (DNS Name=buckeye.****)
    Non-root Certificate
    Template: DomainControllerAuthentication, Domain Controller Authentication
    Certificate 1: -à Valid
    Serial Number: 115f34ec0000000000b4
    Issuer: ****
    NotBefore: 12/15/2008 2:15 AM
    NotAfter: 12/15/2009 2:15 AM
    Subject: CN=buckeye.****
    Certificate Template Name (Certificate Type): DomainController
    Non-root Certificate
    Template: DomainController, Domain Controller
    Suggestion:
    1.    Please delete the expired certificate and then reboot the domain controller and test the issue again.
    2.    If the issue persists, please request a new Domain Controller Authentication certificate on the domian controller and check the result.

  • Need help: Cannot find Microsoft Word installed on your system.

    I am having issues trying to generate a pdf from a robohelp 7 html project.  Whenever I try to generate a pdf I get the error "Cannot find Microsoft Word installed on your system."
    I have tried to uninstall both Office (2003) and robohelp, re-installing office first and then robohelp, but it doesn't help.  Can anyone shed some light on this issue?

    Colum,
    Thanks for the reply, but it's Microsoft Office, not Open Office.
    I have read many threads here and tried most of the suggestions, up to and including:
    Uninstall/Reinstall of Office and RH 7
    Adjusting Macro security
    comparing registry entries
    There are others but I can't think of them all right now.  Point being, nothing has worked thus far.  I must admit this is fairly frustrating but I haven't given up yet.  Any more suggestions are welcome, and I will review the link you gave me just to make sure I cover all my bases.

  • NEED HELP cannot find data

    Hi all
    I just developed a registration application using netbeans 6, glassfish and mysql, JSF EJB
    The program runs perfectly apart from a little instability from netbeans. But after the success page has displayed, i Cannot find the data I persisted in the database.
    Can some one help me since i'm a bit new to this.
    Thanks in advance

    Sorry but my problem is that after the persistence, i could not find the data I entered in the JSF register page.
    The progran first displays a register page:
    after validation the backing bean invokes the session bean method to save the data.
    The method returns a string which is then used in faces config to display the login page.
    Well when I run the program, everything works fine.
    then i enter the select command in the mysql server console to view the data but the new entry could not be found in the database
    Is it that the program is faulty or the data was not saved since there was no exception or error dispalyed

  • Help - cannot find symbol error

    Can someone help me? I am getting "cannot find symbol" error in my code and cannot figure out why. Here is my code:
    public class toyInventory
    private String[] toyInventory = {"ball", "bat", "bear", "car", "doll", "game", "glove", "playstation", "train"};
    private int[] nineArray = {0,0,0,0,0,0,0,0};
    int invItems = 0;
    public void countToy()
    String orderInput[] = {"bear", "train", "car", "ball", "doll", "ball", "train", "doll", "game", "train", "bear", "doll", "train", "car", "ball", "bat", "glove", "bat", "b", "doll", "bear", "ball", "doll", "bat", "car", "glove", "train", "doll", "bear"};
    int noMatch;
    for(int a = 0; a < orderInput.length; a++)
    noMatch = 0;
    for(int b = 0; b < toyInventory.length; b++)
    if(orderInput[a] == toyInventory)
    noMatch = 1;
    break;
    if(noMatch == 0)
    invItems = 1;
    public void printItems()
    for(int c = 0; c < toyInventory.length; c++)
    if (countToy[c] > 4)<-------- cannot find symbol error here
    System.out.print("*");
    System.out.print(toyInventory[c] + "\t" + countToy[c] + "\n"); <----cannot find symbol error here also
    System.out.print("The number of invalid items in the order is" + invItems);
    public static void main( String[] args)
    toyInventory collection = new toyInventory ();
    collection.countToy();
    collection.printItems();

    public void countToy()
    String orderInput[] = {"bear", "train", "car", "ball", "doll", "ball", "train", "doll", "game", "train", "bear", "doll", "train", "car", "ball", "bat", "glove", "bat", "b", "doll", "bear", "ball", "doll", "bat", "car", "glove", "train", "doll", "bear"};In the above code you have declared countToy() as method and while in the below lines you are calling countToy[] as an array. So please check that...
    if (countToy[c] > 4)<-------- cannot find symbol error here
    System.out.print("*");
    System.out.print(toyInventory[c] + "\t" + countToy[c] + "\n"); <----cannot find symbol error here also
    }

  • Help - cannot find digital copy movie on iPad for flight tomorrow

    Ok.  I'm not apple intelligent... But I do OK.  Flying with my 2, 3 year old and 5 month old alone....  I purchased the blu-ray combo pack today of despicable me for the kids tomorrow on the plane!  I only have my iPad.... So I downloaded iTunes onto my parents computer, authorized it, loaded the digital copy into iTunes (shows up and plays from computer) and synced without problems....so I thought.  I cannot find the movie anywhere on my ipad2 tho!  I can only find options for songs and some TV programs we have from iTunes.  The only videos in the Video option are music videos that came with a CD purchase.  HELP QUICK PLEASE!  The insert with the movie says it is compatible with iTunes and Apple devices/mobile devices?

    Ok.  Only music videos shows up on the videos options.  I tap all around and no other options.  I looked in advanced options and the iPad/iPod option is greyed out. 
    Think my iPad synced to my computer.... So for me to sync my computer to my iPad (as in just the movie...) it will erase everything?  I feel like I should be ale to drag it over, but I get a red no circle when I try that......

  • [help] cannot find symbol

    I'm trying to work on lessons from a book called Java Server Faces. Only problem is there seems to be a java file i cannot compile. Maybe someone here can see whats up?
    here is the error i get when i run javac TableData.java
    TableData.java:4: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    private static final Name[] names = new Name[] {
                         ^
    TableData.java:11: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    public Name[] getNames() { return names;}
           ^
    TableData.java:4: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    private static final Name[] names = new Name[] {
                                            ^
    TableData.java:5: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    new Name("William", "Dupont"),
        ^
    TableData.java:6: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    new Name("Anna", "Keeney"),
        ^
    TableData.java:7: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    new Name("Mariko", "Randor"),
        ^
    TableData.java:8: cannot find symbol
    symbol  : class Name
    location: class com.corejsf.TableData
    new Name("John", "Wilson")here is the code
    package com.corejsf;
    public class TableData {
    private static final Name[] names = new Name[] {
    new Name("William", "Dupont"),
    new Name("Anna", "Keeney"),
    new Name("Mariko", "Randor"),
    new Name("John", "Wilson")
    public Name[] getNames() { return names;}
    }I believe i have all my jar files properly located in webapps/xxx/web-inf/lib
    but i could be wrong..
    thanks

    If its a sample application from some place they should have provide it. Otherwise if the Name class usage is simple you can create the class file yourself.
    Subsequently you can create you own jar file for this using the
    jar cvf [jar file name].jar [package folders]\*.class
    and place it in WEB-INF/lib

  • Need Help ;cannot find any full board waterblock for BigBang 2 x79

    I've just bought this MSI BigBang Xpower II and I am really happy with it.  Then it comes I cannot find any waterblock for it.
    Please recommend me where can I get it, I really do want one.
    Thank you very much
    PS. If no one make them, I wish MSI encorage them to because all X79 board in the market, MSI rules, Peeople still bus Rampage 4 Extreme because of the fullboard water block and also its's ATX.  for BigBnag you really have a big case EG TJ11, therefore it's hi -end board and Im sure that a lot of user that buy BigBangII would be real happy having full board waterblock for their Extreme system.

    Quote from: Henry on 18-February-12, 07:34:19
    From what I've found you can use LGA 1366 water block for CPU and then purchase a screw kit made for LGA 2011 MBs. Footprint for water block is the same for both just mounting depth is different and requires a special screw kit. Look it up, you certainly don't need us for that kind of research.
    The Cpu block isnt a problem, anything that support LGA  2011 will fit well.  What I actually want  is a Fullboard block or at least PWN waterblock, In thailand  it does get very hot, there are only summer. 
    Quote from: HU16E on 18-February-12, 06:59:00
    Recommend to use the search features of the internet. Too new a board for much information about availability of aftermarket components. It is doubtful MSI is going to encourage any manufacturer to build aftermarket parts. Contact them & voice your thoughts;
    http://support.msi.com 
    I will try asking  waterblock manufacurer but I dont know how long will it take. thanks for the advise tho.

  • Can anyone help me find a suitable iPad case?

    Can anyone recommend an iPad case that will protect my iPad when carrying it around in a rucsack -- or a site that will give me some reviews of cases?
    I can find lots of cases in the shops, but nowhere giving me advice about what type I need.
    I'd like one tough enough to keep it safe in a bag and which has received good reviews.
    Thanks,
    Jonathan

    Three options:
    1. Keep your Smart Cover, and purchase an INCASE neoprene iPad sleeve.  They are very protective, and H20 resistant.
    2. Keep your Smart Cover, and purchase an INCASE magnetic snap back.  They prevent scratches, and enhance the functionality of the Smart Cover.
    3.  Keep your Smart Cover, and purchase an INCIPIO smart feather.  They also prevent scratches, and enhance the security of the the Smart Cover.
    Notice the trend?...KEEP YOUR SMART COVER...it is with out a doubt the most practical accessory for the iPad.  I cannot comment on folios, or other cases of that genre as bulky cases are not my cup of tea.  If you want simplicity, yet refinement choose one of the options I listed.  YouTube is full of fantastic reviews, here's a list of my "go to's" for reviews: MCCHRISTOLEAR, metagamers, outfityours and detroit borg.  Good luck.

  • Partition Help, cannot find an answer.

    Hi everyone,
    I attempted to create a Windows 7 partition on my macbook today and after watching it attempt to create a new partition for the best part of sx hours whilst i was working I somewhat foolishly quit the Bootcamp Assistant.
    When I go into finder my boot drive is noq telling me I only have 8gb of space remaining. This makes sense as the partition I created would have left me with 8gb left on the OSX side of things and there should be a 160gb partition for Windows.
    When I go into Disk Utilities it shows I have a 640gb Boot disk in one partition and a 160gb Generic External Media.
    I can't do anything else with the Bootcamp Assistant as it tells me I need 10gb of free space to work.
    Please, is there anyway to reintroduce this space back to my HDD or install windows to the 160gb partition I assume it has kind of created?
    So essentially Bootcamp has stolen 160gb of space which it is now showing as external media whilst still saying there is only one partitio on the main HDD.
    Any help with this would be most appreciated.
    Thanks very much!

    You can remove the BootCamp Partition.
    http://www.macworld.com/article/1156195/delete_boot_camp.html
    http://www.simplehelp.net/2009/01/26/how-to-delete-a-boot-camp-partition/
    http://www.lockergnome.com/osx/2011/08/25/how-to-uninstall-boot-camp-on-os-x/
    http://www.iclarified.com/entry/index.php?enid=20949

  • HELP: cannot find class RDBMSRealm !!!

    After setting the realmClass in weblogic.properties file:
    weblogic.security.realmClass=rdbmsrealm.RDBMSRealm
    weblogic.security.realm.cache.user.enable=true
    weblogic.security.realm.cache.group.enable=true
    weblogic.security.realm.cache.permission.enable=true
    weblogic.security.realm.cache.acl.enable=true
    weblogic.security.realm.cache.auth.enable=true
    However, when I restart weblogic server, this exception occured:
    java.lang.ClassNotFoundException: rdbmsrealm.RDBMSRealm
    at
    weblogic.boot.ServerClassLoader.findLocalClass(ServerClassLoader.java:355)
    at weblogic.boot.ServerClassLoader.loadClass(ServerClassLoader.java:111)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:313)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:120)
    at weblogic.security.acl.Realm.getRealm(Realm.java:79)
    at weblogic.security.acl.Realm.getRealm(Realm.java:57)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1747)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1086)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    Anyone know how to avoid this? Thanks !

    It looks like there is a problem finding the RDBMSRealm class - make sure
    that it is in your classpath
    terry
    Gary Wang <[email protected]> wrote in message
    news:[email protected]..
    After setting the realmClass in weblogic.properties file:
    weblogic.security.realmClass=rdbmsrealm.RDBMSRealm
    weblogic.security.realm.cache.user.enable=true
    weblogic.security.realm.cache.group.enable=true
    weblogic.security.realm.cache.permission.enable=true
    weblogic.security.realm.cache.acl.enable=true
    weblogic.security.realm.cache.auth.enable=true
    However, when I restart weblogic server, this exception occured:
    java.lang.ClassNotFoundException: rdbmsrealm.RDBMSRealm
    at
    weblogic.boot.ServerClassLoader.findLocalClass(ServerClassLoader.java:355)
    at weblogic.boot.ServerClassLoader.loadClass(ServerClassLoader.java:111)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:313)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:120)
    at weblogic.security.acl.Realm.getRealm(Realm.java:79)
    at weblogic.security.acl.Realm.getRealm(Realm.java:57)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1747)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1086)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    Anyone know how to avoid this? Thanks !

  • HELP cannot find song

    Ok yesterday I searched for Led Zeppelin's Stairway to Heaven and all I found was cheapo imitation tribute bands...WHAT GIVES Is iTunes too cheap to buy good songs? Or am I just being stupid and searching for the wrong thing? Please help.

    Beef,
    That is in part why certain groups will not release for download. Somewhere along the line they get the idea that someone will make a copy of the digital file, strip the copy protection (in violation of the DMCA), and put them up on the pirate 2 pirate networks.
    You have just validated their point of view. Congrats on helping feed the paranoid delusions of the RIAA
    Yes, I am saying this with at least a little tounge in my cheek, and at least a little at your expense. But the point remains the same. No hard feelings I hope...

  • Need a help to find most suitable AP/Bridge

    Hi,
    I am searching for wireless connectivity for two office premises which is 50m(line of sight) apart from each other, which should also support at least 30Mbps(this is impartive) traffic. Can I use Cisco Small Business Pro AP 541N AP    to accomplish my objective? Alternatively, anyone has a better suggestion other than AP 5400 series?
    Please let  me know.
    Many thanks,
    Amila

    You sure you can't use fibre optic?
    I'd be using a 1250 autonomous AP with directional dish antennae.  You can configure point-to-point bridge.
    Wireless Bridges Point-to-Point Link Configuration Example
    http://www.cisco.com/en/US/customer/tech/tk722/tk809/technologies_configuration_example09186a008058f53e.shtml
    Don't forget to rate useful posts.  Thanks.

  • Plz help to find dolby driver for my laptop

    i cannot find the suitable Dolby Advanced Audio Driver for my HP laptop that contains the powerful ALTEC LANCING Speakers.can anyone help me to find the latest driver for my device.plz anyone provide the link for download.

    Thats odd unless its a Windows 9x system lol. You shouldn't need drivers for USB storage devices. They are designed to identify themselves as Mass Storage class devices which will run with the built in drivers after Windows 98.  Occasionally you will get a device that have deliberately been designed to not meet the standards (for extra features) but you saying this happens with other USB devices says this isn't the case.
    Does it only happen with storage devices? Like hard drives, flash drives etc?
    The model and windows version shouldn't make much of a difference in this case but it doesn't hurt to know what kind of system you are using.
    Look up the USB controller in your system, if there are drivers for that, download them. If it's an already Windows supported device there is no need to download anything for it (have your Windows disc handy if you use XP) then uninstall the USB controller from the Windows Device Manager using the option to remove the drivers as well if the option is there.  Restart and let Windows find the USB controller and install it (and any other devices attached to the USB bus). You may find your keyboard, mouse and any other USB devices won't work until Windows has finished installing them.  Just give it some time, Windows will get there.

  • I have just upgraded from a Macbook to a Macbook Air. I have been using a iomega external hard drive for Time Machine, which use a Firewire. However, Macbook Air's do not have a Firewire port and i cannot find an adaptor anywhere. Can anyone help?? Thanks

    I have just upgraded from a Macbook to a Macbook Air. I have been using a iomega external hard drive for Time Machine, which use a Firewire. However, Macbook Air's do not have a Firewire port and i cannot find an adaptor anywhere. Can anyone help?? Thanks

    There has never been a reliable firewire ---> USB adapter suitable for external high speed storage.  This was a major issue when the MacBooks lost the firewire port a number of years ago (Apple subsequently brought it back).
    The only high speed port on the Air is the ThunderBolt port.  There are external ThunderBolt drive options out there, but they're somewhat more expensive than traditional USB/FireWire options.

Maybe you are looking for

  • Difference in a string and the text retrieved from JTextBox

    Hello, I am facing a peculiar problem. Please see the following code fragment: m.replaceAll(";\ngo;); where m is a matcher. This is working fine. But whenever I am doing m.replaceAll(myTextBox.getText()); and placing ";\ngo;" in the text Field is not

  • User Exit available for basic inbound idoc type MBGMCR01 in SAP R/3

    HI, We are looking for the User Exit for BsicIdoc MBGMCR01. When we create confirmation in EBP, this idoc gets triggered from EBP to R/3 to create goods receipt material document. Regards, Nikhil.B

  • Reader 9.3.0 admin share updated to 9.3.1 issue

    Hi, I have the admin share of Reader 9.3.0 and updated it with the MSP patch 9.3.1. It installs on a clean machine fine. If it sees Reader 9.3.0 installed, it errors out and says Another version of this product is already installed. My admin share ha

  • Playing midi in java

    hi i am making a little pokemon-like game for my younger brother and i want to know the simplest way to play a midi file over the game. i have a thread all set up and the midi file. I just need the code which will play it. please help me, thanks

  • Have more space between images used as buttons

    Hi again, Would like to see if there's some html properties to have more space beetwen buttons based on image: i've used: save.gif and del.gif instead of the standard template buttons. Would be nice to have the 2 images not so near. thanx a lot