What's the problem.r exception

guys i have written this code but a run time null pionter exception error in java.lang
is being shown in the console
guyz plz help.
here is the code
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
class master extends JFrame implements ActionListener
     JPanel p1;
     JLabel l1,l2,l3;
     JTextField  t1;
     JPasswordField pw1;
     JButton b1;
     GridBagLayout g1;
     GridBagConstraints gbc;
     public master()
          super("hellcome");
           p1=new JPanel();
           g1=new GridBagLayout();
           gbc=new GridBagConstraints();
           getContentPane().add(p1);
           gbc.anchor=GridBagConstraints.NORTHWEST;
           gbc.fill=GridBagConstraints.HORIZONTAL;
           gbc.weightx=0.5;
           gbc.weighty=0.5;
           gbc.gridx=1;
           gbc.gridy=0;
           p1.setLayout(g1);
           g1.setConstraints(l1,gbc);
           l1=new JLabel("Fill out the form");
           p1.add(l1);
           gbc.gridx=1;
           gbc.gridy=1;
           l2=new JLabel("enter ur name");
           g1.setConstraints(l2,gbc);
           p1.add(l2);
           gbc.gridx=2;
           gbc.gridy=1;
           t1=new JTextField(10);
           g1.setConstraints(t1,gbc);
           p1.add(t1);
           gbc.gridx=1;
           gbc.gridy=2;
           l3=new JLabel("enter the password of ur club");
           g1.setConstraints(l3,gbc);
          p1.add(l3);
          gbc.gridx=2;
          gbc.gridy=2;
          pw1=new JPasswordField(10);
          g1.setConstraints(pw1,gbc);
          p1.add(pw1);
          gbc.anchor=GridBagConstraints.SOUTHEAST;
          JButton b1=new JButton("Submit");
          g1.setConstraints(b1,gbc);
          p1.add(b1);
          b1.addActionListener(this);
          setSize(400,400);
          setVisible(true);
     public static void main(String a[])
          master mas=new master();
     public void actionPerformed(ActionEvent e)
          JButton b=(JButton)e.getSource();
          addframe();
     public void addframe()
          JFrame f1=new JFrame("Password checking is done");
          JPanel p2=new JPanel();
          f1.getContentPane().add(p2);
          JLabel l4=new JLabel();
          p1.add(l4);
          String str=pw1.getText();
          if(str=="chelsea")
               l4.setText("Bounjeour Monsieur enjoy ur stay here");
          else
               l4.setText("Sorry monsieur ur Raison de Eitre is not valid");
          f1.setSize(400,400);
          f1.setVisible(true);
guyz cud u plz alos tell me how to post the error messages which ar shown in the
console so that i can put those error messages here.

thanks for ur replies ackumar and quitte
i employed both but didn't work still i am going into the
else block,maybe some logical problem still prevails in the upper part
seems like that addframe method is not getting the string.
plz see thru it.
i am again postin it with the equals method
here it is
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.util.*;
class master extends JFrame implements ActionListener
     JPanel p1;
     JLabel l1,l2,l3;
     JTextField  t1;
     JPasswordField pw1;
     JButton b1;
     GridBagLayout g1;
     GridBagConstraints gbc;
     String str;
     public master()
          super("hellcome");
           p1=new JPanel();
           g1=new GridBagLayout();
           gbc=new GridBagConstraints();
           getContentPane().add(p1);
           gbc.anchor=GridBagConstraints.NORTHWEST;
           gbc.fill=GridBagConstraints.HORIZONTAL;
           gbc.weightx=0.5;
           gbc.weighty=0.5;
           gbc.gridx=1;
           gbc.gridy=0;
           p1.setLayout(g1);
           l1=new JLabel("Fill out the form");
           g1.setConstraints(l1,gbc);
           p1.add(l1);
           gbc.gridx=1;
           gbc.gridy=1;
           l2=new JLabel("enter ur name");
           g1.setConstraints(l2,gbc);
           p1.add(l2);
           gbc.gridx=2;
           gbc.gridy=1;
           t1=new JTextField(10);
           g1.setConstraints(t1,gbc);
           p1.add(t1);
           gbc.gridx=1;
           gbc.gridy=2;
           l3=new JLabel("enter the password of ur club");
           g1.setConstraints(l3,gbc);
          p1.add(l3);
          gbc.gridx=2;
          gbc.gridy=2;
          pw1=new JPasswordField(10);
          g1.setConstraints(pw1,gbc);
          p1.add(pw1);
           str=new String(pw1.getPassword());
          gbc.anchor=GridBagConstraints.SOUTHEAST;
          JButton b1=new JButton("Submit");
          g1.setConstraints(b1,gbc);
          p1.add(b1);
          b1.addActionListener(this);
          setSize(400,400);
          setVisible(true);
     public static void main(String a[])
          master mas=new master();
     public void actionPerformed(ActionEvent e)
          JButton b=(JButton)e.getSource();
          addframe();
     public void addframe()
          JFrame f1=new JFrame("Password checking is done");
          JPanel p2=new JPanel();
          f1.getContentPane().add(p2);
          JLabel l4=new JLabel();
          p2.add(l4);
     //String st1="chelsea";
          //int i=st.compareTo(st1);
     //     String str=new String(pw1.getPassword());
          if(str.equals("chelsea"))
               l4.setText("Bounjeour Monsieur enjoy ur stay here");
          else
               l4.setText("Sorry");
          f1.setSize(400,400);
          f1.setVisible(true);
}

Similar Messages

  • I have a new iPad2 - just out of the box.  Everything works, except I cannot download or update applications. It will not accept my password. My iPod will accept the password. What might the problem be?

    I  have a new iPad2 - just out of the box.  Everything works, except I cannot download or update applications. It will not accept my password. My iPod will accept the password. What might the problem be?  Any ideas?

    Brock8821-
    Use iTunes on your computer.  With the iPad connected, sign into your Apple account and check for updates.
    Doing this should straighten out the problem.
    Fred

  • What's the problem in this code

    import java.lang.reflect.*;
    import java.awt.*;
    class ABC
         public Integer i;
         ABC()
         public void setInt(Integer t)
              i = t;
    public class SampleName {
    public static void main(String[] args)
    ABC g1 = new ABC();
    g1.setInt(new Integer(10));
    printFieldNames(g1);
    static void printFieldNames(Object o) {
    Class c = o.getClass();
    Field[] publicFields = c.getDeclaredFields();
    for (int i = 0; i < publicFields.length; i++)
    try {
    Object ref = publicFields.get(c);
    System.out.println(" ref.toString() : " + ref.toString());
         }catch(Exception e)
                   e.printStackTrace();
    What is the problem with this code,at run time Iam getting this exception
    java.lang.IllegalArgumentException: object is not an instance of declaring class
    How can we get the value of field of an object

    Now it got this exception
    java.lang.IllegalAccessException
    at java.lang.reflect.Field.get(Native Method)That's strange - I didn't! ;-)
    Are you running exactly the same code as the code you posted (except for the one line I said to change)?

  • What's the problem of this mail sending program

    Hi,
    I have Written following code. I have wriiten & run this code in Eclipse. Mail.jar & Activation.jar both jar file i kept in the webcontent/web-inf/lib
    directory. & I also added this jar file using builpath->add External Library. But when run this code then it throws the following exception. What's the problem of code? IS there anybody can help me? Please help me.
    My code is : UserMail.jsp
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
    <title>Mail Sending Program</title>
    <%@ page import="javax.mail.internet.*"%>
    <%@ page import="javax.mail.*"%>
    <%@ page import="java.util.*"%>
    </head>
    <body>
    <%
    String to = "[email protected]";
    String from = "[email protected]";
    String host = "192.168.1.1";
    String txt = "I am from jsp of java";
    String subject = "For testing";
         Properties props = System.getProperties();
         props.put("mail.smtp.host", host);
         Session session1 = Session.getDefaultInstance(props, null);
         MimeMessage msg = new MimeMessage(session1);
         try{
              InternetAddress to1 = new InternetAddress(to);
        msg.setFrom(new InternetAddress(from));
       msg.addRecipient(Message.RecipientType.TO,to1);
       msg.setSubject(subject);
      msg.setText(txt);
          msg.setSentDate(new Date());
        Transport.send(msg);
         catch(Exception e){
              e.printStackTrace();
    %>
    </body>
    </html>Exception is:
    javax.mail.MessagingException: Could not connect to SMTP host: 192.168.1.1, port: 25;
      nested exception is:
         java.net.SocketException: Software caused connection abort: connect
         at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1282)
         at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:370)
         at javax.mail.Service.connect(Service.java:275)
         at javax.mail.Service.connect(Service.java:156)
         at javax.mail.Service.connect(Service.java:105)
         at javax.mail.Transport.send0(Transport.java:168)
         at javax.mail.Transport.send(Transport.java:98)
         at org.apache.jsp.UserMail_jsp._jspService(UserMail_jsp.java:73)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.net.SocketException: Software caused connection abort: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(Unknown Source)
         at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
         at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
         at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1250)
         ... 27 moreWith regards
    Bina

    javax.mail.MessagingException: Could not connect to SMTP host: 192.168.1.1Is this host Ip correct. If Ip is correct then this host should be a mail exchange server. Hope u did not use Ip address of ur machine ;-)
    By the way hope u recd the test mail during my testing....lol
    Regards
    Rohit

  • What is the problem? Why MBeanConnector server can not start?

    I try to start a Coherence server and use MBeanConnector to access Mbean. But get a error message.
    What is the problem?
    C:\Documents and Settings\jimq>java -Dtangosol.coherence.management=all -cp coherence.jar com.tangosol.net.management.MB
    eanConnector -rmi
    Exception in thread "main" java.lang.NoClassDefFoundError: com/tangosol/net/management/MBeanConnector
    Caused by: java.lang.ClassNotFoundException: com.tangosol.net.management.MBeanConnector
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    Could not find the main class: com.tangosol.net.management.MBeanConnector.  Program will exit.

    Hi,
    sounds like a class path issue - are you sure coherence.jar is in the current directory., i.e. C:\Documents and Settings\jimq? What is the result of jar tvf coherence.jar | grep MBeanConnector or windows equivalent?? Here is the result of me running the same cmd line:
    hraja@hraja-lnx:/stuff/jlib/coherence/3.5.2/java/lib$ java -Dtangosol.coherence.management=all -cp coherence.jar com.tangosol.net.management.MBeanConnector -rmi
    2009-11-13 14:03:33.924/1.556 Oracle Coherence 3.5.2/463p1 <Info> (thread=Main Thread, member=n/a): Loaded operational configuration from resource "jar:file:/stuff/jlib/coherence/3.5.2/java/lib/coherence.jar!/tangosol-coherence.xml"
    2009-11-13 14:03:33.936/1.567 Oracle Coherence 3.5.2/463p1 <Info> (thread=Main Thread, member=n/a): Loaded operational overrides from resource "jar:file:/stuff/jlib/coherence/3.5.2/java/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-11-13 14:03:33.936/1.567 Oracle Coherence 3.5.2/463p1 <D5> (thread=Main Thread, member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2009-11-13 14:03:33.940/1.571 Oracle Coherence 3.5.2/463p1 <D5> (thread=Main Thread, member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.5.2/463p1
    Grid Edition: Development mode
    Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
    2009-11-13 14:03:35.533/3.164 Oracle Coherence GE 3.5.2/463p1 <Info> (thread=Main Thread, member=n/a): Loaded cache configuration from "jar:file:/stuff/jlib/coherence/3.5.2/java/lib/coherence.jar!/reports/report-group.xml"
    2009-11-13 14:03:36.716/4.347 Oracle Coherence GE 3.5.2/463p1 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-11-13 14:03:39.952/7.583 Oracle Coherence GE 3.5.2/463p1 <Info> (thread=Cluster, member=n/a): Created a new cluster "cluster:0xD1CB" with Member(Id=1, Timestamp=2009-11-13 14:03:36.484, Address=192.168.159.1:8088, MachineId=63233, Location=site:local,machine:hraja-lnx,process:15775, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) UID=0xC0A89F0100000124EDDB34A4F7011F98
    2009-11-13 14:03:40.238/7.869 Oracle Coherence GE 3.5.2/463p1 <D5> (thread=Invocation:Management, member=1): Service Management joined the cluster with senior service member 1
    Starting RMI Connector...
    RMI Connector started--harvey                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • What is the problem with the code to get all  opportunities

    Hello All,
    I have wrote the java code as below to get the all opportunities.But i did not get the opportunities i.e its returns null . Any one,Please suggest me what is the problem with the below code.
    OpportunityWS_OpportunityQueryPage_Output opportunityWS_OpportunityQueryPage_Output = new OpportunityWS_OpportunityQueryPage_Output();
                   Opportunity[] opportunities=opportunityWS_OpportunityQueryPage_Output.getListOfOpportunity();
    Thanks,
    --bdr_09                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Dinesh,
    Please check out the code and give me your suggestions
    *try{*
    String address="MY URL"+getSessionId();
    Default_BindingStub dbs=new Default_BindingStub();
    dbs.setMaintainSession(true);
    OpportunityLocator loc = new OpportunityLocator();
    loc.setDefaultEndpointAddress(address);
    loc.setMaintainSession(true);
    OpportunityWS_OpportunityQueryPage_Output opportunityWS_OpportunityQueryPage_Output = new OpportunityWS_OpportunityQueryPage_Output();
                   Opportunity[] opportunities= opportunityWS_OpportunityQueryPage_Output.getListOfOpportunity();
    System.out.println("opportunities size::"+opportunities.length);
    *}catch(Exception e){*
    e.printStackTrace();
    Thanks,
    --bdr_09                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    Should read 'When I '''clicked''' on your update this a.m......

  • TS2446 i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, what is the problem? what can i do ?

    i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, i creat a new password and still that message shoes ,what is the problem ?can you help me please???!!!!

    If your account is disabled then you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your phone by tapping on your id in Settings > iTunes & App Store and then log back in so as to 'refresh' the account on it
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • I have installed Itunes 10.5 on my PC and I have turned photostream on on my Ipad2 and Iphone.  The photos sync fine but they are not showing up on my PC.   What's the problem?

    I have installed Itunes 10.5 on my PC and I have turned photostream on on my Ipad2 and Iphone.  The photos sync fine but they are not showing up on my PC.   What's the problem?  I can see my photos on my ipad and Iphone.   I want to be able to see them on my PC when I take pictures from my Iphone and Ipad.  How do I see Photostream on my PC?

    You have to install the iCloud control panel for windows, then sign in with you apple ID, and check what you want to sync.
    link: http://support.apple.com/kb/DL1455

  • HT1657 When I try to rent a movie from iTunes on my Apple TV it says the purchase could not be completed. My password is correct as well as my location and other information. What is the problem?

    When I try to rent a movie on my Apple TV it states that the purchase could not be completed. My password is correct and location, user id, and other settings are correct. What is the problem?

    If you are also getting a message to contact iTunes Support then you can do so via this link and ask them why the message is appearing (we are fellow users here on these user-to-user forums, we won't know why) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • I have a mid 2011 macbook air and a new Apple TV but I can't mirror. What's the problem? I have checked display settings and I don't have the "allow mirroring" option there.

    What is the problem?

    About AirPlay and Airplay Mirroring
    AirPlay Mirroring requires a second-generation Apple TV or later, and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). For non-qualifying Macs you can try using Air Parrot.
    Several Apple Articles Regarding AirPlay
    Apple TV (2nd and 3rd gen)- How to use AirPlay Mirroring
    How to set up and configure AirPort Express for AirPlay and iTunes
    iTunes- Troubleshooting AirPlay and AirPlay Mirroring
    iTunes- Using AirPlay
    Apple TV (2nd and 3rd gen)- Understanding AirPlay settings
    About AirPlay Mirroring in OS X Mountain Lion
    iTunes 10- About playing music with AirPlay
    Troubleshooting AirPlay and AirPlay Mirroring
    Using AirPlay
    Thanks to the $15 Beamer, AirPlay streaming is still possible on Macs  that do not support Airplay and mirroring.
    Other solutions are the Air Parrot, StreamToMe, and AirServer.

  • I am trying to restore an ipod to the factory settings. However I get a message that my username or password is incorrect. I am using my correct Apple id and password.  What is the problem, please?

    I am trying to restore an ipod to the factory settings. However I get a message that my username or password is incorrect. I am using my correct Apple id and password.  What is the problem, please?

    Was that Apple ID and password the original owner of the iPod?  If not, try using the Apple ID and password of the original owner.

  • HT4972 i connect my iphone to my pc and i tunes open automatically,then i press dowload and update but itunes say am not connected to the internet while my pc is connected to the internet what isi the problem?

    i connect my iphone to my pc and i tunes open automatically,then i press dowload and update but itunes say am not connected to the internet while my pc is connected to the internet what isi the problem?

    If you are the only user on your computer you probably don't have multiple user accounts set up and can disregard that.  If you are using iTunes 11 go to View>Show Sidebar.  Now see if your iPad appears under Devices on the left side when you connect it.  If it does, click on the name of your iPad on the left side and your iTunes sync settings options will appear in folders with tabbed headings to the right.
    If it doesn't appear on the left side, follow the troubleshooting steps shown in this article: http://support.apple.com/kb/TS1538.

  • I just purchased the ExportPDF. When I try to convert a pdf document to word online, it gives me an error. What is the problem?

    I just purchased the ExportPDF. When I try to convert a pdf document to word online, it gives me an error. What is the problem?

    Hi sampa1,
    Can you please let us know the error message you are getting while converting PDF to Word. Also, please let us know the steps you are following.

  • My itunes wont auto sync my iphone 4 after i connect it to itunes. But it can auto sync when i connect it to my old laptop. what's the problem that it can't auto sync and when i did a backup in my new laptop, it was corrupted the next day.

    But it can auto sync when i connect it to my old laptop. what's the problem that it can't auto sync and when i did a backup in my new laptop, it was corrupted the next day and i was forced to use back a backup which i did in my old laptop 4 months ago. do i have to reinstall the itunes? will my backups be corrupted after i sync again? pls guide.
    P.S/ its the latest version of the itunes whenever i did the backups.

    iPod touches or any iDevices from Apple sync only to one computer. If you sync to a different computer, all your music will be replace with the music from the new computer's iTunes. If the music were purchased from iTunes, you can re-download them again otherwise the music on iPod touch will be deleted. Do you have iTunes backup? 

Maybe you are looking for

  • RichText with HTML markup in PDF

    Hello I've come to the point, when I need to display rich text with html markups in output PDF. PDF is going to be printed and I don't want anything to be editable. I've started with xsd schema for the xdp template, where particular element looks lik

  • Corrupted Chinese characters shown while connecting to Sybase

    SQL Developer experts, While I connect to Sybase DB 11 via SQL developer 2.1.1 with 'jtds-1.2.5' JDBC driver, but I see corrupted Chinese characters from SQL developer, the Sybase DB is using 'iso_1' charset. Can anyone advise me how to solve the pro

  • Weblogic.security.ldaprealm.LDAPException

    hi all, i'm trying to authenticate users/groups with weblogic 6.0sp2 against iplanet 5.0 on an nt operating system. from time to time weblogic server is throwing exceptions like the one below: weblogic.security.ldaprealm.LDAPException: search error:

  • Mac G5 not recognizing webcam

    I purchase a webcam for my mac G5 with a usb connector, but the computer is not recognizing the device. If someone has knowledge of what I need to do or any software I can download to fix this issue, please let me know. Your Help will be gladly appre

  • All faces tagged?

    I used keywords for 'faces & places' in the past. But now that faces & places are supported in iPhoto I'll of course want to switch to using the built in features. So I've got an entire library to 'tag'. Which is fine. My problem is .... how do I kno