NEED HELP: JDBC ERROR

I get this error when I try to connect my applet through JDBC:
Error null: Unexpected Packet. Type = 0
I have punch a hole on my firewall to allow my jdbc thin to hit
directly to oracle database.
If you have an answer for my problem, please email me at
[email protected]
Thanks a bunch,
-ed-
null

Hi ,
Use following String
http://<Hostname>:<PortNo>/ftpjdbc
This can be used to check whether FTP and JDBC Drivers are properly deployed and connection can be done or not.
Select JDBC . Then   :
Driver Class (fully qualified)  : com.microsoft.sqlserver.jdbc.SQLServerDriver
JDBC URL : jdbc:sqlserver://255.255.255.255:8888;databasename=Dummy
USERNAME : DUMMY
PASSWORD : DUMMY
and enter valid values and then press connect
Then In response you will see connection will be established and then closed , any else response means there is some problem...
Regards
Prabhat Sharma.

Similar Messages

  • Need help with error message 213:8

    Need help with error message 213:8, this error message prompted after re-installing CS5.5 on the same machine (W7 Pro)
    Thanks.

    Hi TKA_,
    Please try the solutions mentioned on following forum thread.
    http://support.muse.adobe.com/thread/1305941?start=0&tstart=0
    Let me know if it works?
    Regards,
    Sumit Singh

  • Need help with error code 1714!!!!!!!!!!! Please help

    Need help trying to upgrade itunes for windows, i get to a certain point and the following error comes up "ERROR 1714: THE OLD VERSION OF ITUNES CANNOT BE REMOVED CONTACT YOUR TECHNICAL SUPPORT GROUP" i click ok and then another error comes up "ERROR 1603 FATAL ERROR" can anybody help Please!!!!!!!!!!!!!!!!!!!!

    hi wags!
    hmmmm. okay, let's try using the complete uninstallation instructions from the following document to remove your existing itunes and QT:
    Trouble installing iPod, iTunes, or QuickTime software in Windows
    if you do that first, will the new itunes install go through properly?
    if you get an error message on the uninstalls, let us know what it says. include error message numbers if you're getting any.
    love, b

  • I need help with error ORA-06502: numeric or value error

    Hi, all, i need help finding the error here, im getting a numeric or value error when i add information to the variable vlcadena when vlcadena is a clob type, and i check the length of the vlcadena variable and sometimes makes the error at 8000 characters some other times 32k i have no idea whats happening, does anyone have a clue?
    PROCEDURE REGISTRO_551 (
    VPNUMPARTE IN PARTESC.NUMPARTE%TYPE,
    VPFRACCION IN IMPOMAT.FRACCIONMEXIMPO%TYPE,
    VPDESCRIPCION IN PARTESC.DESCESPANOL%TYPE,
    VPVALORDLS IN IMPOMAT.VALORDOLARES%TYPE,
    VPCANTIDAD IN IMPOMAT.CANTIDAD%TYPE,
    VPUNIMED IN PARTESC.UNIMEDPARTE%TYPE,
    VPCANTIDADTARIFA IN IMPOMAT.CANTIDAD%TYPE,
    VPVALORAGREGADO IN EXPOPT.VALORAGREGADO%TYPE,
    VPPAISORIGEN IN PARTESC.PAISORIGEN%TYPE,
    VPCOMPVEND IN PARTESC.PAISORIGEN%TYPE,
    VPTIPOFRACCION IN IMPOMAT.TIPOFRACCION%TYPE,
    VPPESONETO IN IMPOMAT.PESONETO%TYPE,
    VPTIPOMONEDA IN MIMPOMAT.TIPOMONEDAEXTRANJERA%TYPE
    ) AS
    BEGIN
        vgproceso := 207310;
        vllong2:=length(vlCadena);
        vlCadena:=vlCadena||'551'||'|'; --1. TIPO DE REGISTRO
        vgproceso := 207311;
        vllong2:=length(vlCadena);
        vlCadena:=vlCadena||VPFRACCION||'|'; --2. FRACCION
        vgproceso := 207312;
        vllong2:=length(vlCadena);
        QUITA_ENTERS(NVL(VPDESCRIPCION,' '),VLTEMP);
        IF LENGTH(VLTEMP)>80 THEN
            VLTEMP:=SUBSTR(VLTEMP,1,80);
        END IF;
        vgproceso := 207313;
        vllong2:=length(vlCadena);
        IF VLTEMP IS NULL THEN
            vlCadena:=vlCadena||'|'; --3. DESCRIPCION
        ELSE
            vlCadena:=vlCadena||VLTEMP||'|'; --3. DESCRIPCION
        END IF;
        vgproceso := 207314;
        vllong2:=length(vlCadena);
        IF VPNUMPARTE IS NULL THEN
            vlCadena:=vlCadena||'|';--4. NO. DE PARTE
        ELSE
            vlCadena:=vlCadena||VPNUMPARTE||'|';--4. NO. DE PARTE
        END IF;
        vgproceso := 207315;
        vllong2:=length(vlCadena);
        vlCadena:=vlCadena||VPVALORDLS||'|'; --5. VALOR MERCANCIA
        vgproceso := 207316;
        vllong2:=length(vlCadena);
        vlCadena:=vlCadena||VPCANTIDAD||'|'; --6. CANTIDAD COMERCIAL
        vgproceso := 207317;
        vllong2:=length(vlCadena);
        IF VPUNIMED IS NULL THEN
            VPDESCERROR:='ALGUNA PARTIDA CON FRACCION '||VPFRACCION||' NO TIENE UNIDAD DE MEDIDA';
        END IF;
        vgproceso := 207320;
        GET_CATGRAL('ADUANAS','UNIMED',NVL(VPUNIMED,' '),CL_D1,CL_D2,CL_D3,CL_D4,CL_V1,CL_V2,CL_V3,CL_CATG);
        IF CL_V2=0 THEN
           vlCadena:=vlCadena||VPUNIMED||'|'; --7. UNIDAD MEDIDA COMERCIAL
        ELSE
            SELECT TO_CHAR(TRUNC(CL_V2)) INTO VLUMCOMERCIAL FROM DUAL;
            IF LENGTH(VLUMCOMERCIAL)=1 THEN
                VLUMCOMERCIAL:='0'||VLUMCOMERCIAL;
            END IF;
            vlCadena:=vlCadena||VLUMCOMERCIAL||'|'; --7. UNIDAD MEDIDA COMERCIAL
        END IF;
        vlCadena:=vlCadena||VPCANTIDADTARIFA||'|';--8. CANTIDAD TARIFA
        vlCadena:=vlCadena||VPVALORAGREGADO||'|';--9. VALOR AGREGADO
        GET_CATGRAL('ADUANAS','CONFADU','IVIN-REG',CL_D1,CL_D2,CL_D3,CL_D4,CL_V1,CL_V2,CL_V3,CL_CATG);
        vlCadena:=vlCadena||CL_D1||'|'; --10. VINCULACION
        vlCadena:=vlCadena||CL_D2||'|'; --11. METODO DE VALORACION
        vlCadena:=vlCadena||'|'; --12. MARCA
        vlCadena:=vlCadena||'|'; --13. MODELO

    If the expected maximum length of the concatenated string is less than 32K, then use VARCHAR2 and at the end convert to CLOB if necesary.
    :p
    PS: At what line in the code does it give the error?
    Edited by: LKBrwn_DBA on Aug 20, 2009 2:49 PM

  • Need help with error: No bootable device -- insert boot disk and press any key

    Hello, I need help will my laptop and the error, the message says "no bootable device ", I have tried taking out the hard drive but it still doesn't work. My laptop is a Satillite C55D-A5372. I need help with this; if you know about this ans know how to fix it please reply or email me @ [email protected]
    If needed more clarifications ask me.
    Thank you,
    Jkmano

    if you got into the bios/uefi and have determined that the hdd is being detected then that is good.  At least the hdd is operating to some extent, although still may be corrupt OS or the like.
    Eagle asked you what OS your using (i.e., Windows 8.1 64-bit, Windows 7 32-bit, etc.).  I see that English is not your native language so we'll just have to work with that as best we can. 
    Did you make any changes to the operating system (OS) as a result of the link you posted, and what were they? 
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • Need help with error code 150:30

    need help with finding out what error code 150:30 is and how to fix it

    See the following:
    Error 150:30 - Error "Licensing has stopped working" | Mac OS :
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html

  • Need help with error

    Need help figuing out why I'm getting the following error
    message trying to launch a training CBT and what to do to fix
    it...?
    Adobe Flash Player Security
    Adobe Flash Player has stopped a potentialy unsafe operation.
    Teh follwoing local application on your computer or netwrok:
    X:\XXXXXX\XXXXXX....\XXXXX
    is trying to communicate with this Internet-enabled location:
    X:\XXXXXX\XXXXXX....\XXXXX
    To let this application communicate with the Internet, click
    Settings,
    You must restart the application after changing your
    settings.

    <itunes:category text="TV & Film">
    <itunes:category text="TV & Film/></div>
    The two lines I've quoted above should be replaced with:
    <itunes:category text="TV & Film" />
    The "TV & Film" category has no subcategories so should be closed on it's own. See the example feed at http://www.apple.com/itunes/store/podcaststechspecs.html#_Toc526931673 which uses the TV & Film category.
    Hope this helps,
    Greg

  • Need help with error: XML parser failed: Error An exception occurred! Type:......

    <p>Need help with the following error.....what does it mean....</p><p>28943 3086739136 XML-240304 3/7/07 7:13:23 PM |SessionNew_Job1<br /><font color="#ff0000">28943 3086739136 XML-240304 3/7/07 7:13:23 PM XML parser failed: Error <An exception occurred! Type:UnexpectedEOFException, Message:The end of input was not expected> at</font><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM line <7>, char <8> in <<?xml version="1.0" encoding="WINDOWS-1252" ?><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfigurations><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfiguration default="true" name="Configuration1"><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <case_sensitive>no</case_sensitive><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <database_type>Oracle</database_type><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_alias_name1>ODS_OWNER</db_alias_name1><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_ali>, file <>.<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM |SessionNew_Job1<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM XML parser failed: See previously displayed error message.</p><p>Any help would be greatly appreciated.  It&#39;s something to do with my datasource and possibly the codepage but I&#39;m really not sure.</p><p>-m<br /></p>

    please export your datastore as ATL and send it to support. Somehow the internal language around configurations got corrupted - never seen before.

  • Need help finding errors.

    I need help finding the error(s) in my code. I am writing a program to convert decimal to binary. It is not an application. It is more of a blue print for an object.
    The Program is:
    public class DecimalToBinary
         private long decimal;
         private long binary;
    //Constructor setes the variable decimal and coverts and sets the variable binary
    public DecimalToBinary(int decValue)
         decimal = (long)decValue;
         binary = convert(decValue);
    //This method does the actual conversion from decimal to binary
    public long convert(long dec)
              long remainder = 0; //Start with initial value
         String bin = ""; //Start with a blank string
              while (dec > 0)
              remainder = dec%2; //get remainder
                   dec /=2; //get the number divided by 2
                   bin = remainder + bin; //concatenate the remainder to string
         return Long.parseLong(bin);
         //Accesor methods to get the value of decimal
    public long getDecimal()
         return decimal;
    // Accessor Method to return binary Value
    public long getBinary()
         return binary;
    // To string to represent Object.
    public String toString()
         String result = "";
    result = decimal +"\t\t\t" +binary;
         name1.getDecimal()     
         return result;
    The error I am getting is:
    DecimalToBinary.java:56: ';' expected
         name1.getDecimal()     
         ^
    1 error
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    I've tried putting the ; in there but it doesn't help and only throws another error.

    Did you read the error message?
    DecimalToBinary.java:56: ';' expected
    name1.getDecimal() What is missing? Can you see where on the line of code it has identified that the missing thing is?

  • Need help deciphering error messages!!!

    My iTunes library was continually acting up, so I finally decided to start fresh. I restored & updated iTunes, Quicktime, & my iPod. I followed the directions from a question I posted here. I drag and dropped the music back into the "clean" library, and everything was going great.
    Now I'm getting the same error messages as before. I was adding music and this message appeared.
    Error Message:
    The file "iTunes Library.itl" does not appear to be a valid music library file. iTunes has attempted to recover your music library and renamed this file to "iTunes Library (Damaged).itl".
    My library.xml file was missing some music, so I added it back to the library.itl file to see if it would work. It appeared fine afterward. The next day I went in to recreate my playlists, and received the following error.
    Error Message:
    The iTunes Library cannot be saved. An unknown error has occurred (-1450).
    Questions:
    1. What is error 1450?
    2. Are my music files (that I drag & drop)contaminated and need to be deleted and reimported?
    3. What are the causes of the 2 error messages above? I copied them to my notepad exactly as they appeared on screen?
    4. When iTunes creates a library (damaged).itl file, it also creates a new music file: song 1.m4a replaces song.m4a - which version do I keep?
    The only good news is that my iPod has always worked fine. It has no music on it now, and I don't want to hook it up to a contaminated library.
    Need help desperately...I'm beginning to hate iTunes...just want to use my iPod.
    Dell Inspiron 6000 Pentium   Windows XP   1.6 GHz, 1G RAM

    When iTunes creates a library (damaged).itl file, it also creates a duplicate song file.
    song 1.m4a replaces song.m4a - which version can I delete without creating problems?

  • Do you need help with error code 1004

    The alert message in iTunes may include one of the following numbers (or the message may include a number not listed here):
    1, -1, 2, 4, 6, 9, 13, 14, 20, 21, 23, 26, 28, 29, 34, 35, 36, 37, 40, -48, -50, 1000, 1002, 1004, 1011, 1013, 1014, 1015, 1479, 1600, 1601, 1602, 1603, 1604, 1611, 1631, 1638, 1639, 2001, 2002, 2005, 2006, 2009, 3002, 3004, 3013, 3014, 3015, 3194, 3200, 9006, 9807, -9808, 9844, 4026xxxxx.
    Click the link for the error code you have. If it's not listed here, check the error messages below, and then if necessary follow the advanced steps below to resolve the issue.
    Resolution
    Specific error messages and resolutions
    Collapse All | Expand All
      Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    This device is not eligible for the requested build (Also sometimes displayed as an "error 3194")
    Update to the latest version of iTunes. Mac OS X 10.5.8 (Leopard) users may need to download iTunes 10.6.3.
    Third-party security software or router security settings can also cause this issue. To resolve this, follow Troubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to perform unauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. Uninstall the unauthorized modification software from the computer.
    Edit out the "gs.apple.com" redirect from your hosts file, and then restart the computer for the host file changes to take affect. For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart.
    Avoid using an older or modified .ipsw file. Try moving the current .ipsw file (see Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations), or try restoring in a new user to ensure that iTunes downloads a new .ipsw.
      Error 3014
    This error occurs when iTunes is unable to reach gs.apple.com in a timely fashion. Follow the steps below in Unable to contact the iOS software update server gs.apple.com.
      Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.
      Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.
      Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue: 
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
      If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.
      Error 1600, 1601, 1602
    Follow the steps listed above for Error 1604. This error may also be resolved by disabling, deactivating, or uninstalling third-party security, antivirus, and firewall software. See steps in this article for details on troubleshooting security software.
      Error 1603
    Follow the steps listed above for Error 1604. Also, discard the .ipsw file, open iTunes and attempt to download the update again. See the steps under Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations. If you do not want to remove the IPSW in the original user, try restoring in a new administrator user. If the issue remains, Eliminate third-party security software conflicts.
      Error 1611
    This error typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
      Error 13, 14, 35 and 50 (or -50)These errors are typically resolved by performing one or more of the steps listed below: 
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting.
    Put a USB 2.0 hub between the device and the computer.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online.
    Try to restore from another known-good computer and network.
      Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on)
    If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you are using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that does not resolve the issue, try the USB issue-resolution steps and articles listed for Error 1604 above. If the issue persists, it may be related to conflicting security software. If the errors persist on another computer and known-good USB cable, the device may need service.
    Restore loop (being prompted to restore again after a restore successfully completes)
    Troubleshoot your USB connection. If the issue persists, out-of-date or incorrectly configured third-party security software may be causing this issue. Please follow Troubleshooting security software issues. .
    There was a problem downloading the software for the iPhone (or another iOS device)
    See the steps below for error codes 3000-3999.
    iTunes cannot connect to the iPhone because an invalid response received from the device
    This error occurs when there are problems communicating through USB. This may be resolved by following the steps for errors 13 or 14 above.
    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.
    Hang during restore process

    See the following:
    Error 150:30 - Error "Licensing has stopped working" | Mac OS :
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html

  • New to Java and need help with error message!

    I have just installed the oracle jdbc driver and am now getting the following error message when trying to use the jbdc driver instead of the jdbc:odbc wrap driver...
    See com.borland.dx.dataset.DataSetException error code: BASE+47
    com.borland.dx.dataset.DataSetException: Chain of 2 or more Exceptions occurred
         at com.borland.dx.dataset.DataSetException.a(Unknown Source)
         at com.borland.dx.dataset.DataSetException.throwExceptionChain(Unknown Source)
         at com.borland.dx.sql.dataset.q.a(Unknown Source)
         at com.borland.dx.sql.dataset.Database.openConnection(Unknown Source)
         at com.borland.dx.sql.dataset.Database.createPreparedStatement(Unknown Source)
         at com.borland.dx.sql.dataset.o.a(Unknown Source)
         at com.borland.dx.sql.dataset.o.d(Unknown Source)
         at com.borland.dx.sql.dataset.o.f(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.e(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.a(Unknown Source)
         at com.borland.dx.dataset.DataSet.a(Unknown Source)
         at com.borland.dx.dataset.DataSet.open(Unknown Source)
         at com.borland.dbswing.JdbTable.bindDataSet(JdbTable.java:2749)
         at com.borland.dbswing.JdbTable.setDataSet(JdbTable.java:819)
         at myframes.ClaimView.btnSQL_actionPerformed(ClaimView.java:279)
         at myframes.ClaimView_btnSQL_actionAdapter.actionPerformed(ClaimView.java:440)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Chained exception:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:640)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:280)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.borland.dx.sql.dataset.q.a(Unknown Source)
         at com.borland.dx.sql.dataset.Database.openConnection(Unknown Source)
         at com.borland.dx.sql.dataset.Database.createPreparedStatement(Unknown Source)
         at com.borland.dx.sql.dataset.o.a(Unknown Source)
         at com.borland.dx.sql.dataset.o.d(Unknown Source)
         at com.borland.dx.sql.dataset.o.f(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.e(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.a(Unknown Source)
         at com.borland.dx.dataset.DataSet.a(Unknown Source)
         at com.borland.dx.dataset.DataSet.open(Unknown Source)
         at com.borland.dbswing.JdbTable.bindDataSet(JdbTable.java:2749)
         at com.borland.dbswing.JdbTable.setDataSet(JdbTable.java:819)
         at myframes.ClaimView.btnSQL_actionPerformed(ClaimView.java:279)
         at myframes.ClaimView_btnSQL_actionAdapter.actionPerformed(ClaimView.java:440)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Here is the code causeing the error;
    void btnSQL_actionPerformed(ActionEvent e)
    try
    String GET_DATASET = txtSQL.getText().trim();
    Display("Executing...");
    try
    MyDisplayTable.setDataSet(null);
    catch (DataSetException ex)
    Display("ERROR 1: " + ex.toString());
    try
    queryDataSet1.close();
    catch (DataSetException ex)
    Display("ERROR 2: " + ex.toString());
    try
    queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(
    database1, GET_DATASET, null, true, Load.ALL));
    catch (DataSetException ex)
    Display("ERROR 3: " + ex.toString());
    try
    if (!queryDataSet1.isOpen()) {
    queryDataSet1.open();
    catch (DataSetException ex) {
    Display("ERROR 5: " + ex.toString());
    try {
    queryDataSet1.refresh();
    catch (Exception ex) {
    Display("ERROR 5.5: " + ex.toString());
    try {
    Display("setDataSet");
    MyDisplayTable.setDataSet(queryDataSet1);
    Display("DONE setDataSet");
    catch (DataSetException ex) {
    Display("ERROR 6: " + ex.toString());
    Display("Query: ' " + GET_DATASET.trim() + " ' was executed successfully");
    catch (Exception ex)
    Display(ex.toString());
    Please let me know if more information is required. I am completely at a loss as to what more I need to do to get this to work using the new driver.
    Thank you all in advance,
    Malcolm Diaz
    Application Developer
    [email protected]
    PlanVista Solutions Inc.
    419 E.Main St.
    Middletown NY 10940
    845-346-2692

    this is more of a jdbc question rather than an internationalization. You might be able to get more help if you post it in java programming section.

  • Urgently need help pls- error in sql

    hi everyone i need some help please. the error is :
    ("select title from book where resource_ID= (select resource_ID from
    resources where mem_ID='"+id+"')");     
    thanking u in advance
    here is the full program.
    <html>
    <head>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    </head>
    <body background="CLOTH003.GIF">
    <font face="comic sans ms" size="5">
    <br><br>
    <center>
    <center>
    <img border="0" src="search.JPG" width="107" height="30">
    <img border="0" src="edit.JPG" width="106" height="30">
    <img border="0" src="logout.JPG" width="95" height="30">
    <img border="0" src="help.GIF" width="105" height="30">
    <br>
    <br>
    <%
    // define database parameters
    String host="localhost:8080";
    String db="lsib";
    String optionSelected="";
    String conn;
    Statement createStatement = null;
    ResultSet rs = null;
    String user = "kushal";
    String pass = "";
    Class.forName("com.mysql.jdbc.Driver");
    // create connection string
    conn = "jdbc:mysql:" + host + "/" + db + "?user=" + user + "&password=" + pass;
    conn = "jdbc:mysql://localhost/LSIB";
    // pass database parameters to JDBC driver
    Connection Conn = DriverManager.getConnection(conn);
    // query statement
    Statement SQLStatement = Conn.createStatement();
    String id =request.getParameter("mem_ID");
    // generate query
    String sql="select name, fines,from member where mem_ID="+id;
    // get result
    rs= SQLStatement.executeQuery(sql);
    if (rs != null && rs.next() )
         String lname = rs.getString("name");
         int lfines = rs.getInt("fines");
         String ltitle = rs.getString("title");
    %>
         <form method="post" action="renew.jsp">
         <table border = "0" width="400">
         <tr>
         <td><b>hello</b></td><td><input name="logname" type="text" width="30" value="<%= lname           
    %>"></td>
         </tr>
         <tr>
         <td><b>you have a fine of �</b></td><td><input name="logfines" value="<%= lfines
    %>"></td>      
         </tr>
    <tr>
    <td><b>your resources on loan</b></td><td><select name="logtitle">
    <%
    rs= SQLStatement.executeQuery("select title from book where resource_ID= (select resource_ID from
    resources where mem_ID='"+id+"')");     
    if (rs != null)
         while (rs.next()) {
         String title = rs.getString("title");
         if(ltitle==title)
              optionSelected =" selected";
         else
              optionSelected="";
    %>
         <option value='<%= title %>' <%=optionSelected %>>
    <%
         }//end of while
    }//end of if
    %>
    </select></td>
    </tr>
    <tr>
         <td colspan = "2">
              <center>
                   <input type="submit" value=" renew ">
              </center>
         </td>
         </tr>
    </form>
    <%
    else
    out.println("No records found");               
    // close connection
    rs.close();
    SQLStatement.close();
    Conn.close();
    %>
    </table>
    </body>
    </html>

    hi here is the error:
    Error: 500
    Location: /LSIB/login.jsp
    Internal Servlet Error:
    javax.servlet.ServletException: Syntax error or access violation: You have an error in your SQL syntax near 'from member where mem_ID=830099' at line 1
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(Unknown Source)
         at login_2._jspService(login_2.java:188)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.doForward(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.forward(Unknown Source)
         at org.apache.jasper.runtime.PageContextImpl.forward(Unknown Source)
         at validate_7._jspService(validate_7.java:121)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.core.ContextManager.internalService(Unknown Source)
         at org.apache.tomcat.core.ContextManager.service(Unknown Source)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Unknown Source)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(Unknown Source)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:484)
    Root cause:
    java.sql.SQLException: Syntax error or access violation: You have an error in your SQL syntax near 'from member where mem_ID=830099' at line 1
         at com.mysql.jdbc.MysqlIO.sendCommand(Unknown Source)
         at com.mysql.jdbc.MysqlIO.sqlQueryDirect(Unknown Source)
         at com.mysql.jdbc.MysqlIO.sqlQuery(Unknown Source)
         at com.mysql.jdbc.Connection.execSQL(Unknown Source)
         at com.mysql.jdbc.Connection.execSQL(Unknown Source)
         at com.mysql.jdbc.Statement.executeQuery(Unknown Source)
         at com.mysql.jdbc.jdbc2.Statement.executeQuery(Unknown Source)
         at login_2._jspService(login_2.java:100)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.doForward(Unknown Source)
         at org.apache.tomcat.facade.RequestDispatcherImpl.forward(Unknown Source)
         at org.apache.jasper.runtime.PageContextImpl.forward(Unknown Source)
         at validate_7._jspService(validate_7.java:121)
         at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(Unknown Source)
         at org.apache.tomcat.core.Handler.invoke(Unknown Source)
         at org.apache.tomcat.core.Handler.service(Unknown Source)
         at org.apache.tomcat.facade.ServletHandler.service(Unknown Source)
         at org.apache.tomcat.core.ContextManager.internalService(Unknown Source)
         at org.apache.tomcat.core.ContextManager.service(Unknown Source)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Unknown Source)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(Unknown Source)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(Unknown Source)
         at java.lang.Thread.run(Thread.java:484)

  • Need help in error fixing in Unicode platform in ECC 6.0

    Hello Experts,
    I am getting an error as below:
    "TEMP_HEX" must be a character-type data object (data type C, N, D, T     or STRING) .  for the code below:
    data: TEMP_HEX(1) TYPE X VALUE '7F',     
    temp_char type string 'plz help me'.
    REPLACE ' ' WITH TEMP_HEX INTO temp_char.
    could anyone suggest the solution for converting '7f' to character...
    plz its urgent i am having an issue about this...
    Thanks,
    Laxmi.

    Hi Laxmi,
    Can u pls explain exactly u want to do.
    becoz u can use replace syntax only with the data types
    Char,Numc,Date,String and Time . No other data type is allowed.can u explain what is ur need ???
    Regards,
    Balakumar.G.

  • Need help fixing errors that keep filling up the logs in console

    ***I keep getting error's that are slowing down my imac plz help i know nothing about mac's there all showing up in the conso*l*e**
    4/6/09 6:31:13 PM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[22] Error Login Window Application Started -- Threaded auth
    4/6/09 6:31:14 PM ntpdate[47] Error can't find host time.apple.com
    4/6/09 6:31:14 PM ntpdate[47] Error no servers can be used, exiting
    4/6/09 6:31:14 PM org.ntp.ntpd[14] Notice Error : nodename nor servname provided, or not known
    4/6/09 6:31:15 PM kernel Debug Auth result for: 00:22:3f:35:bb:66 MAC AUTH succeeded
    4/6/09 6:31:15 PM kernel Debug AirPort: Link Up on en1
    4/6/09 6:31:21 PM kernel Debug AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    4/6/09 6:31:22 PM loginwindow[22] Error Login Window Started Security Agent
    4/6/09 6:31:23 PM SecurityAgent[96] Error Showing Login Window
    4/6/09 6:31:27 PM kernel Debug AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    4/6/09 6:31:28 PM kextd[10] Notice writing kernel link data to /var/run/mach.sym
    4/6/09 6:31:31 PM kernel Debug BootCache: hit rate below threshold (3249 hits on 6499 lookups)
    4/6/09 6:31:34 PM SecurityAgent[96] Error User info context values set for joshglatt
    4/6/09 6:31:35 PM SecurityAgent[96] Error Login Window done
    4/6/09 6:31:35 PM loginwindow[22] Error Login Window - Returned from Security Agent
    4/6/09 6:31:35 PM loginwindow[22] Notice USER_PROCESS: 22 console
    4/6/09 6:31:35 PM com.apple.launchd[1] Notice (com.apple.UserEventAgent-LoginWindow[92]) Exited: Terminated
    4/6/09 6:31:38 PM Dock[111] Warning _DESCRegisterDockExtraClient failed 268435459
    4/6/09 6:31:39 PM /System/Library/CoreServices/coreservicesd[58] Error SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(josh glatt's Public Folder) returned -14135
    4/6/09 6:31:43 PM /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 14] Error CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    4/6/09 6:31:43 PM /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 14] Error CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    4/6/09 6:32:31 PM loginwindow[22] Notice DEAD_PROCESS: 0 console
    4/6/09 6:32:31 PM shutdown[188] Notice halt by joshglatt:
    4/6/09 6:32:31 PM shutdown[188] Notice SHUTDOWN_TIME: 1239067951 657374
    4/6/09 6:32:31 PM com.apple.loginwindow[22] Notice Shutdown NOW!
    4/6/09 6:32:31 PM mDNSResponder mDNSResponder-176.3 (Sep 30 2008 16:59:38)[21] Error stopping
    4/7/09 12:15:17 AM kernel Debug npvhash=4095
    4/6/09 6:32:31 PM com.apple.loginwindow[22] Notice System shutdown time has arrived
    4/7/09 12:15:16 AM com.apple.launchctl.System[2] Notice launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    4/7/09 12:15:16 AM com.apple.launchd[1] Warning (com.apple.blued) Unknown key for boolean: EnableTransactions
    4/7/09 12:15:16 AM com.apple.launchd[1] Warning (org.cups.cupsd) Unknown key: SHAuthorizationRight
    4/7/09 12:15:16 AM com.apple.launchd[1] Warning (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    4/7/09 12:15:17 AM kextd[10] Notice 417 cached, 0 uncached personalities to catalog
    4/7/09 12:15:17 AM kernel Debug hi mem tramps at 0xffe00000
    4/7/09 12:15:17 AM kernel Debug PAE enabled
    4/7/09 12:15:17 AM kernel Debug 64 bit mode enabled
    4/7/09 12:15:17 AM kernel Debug Darwin Kernel Version 9.6.0: Mon Nov 24 17:37:00 PST 2008; root:xnu-1228.9.59~1/RELEASE_I386
    4/7/09 12:15:17 AM kernel Debug standard timeslicing quantum is 10000 us
    4/7/09 12:15:17 AM kernel Debug vmpagebootstrap: 512352 free pages and 11936 wired pages
    4/7/09 12:15:17 AM kernel Debug migtable_maxdispl = 79
    4/7/09 12:15:17 AM kernel Debug 89 prelinked modules
    4/7/09 12:15:17 AM kernel Debug AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    4/7/09 12:15:17 AM kernel Debug AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    4/7/09 12:15:17 AM kernel Debug Loading security extension com.apple.security.TMSafetyNet
    4/7/09 12:15:17 AM kernel Debug calling mpopolicyinit for TMSafetyNet
    4/7/09 12:15:17 AM kernel Debug Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/7/09 12:15:17 AM kernel Debug Loading security extension com.apple.nke.applicationfirewall
    4/7/09 12:15:17 AM kernel Debug Loading security extension com.apple.security.seatbelt
    4/7/09 12:15:17 AM kernel Debug calling mpopolicyinit for mb
    4/7/09 12:15:17 AM kernel Debug Seatbelt MACF policy initialized
    4/7/09 12:15:17 AM kernel Debug Security policy loaded: Seatbelt Policy (mb)
    4/7/09 12:15:17 AM kernel Debug Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/7/09 12:15:17 AM kernel Debug The Regents of the University of California. All rights reserved.
    4/7/09 12:15:17 AM kernel Debug MAC Framework successfully initialized
    4/7/09 12:15:17 AM kernel Debug using 10485 buffer headers and 4096 cluster IO buffer headers
    4/7/09 12:15:17 AM kernel Debug IOAPIC: Version 0x20 Vectors 64:87
    4/7/09 12:15:17 AM kernel Debug ACPI: System State [S0 S3 S4 S5] (S3)
    4/7/09 12:15:17 AM kernel Debug mbinit: done
    4/7/09 12:15:17 AM kernel Debug Security auditing service present
    4/7/09 12:15:17 AM kernel Debug BSM auditing present
    4/7/09 12:15:17 AM kernel Debug rooting via boot-uuid from /chosen: 3F199FB1-9AA0-3B9D-BE52-F47A818547ED
    4/7/09 12:15:17 AM kernel Debug Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/7/09 12:15:17 AM kernel Debug BTCOEXIST on
    4/7/09 12:15:17 AM kernel Debug wl0: Broadcom BCM4328 802.11 Wireless Controller
    4/7/09 12:15:17 AM kernel Debug 5.10.38.27
    4/7/09 12:15:17 AM kernel Debug FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 001d4ffffe621222; max speed s800.
    4/7/09 12:15:17 AM kernel Debug Got boot device = IOService:/AppleACPIPlatformExpert/PCI0/AppleACPIPCI/SATA@1F,2/AppleICH8AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/WDC WD3200AAJS-40RYA0 Media/IOGUIDPartitionScheme/Customer@2
    4/7/09 12:15:17 AM kernel Debug BSD root: disk0s2, major 14, minor 2
    4/7/09 12:15:17 AM kernel Debug Jettisoning kernel linker.
    4/7/09 12:15:17 AM kernel Debug Resetting IOCatalogue.
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Matching service count = 0
    4/7/09 12:15:17 AM kernel Debug Previous Shutdown Cause: 5
    4/7/09 12:15:17 AM kernel Debug ** Device in slot: SLOT--1 **
    4/7/09 12:15:19 AM kernel Debug AppleIntelCPUPowerManagement: initialization complete
    4/7/09 12:15:21 AM kernel Debug [Bluetooth::CSRHIDTransition] switchToHCIMode (legacy)
    4/7/09 12:15:22 AM kernel Debug [Bluetooth::CSRHIDTransition] transition complete.
    4/7/09 12:15:22 AM kernel Debug [HCIController][configurePM] power parent ready after 1 tries
    4/7/09 12:15:24 AM rpc.statd[17] Notice statd.notify - no notifications needed
    4/7/09 12:15:25 AM bootlog[35] Notice BOOT_TIME: 1239088514 0
    4/7/09 12:15:27 AM fseventsd[26] Critical bumping event counter to: 0x804135 (current 0x0) from log file '00000000008036cb'
    4/7/09 12:15:27 AM DirectoryService[31] Alert Launched version 5.6 (v514.24)
    4/7/09 12:15:27 AM /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[22] Error Login Window Application Started -- Threaded auth
    4/7/09 12:15:27 AM kernel Debug yukon: Ethernet address 00:1b:63:a1:e4:30
    4/7/09 12:15:27 AM kernel Debug AirPort_Brcm43xx: Ethernet address 00:1c:b3:7a:7e:d0
    4/7/09 12:15:28 AM com.apple.launchd[1] Warning (com.apple.aslmanager) Throttling respawn: Will start in 4 seconds
    4/7/09 12:15:28 AM com.apple.SecurityServer[18] Notice Entering service
    4/7/09 12:15:28 AM mDNSResponder mDNSResponder-176.3 (Sep 30 2008 16:59:38)[21] Error starting
    4/7/09 12:15:28 AM /usr/sbin/ocspd[57] Alert starting
    4/7/09 12:15:29 AM kernel Debug AirPort: Link Down on en1
    4/7/09 12:15:29 AM configd[33] Notice setting hostname to "josh-glatts-imac.local"
    4/7/09 12:15:30 AM loginwindow[22] Error Login Window Started Security Agent
    4/7/09 12:15:30 AM SecurityAgent[73] Error Showing Login Window
    4/7/09 12:15:31 AM com.apple.launchd[1] Warning (com.apple.aslmanager) Throttling respawn: Will start in 1 seconds
    4/7/09 12:15:31 AM kernel Debug Auth result for: 00:22:3f:35:bb:66 MAC AUTH succeeded
    4/7/09 12:15:31 AM kernel Debug AirPort: Link Up on en1
    4/7/09 12:15:35 AM kextd[10] Notice writing kernel link data to /var/run/mach.sym
    4/7/09 12:15:37 AM kernel Debug AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    4/7/09 12:15:45 AM kernel Debug AppleYukon2: 00000000,00000000 sk98osx_dnet - recovering from missed interrupt
    4/7/09 12:15:52 AM SecurityAgent[73] Error User info context values set for joshglatt
    4/7/09 12:15:53 AM SecurityAgent[73] Error Login Window done
    4/7/09 12:15:53 AM loginwindow[22] Error Login Window - Returned from Security Agent
    4/7/09 12:15:53 AM loginwindow[22] Notice USER_PROCESS: 22 console
    4/7/09 12:15:53 AM com.apple.launchd[1] Notice (com.apple.UserEventAgent-LoginWindow[69]) Exited: Terminated
    4/7/09 12:15:53 AM /System/Library/CoreServices/coreservicesd[47] Error SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(josh glatt's Public Folder) returned -14135
    4/7/09 12:15:54 AM /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[8 7] Error CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    4/7/09 12:15:54 AM /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[8 7] Error CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    4/7/09 12:19:29 AM com.apple.firmwaresyncd[27] Notice kextload: /System/Library/Extensions/msdosfs.kext loaded successfully

    Most of the log entries are not errors, at least in the sense of unexpected problems that can't be recovered from. UNIX logs are very "chatty," filled with many comments only of interest to programmers.
    To pinpoint any real problems, it would help to know what specifically you do on your Mac that is slowing down, if you frequently see spinning "beach balls" when the pointer is over any particular application's windows or menus, if there are unusual notices associated with some processes, etc. IOW, aside from the log, what specifically is wrong?

Maybe you are looking for

  • Win 8.1 on E335

    My E335 takes forever to boot up with Win 7 and all the pre-installed Lenovo software so I did a clean install of Win 8.1 in dual boot.  It boots Win 8.1 in a fraction of the time of Win 7, and the only things from Win 7 that I miss are the camera an

  • Acrobat 9.0 crashing on start up

    I have the installed Adobe Acrobat reader v9.0 for a second time but each time I start it up I get the following error. The Error Message reads: Acrobat Reader 9.0 Event Type: InPageError P1: c000009c P2: 00000003 When I clcik on the 'details' tab, i

  • ERROR MESSAGES WHILE SYNCING IPHONE 3GS WITH ITUNES 11.0.1

    ERROR MESSAGES WHILE SYNCING IPHONE 3GS WITH ITUNES 11.0.1 I just upgraded to iTunes 11.0.1 and although my music, podcast and apps sync with my iPhone 3GS (Version 4.1), iCal and Address Book doesn't! I get the following error messages: After clicki

  • How to install printer help

    Hi, i've just bought the new Macbook Pro 15", i've never used Mac before, can anyone help me, i'm trying to install my printer Lexmark 2480 series. I thought it would automatically run & install but it didnt. I dont know what to do? Sorry if this is

  • Third Party Query

    Hi.. Which setting triggers automatic creation of PRN at the time of saving sales order? What is movement type used in third party scenario? Thanks in Advance