Urgent help, what do these exceptions mean

I was wondering what it means exactly when a InternalError(Ex02),
VirtualMachineError are thrown. im designing a programme which was working fine now suddenly it is throwing those errors, and for the life of me i cant figure out why and what they mean.
Please can someone help.

It means something really bad happened inside the JVM. And unless you want to mess with the JVM source code you are unlikely to fix it, nor usually figure out exactly what caused it.
It might also be caused by your environment, like trying to run a class file created with java 1.0 on a 1.3 jvm or something like that. Not likely, but possible.
Try redesigning your code and hope it goes away.
If you can reduce the code to a very small sample you could post it here and someone might be able to provide a more specific answer and/or a work around. (You need to provide the jvm version you are running under too.)

Similar Messages

  • What does throws exception mean?

    I know how to try and catch exceptions. I don't understand why some methods can simply throw an exception. What happens when the method throws an exception?
    No links please. I am just looking for a simple plain english answer in laymen terms.

    First of all throwable Exceptions have two subclasses: Error and Exception.
    Instances of Error are internal errors involving the JVM (runtime environment). There is not much you can do about these: Either catch them or throw them yourself. There are Runtime exceptions e.g ArrayOutOfBoundsException or NullPointerException. The RuntimeException and Error classes do not need to be specifically thrown by the programmer but instead are thrown by Java runtime itself. These are unchecked exceptions. And the exceptions you, as the programmer, should throw are other exceptions like the EOFException, or conveniently named 'checked exceptions'.
    When you throw these exceptions, or when Java does it for you, chances are that the application quits and show mysterious errors on the screen. When your program stops working without successfully finishing what it is supposed to do, an exception is thrown. An example is when you have to type the following in a program:
    public static void main(String[] args) throws IOException
    * adding a throws clause like this to your methods definition simply means
    * that the methods throws an exception if something goes wrong, not that it actually will.
    * But when this exception is actually thrown, it will be able to give you a very good idea
    * of what is wrong with your program and help you work towards fixing the issue.
    One may ask why these checks are in place, it is so that your program is less likely to crash with fatal errors because you know up front the kind of exceptions that can be thrown by the methods a program uses.

  • What does these messages mean

    I cannot get into my itunes because this message comes up. "A required iTunes component is not installed. Please repair or reinstall iTunes. (42404) "
    Then when I exit this message another one comes up. We could not complete your iTunes store request. "an unknown error occured (50)"
    Please help me to fix this.
    Grandmakat70

    zodmaner wrote:
    Hi, well today when starting up my box I noticed these two startup messages:
    :: Initiate Random Seed
    :: Removing LeftOver files
    What does these mean? And what program/service runs it? (And what 'left over files' is it removing?) I think I never see them before. Is these message appears because I just install sudo?
    Also when shutting down there is also a message concerning a Random Seed. (Saving Random Seed).  What is it doing?
    Well...  if your head over to your /etc/rc.sysinit, you'll see exactly what it does.  If I remember correctly, saving random seed is just saving your startup time because it is random, and removing leftover files is clearing out the /tmp/ directory.

  • Can you help me with these exceptions??

    Hi guys,
    from sunday i try to eliminate these exceptions from my jsf application and i've lost any confidence in my possibility to realize it.....
    It's surely a simple problem but i'm a newbie of jsf and java.
    These are the exadel msg
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: #{MyBean.retrieveblob}: javax.faces.el.EvaluationException: java.lang.NullPointerException
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:209)
         org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
    root cause
    javax.faces.FacesException: #{MyBean.retrieveblob}: javax.faces.el.EvaluationException: java.lang.NullPointerException
         com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:78)
         javax.faces.component.UICommand.broadcast(UICommand.java:312)
         javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
         javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
         com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.28 logs.
    ant these are the files
    MyBean.java
    package giu;
    import org.apache.myfaces.custom.fileupload.UploadedFile;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.StringTokenizer;
    import java.util.Vector;
    public class MyBean {
         private UploadedFile myFile;
         private String geneid=null;
        private int row=0;
        private int numberOfNumericColumns=0;
        private int col=0;
        String[]intest=null;
        private ArrayList rows = new ArrayList();
        Head h;
        byte middlerow=' ';
        byte endrow=';';
        byte[] data=null;
        Vector temp=new Vector(100000);
        String g=null;
        Riga r;
        Double val[];
        private String[] arraylinee;
        public boolean insRighe(Riga nuovo){
               return rows.add(nuovo);
        public List stampaRows(){
             return rows;}
        public Head stampaHead(){
             return h;}
        public byte[] getdata(){
             return data;
        public UploadedFile getMyFile() {
            return myFile;
        public void setMyFile(UploadedFile myFile) {
            this.myFile = myFile;
        public int getcol(){
             return col;
        public void setcol(int col){
             this.col=col;
        public int getrow(){
             return row;
        public void setrow(int row){
             this.row=row;
        public String[] getarraylinee(){
             return arraylinee;
        public void setarraylinee(String[] arraylinee){
             this.arraylinee=arraylinee;
    public String retrieveblob(){
              Database2 db = new Database2("nomeDB","root","shevagol");     
              try
              Connection dbo=db.getConnection();
              System.out.println("eccezione buona2");
                   System.out.println("eccezione buona2,5");
                   Statement st = dbo.createStatement();
                   System.out.println("eccezione buona3");
                   ResultSet rs;
                   rs = st.executeQuery("SELECT Data FROM tbl WHERE Nome='16'");
                   rs.first();
                   Blob blob = rs.getBlob("Data");
                   byte[] read = blob.getBytes(1, (int) blob.length());
                   st.close();
                   String lettura=new String(read);
                   String[] arraylinee=lettura.split(";");
                   /*for (int i = 0; i < arraylinee.length; i++) {
                     System.out.println(arraylinee);
              catch(SQLException e)
                   System.out.println("Si � verificato il seguente errore: " + e.getMessage());
                   e.printStackTrace();
              return "retrOk";
    This is my result.jsp page
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%@ page import="giu.MyBean" %>
    <%-- Instantiate class --%>
    <jsp:useBean id="myBean" class="giu.MyBean" scope="request"/>
    <html>
         <head>
              <title></title>
         </head>
         <body>
              <f:view>
                   <c:forEach items="${myBean.arraylinee}" var="linea" >
    <tr>
    <td>
    <c:out value="${linea}" />
    </td>
    </tr>
    </c:forEach>
              </f:view>
         </body>     
    </html>
    and these are web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC
    "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <context-param>
              <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
              <param-value>client</param-value>
         </context-param>
         <filter>
              <filter-name>ExtensionsFilter</filter-name>
              <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
              <init-param>
                   <param-name>uploadMaxFileSize</param-name>
                   <param-value>100m</param-value>
              </init-param>
              <init-param>
                   <param-name>uploadThresholdSize</param-name>
                   <param-value>100k</param-value>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>ExtensionsFilter</filter-name>
              <servlet-name>FacesServlet</servlet-name>
         </filter-mapping>
         <servlet>
              <servlet-name>FacesServlet</servlet-name>
              <servlet-class>
              javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>FacesServlet</servlet-name>
              <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
         <servlet-mapping>
              <servlet-name>FacesServlet</servlet-name>
              <url-pattern>*.faces</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    and faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
                                  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
    <managed-bean>
      <managed-bean-name>MyBean</managed-bean-name>
      <managed-bean-class>giu.MyBean</managed-bean-class>
      <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
      <from-view-id>/pages/MyForm.jsp</from-view-id>
      <navigation-case>
       <from-outcome>success</from-outcome>
       <to-view-id>/pages/MyResult.jsp</to-view-id>
      </navigation-case>
    </navigation-rule>
    <navigation-rule>
      <from-view-id>/pages/Login.jsp</from-view-id>
      <navigation-case>
       <from-outcome>Ok</from-outcome>
       <to-view-id>/pages/Menu.jsp</to-view-id>
      </navigation-case>
    </navigation-rule>
    <navigation-rule>
      <from-view-id>/pages/Menu.jsp</from-view-id>
      <navigation-case>
       <from-outcome>upload</from-outcome>
       <to-view-id>/pages/MyForm.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
       <from-outcome>admin</from-outcome>
       <to-view-id>/pages/UserForm.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
       <from-outcome>view</from-outcome>
       <to-view-id>/pages/ViewForm.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
       <from-outcome>register</from-outcome>
       <to-view-id>/pages/Register.jsp</to-view-id>
      </navigation-case>
    </navigation-rule>
    <navigation-rule>
      <from-view-id>/pages/ViewForm.jsp</from-view-id>
      <navigation-case>
       <from-outcome>Result</from-outcome>
       <to-view-id>/pages/Result.jsp</to-view-id>
      </navigation-case>
    </navigation-rule>
    </faces-config>I hope someone can helps me...............
    P.S.
    Can someone says me a good program to debug my applications...?
    I try with exadel but i find it bit intuitive....

    I don't know JSF, but it appears you haven't included part of your application - the one causing the error with the line: #{MyBean.retrieveblob}
    I would assume the error is that you instantiate the bean with the name "myBean" (<jsp:useBean id="myBean" class="giu.MyBean" scope="request"/>) then refer to it as "MyBean". Java is case sensitive.

  • HELP What does this Script Mean

    someone told me to go to this website barqs.com and all that came up was a code or java script and i am wondering if i was being fooled or hacked. plz tell me heres the script
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <c:set var="currpage" value="home" scope="request"/>
    <jsp:include page="_dispatch.jsp"/>
    what exactly does it mean can anyone tell me???

    Where are you downloading ML from? Have you bought it?

  • SOS!what ' s the exception means?

    Exception in thread "main" com.solarmetric.kodo.runtime.UserException: The
    column "ID" was set to multiple different values in this SQL statement.
    This column was initially set to "1", and was subsequently set to "null".
    This is probably because the schema mapping uses a single column for
    multiple fields on the assumption that the fields will always store the
    same underlying value, but the assumption was broken.

    Jian-
    How is the relation defined in your .jdo file? Are you using application
    identity for these classes, or just datastore identity?
    Also, what is the "presistenObject" call you mention below? Did you mean
    to say "makePersistent"?
    In article <bof4rs$btd$[email protected]>, jian xu wrote:
    hi Marc:
    here are 2 table, one is account,anthoer is account_detail,
    the accountdetail have fk:acct_id refer to the account's id
    and the schema.xml is:
    <?xml version="1.0" encoding="UTF-8"?>
    <schemas>
    <schema name="RAINER">
    <table name="XJ_ACCOUNT">
    <pk name="PK" column="ID"/>
    <column name="ACCOUNT_NO" type="varchar" size="20"/>
    <column name="BALANCE" type="decimal" size="22"/>
    <column name="CREATE_DATE" type="timestamp" size="7"/>
    <column name="ID" type="decimal" not-null="true" size="22"/>
    <column name="NAME" type="varchar" size="20"/>
    </table>
    <table name="XJ_ACCOUNT_DETAIL">
    <pk name="PK_DTL" column="DETAIL_ID"/>
    <column name="ACCT_ID" type="decimal" size="22"/>
    <column name="BALANCE" type="decimal" size="22"/>
    <column name="DETAIL_ID" type="decimal" not-null="true"
    size="22"/>
    <column name="LAST_BALANCE" type="decimal" size="22"/>
    <column name="MODIFY_DATE" type="timestamp" size="7"/>
    <fk name="FK" delete-action="exception"
    to-table="RAINER.XJ_ACCOUNT" column="ACCT_ID"/>
    </table>
    </schema>
    </schemas>
    some account balance-1000 and add a new record to accountDetail
    the code are:
    pm=...
    pm.currentTransaction().begin()
    XjAccount acct=...
    acct.setBalance(acct.getBalance()-1000);
    XjAcctountDetail acctDetail=new XjAccountDetail(....);
    pm.presistenObject(acctDetail);
    pm.currentTransaction().commit();
    pm.close();
    then the exception are throwed,so why?
    thanks
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Urgent help required "java.lang.Exception: Connection reset"

    Hi Everyone,
    I am getting error message when I access cluster database from grid console.
    Error      java.lang.Exception: Connection reset
    I am unable to create jobs or do other admin stuff on the database, I have searched alot , restarted the repository database, restarted the emgc components, even the agents but of no use. The agent status showing OK as under.
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.3.0
    OMS Version : 10.2.0.3.0
    Protocol Version : 10.2.0.2.0
    Agent Home : /app/oracle/agent/agent10g/rac2.tawaf
    Agent binaries : /app/oracle/agent/agent10g
    Agent Process ID : 19646
    Parent Process ID : 19629
    Agent URL : https://rac2.tawaf:3872/emd/main
    Repository URL : https://tawafapp.tawaf:1159/em/upload
    Started at : 2009-04-02 11:26:10
    Started by user : oracle
    Last Reload : 2009-04-02 11:26:10
    Last successful upload : 2009-04-02 12:27:42
    Total Megabytes of XML files uploaded so far : 3.48
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 86.22%
    Last successful heartbeat to OMS : 2009-04-02 12:30:20
    Agent is Running and Ready
    The error reported in emoms.log is as under.
    2009-04-02 12:37:25,073 [MetricCollector:RACHOMETAB_THREAD600:60] ERROR rt.RacMetricCollectorTarget _getAllData.184 - oracle.sysman.emSDK.emd.comm.CommException: Connection reset
    oracle.sysman.emSDK.emd.comm.CommException: Connection reset
    at oracle.sysman.emSDK.emd.comm.EMDClient.getResponseForRequest(EMDClient.java:1543)
    at oracle.sysman.emSDK.emd.comm.EMDClient.getMetrics(EMDClient.java:915)
    at oracle.sysman.emo.rac.perform.metric.rt.RacHomeTab._getAllData(RacHomeTab.java:180)
    at oracle.sysman.emo.rac.perform.metric.rt.RacHomeTab.getData(RacHomeTab.java:91)
    at oracle.sysman.emo.perf.metric.eng.MetricCached.collectCachedData(MetricCached.java:404)
    at oracle.sysman.emo.perf.metric.eng.MetricCollectorThread._collectCachedData(MetricCollectorThread.java:596)
    at oracle.sysman.emo.perf.metric.eng.MetricCollectorThread.run(MetricCollectorThread.java:320)
    at java.lang.Thread.run(Thread.java:534)
    can anyone help me as its very urgent for me to clear this error.
    thanks

    this error is also reported against the cluster database.
         Thread: SeverityLoad https://rac2.tawaf:3872/emd/main java.sql.SQLException: ORA-20613: Severity for unknown target. (target guid = 1938FC9C72DDAC01E0C0F268FFC5F6AD) ORA-06512: at "SYSMAN.EM_VIOLATION_CHECKS", line 174 ORA-04088: error during execution of trigger 'SYSMAN.EM_VIOLATION_CHECKS' Error occured at line : 43, File name:Severity

  • ReSampling? Hot Swapping? What do these terms mean?

    After years of digital audio I still run into terms that don't really mean anything specific to me.
    Could someone shed some light on what these two things refer to?
    Thanks a bunch!

    eMagnus wrote:
    After years of digital audio I still run into terms that don't really mean anything specific to me.
    Could someone shed some light on what these two things refer to?
    Thanks a bunch!
    "Sampling" refers to those extravagant food fairs where you can stroll about and sample cuisine from different countries.
    And Hot Swapping... that's for swingers only!
    Very loose explanations follow.
    Sampling.... the act of digitally recording a sound source or part of a sound source for use as either an instrument or effect. Drum libraries like Addictive Drums or some of the kits/instruments included with Logic are "sampled".
    Recording each part of a real drum set (or -any- instrument) and then building an instrument out of it is sampling. You can even sample samples..
    Hot Swapping has to do with plugging/unplugging USB or Firewire devices while the computer/device is still on. Hot swappable devices are supposed to be recognized by the host machine when plugged in.
    pancenter-

  • What does these codees mean?

    Pls help me with the meaning of the following codes,
    1. int count;
    for (int i = 0; i<COUNT.length; i++)
    count = Integer.parseInt(COUNT);
    2. if(POINT.compareTo("R") != 0)
    3.if (COUNT_02.compareTo("0") != 0)
    4.result.addValue(EAN_04count_EAN+3);
    5.result.addValue(EAN_04count_EAN+3);
    6.result.addValue(Quantitycount_qty);
    Also can u suggest some urls where some documaents can be available to enhance Java skills to develop UDFs.
    Points will be awarded. Pls help. I hav been assigned huge responsibilities in XI, though I am an Abaper!
    PS: Can u suggest any PDF where I can come to know about the different syntax, commands as used above, so that I can develop my own java codes....
    Arnab .

    Hi,
    1. int count;
       for (int i = 0; i<count.length; i++)
           count = Integer.parseInt(count);
    Ans: Here Count is a variable and all the count variables should be changed to an Object.
    2. if(POINT.compareTo("R") != 0)
    Ans: Here POINT should be a String Constant
    public int compareTo(String anotherString)
    Compares two strings lexicographically. The comparison is based on the Unicode value of each character in the strings. The character sequence represented by this String object is compared lexicographically to the character sequence represented by the argument string. The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal; compareTo returns 0 exactly when the equals(Object) method would return true.
    3. if (COUNT_02.compareTo("0") != 0)
    Ans : Same as (2)
    4. result.addValue(EAN_04count_EAN+3);
    Ans: Here what is result ?  Check for result.addValue method in Java API @ http://java.sun.com/j2se/1.5.0/docs/api/
    5.result.addValue(EAN_04count_EAN+3);
    Ans: Same as 4
    6.result.addValue(Quantitycount_qty);
    Ans: Same as 4
    Regards,
    Ramana Kumar. A

  • ****urgent help*** What is AII system ?

    Hi,
    Our client wanted to run AII application . but we are not sure what is this for ?
    What is AII system ?
    How we can use this ? Is there a seperate license for this instance . Can we install AII on exsting R/3 or XI system?
    Please suggest asap.We have client discussion very soon.
    - Kristene

    Hi
    AII (Auto Id Infrastructure) is an application that helps in a RFID integration.
    You can connect RFID hardware devices to AII application and run business rules to enable tracking of assets to which RFID tags are applied.
    Yes there's a separate license for it. You can install AII on existing R/3. But better way is to install separately and connect to it via XI.
    For more details refer to these links:
    http://service.sap.com/scm
    http://help.sap.com/saphelp_autoid40/helpdata/en/index.htm
    New to RFID
    Hope this helps.
    Regards,
    Ashish

  • What do these logs mean and do I need to worry about them?

    ACK! I've been having trouble with iPhoto and so went to check the logs and crash reporter for info. While there, I found a couple of alarming items: a console.log with info I don't understand and a NetworkSpyAlertErr.log, which reads:
    nsapAgent: kext write Failed!
    nsapAgent: init failed. kext write failed.
    nsapAgent: kext write Failed!
    nsapAgent: init failed. kext write failed.
    nsapAgent: kext write Failed!
    nsapAgent: init failed. kext write failed.
    nsapAgent: kext write Failed!
    nsapAgent: init failed. kext write failed.
    nsapAgent: kext write Failed!
    nsapAgent: init failed. kext write failed.
    Um...not sure what Network Spy agent is, as it sure isn't anything that I've installed. Is this a normal part of the mac OS? When I opened the above log, console also opened with this report:
    Mac OS X Version 10.4.10 (Build 8R218)
    2007-10-30 11:03:54 -0600
    2007-10-30 11:03:55.447 loginwindow[81] FSResolveAliasWithMountFlags returned err = -43
    2007-10-30 11:03:57.574 HPEventHandler[355]: DebugAssert: Third Party Client: ((__null) != m_lock && 0 == (*__error())) Can't create semaphore lock [/Volumes/Development/Projects/HP/mac-software/mac-software/core/HPEventHandler /Sources/HPTMNotificationManager.cpp:60]
    2007-10-30 11:04:11.514 MagicMenuHotKeyDaemon[363] Started
    Child: Can't read length for data
    Created child to sync device with pid 373...
    Waiter has started running...
    Waiter is done running
    Sending final status from child helper tool back to parent...
    Unsafe JavaScript attempt to access frame with URL http://www.theindychannel.com/news/14455773/detail.html from frame with URL http://ad.doubleclick.net/adi/N4441.Tacoda/B2166690.2;sz=160x600;click=http://an ad.tacoda.net/ads/ad13692a-map.cgi/BCPG78014.108755.106765/SZ=160X600A/V=2.1S//R EDIRURL=;ord=80595?. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/2007/TECH/10/30/vampire.electronics.ap/index.html from frame with URL http://ad.doubleclick.net/adi/N3941.cnn/B2492131.28;sz=728x90;click=http://ads.c nn.com/event.ng/Type=click&FlightID=86804&AdID=115255&TargetID=6869&Segments=934 ,2274,2607,2743,3030,3285,4008,4898,5217,6298,6520,6582,7465,8463,8796,9307,9496 ,9779,9781,9784,9853,9937,10033,10375,10956,11085,11877&Values=1588&Redirect=;or d=cnsqtAk,bdsozhntbinx?. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/2007/TECH/10/30/vampire.electronics.ap/index.html from frame with URL http://ad.n2434.doubleclick.net/adi/N2434.cnn/B2523462;sz=160x600;click=http://a ds.cnn.com/event.ng/Type=click&FlightID=87840&AdID=118718&TargetID=16970&Segment s=934,2276,2743,2872,3030,3285,3800,4008,6298,6520,6582,7463,8463,8796,9279,9308 ,9496,9779,9781,9784,9853,10028,10375,10511,11087&Values=1588&Redirect=;ord=cxtb Rkr,bdsozhotbioc?. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/ from frame with URL http://view.atdmt.com/BID/iview/trnrbbri1790000001bid/direct/01/bvNWKpj,bdsozizt bmKh?click=http://ads.cnn.com/event.ng/Type%3dclick%26FlightID%3d85378%26AdID%3d 112854%26TargetID%3d16956%26Segments%3d730,2259,2743,3030,3285,3464,3800,5216,62 01,6298,6301,6520,6582,7324,7464,8342,8463,8796,9276,9306,9496,9632,9742,9779,97 81,9784,9853,10031,10088,10381,11086,11360,11418,11636,11915,12036,12044%26Value s%3d1588%26Redirect%3d. Domains must match.
    (event handler):Object (result of expression cnnSend) does not allow calls.
    (event handler):Object (result of expression cnnSend) does not allow calls.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/2007/SHOWBIZ/TV/10/30/tv.nbc.leno.ap/index.html from frame with URL http://ad.doubleclick.net/adi/N2870.cnn/B1880310.3;sz=160x600;click=http://ads.c nn.com/event.ng/Type=click&FlightID=62996&AdID=85296&TargetID=16970&Segments=657 ,2276,2743,2872,3030,3285,3800,4008,4558,6298,6520,6582,7463,8463,8796,9279,9308 ,9496,9779,9781,9784,9853,10028,10377,10511,11087&Targets=619,15951,2724,16970,1 515,11145,14921,18265&Values=30,46,50,61,73,82,91,100,110,150,682,917,1137,1285, 1557,1588,1598,1599,1600,1601,1697,1815,2675,2727,2743,4413,4418,4442,39896,4718 1,47734,48047,49553,49702,52263,52509,52738,52897&RawValues=ZIP%2C80201&Redirect =;ord=clWNguz,bdsoziRtbnmu?. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/2007/SHOWBIZ/TV/10/30/tv.nbc.leno.ap/index.html from frame with URL http://view.atdmt.com/BID/iview/trnrbbri1790000002bid/direct/01/bNjvlId,bdsoziRt bnms?click=http://ads.cnn.com/event.ng/Type%3dclick%26FlightID%3d85377%26AdID%3d 112853%26TargetID%3d16563%26Segments%3d657,2274,2607,2743,3030,3285,4008,4558,48 98,5217,6298,6520,6582,7465,8463,8796,9307,9496,9779,9781,9784,9853,9937,10033,1 0377,10956,11085,11877%26Values%3d1588%26Redirect%3d. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.cnn.com/2007/SHOWBIZ/TV/10/30/tv.nbc.leno.ap/index.html from frame with URL http://ad.doubleclick.net/adi/N2870.cnn/B1880310.3;sz=160x600;click=http://ads.c nn.com/event.ng/Type=click&FlightID=64204&AdID=85299&TargetID=16970&Segments=657 ,2276,2743,2872,3030,3285,3800,4008,4558,6298,6520,6582,7463,8463,8796,9279,9308 ,9496,9779,9781,9784,9853,10028,10377,10511,11087&Targets=619,15951,2724,16970,1 515,11145,14921,18265&Values=30,46,50,61,73,82,91,100,110,150,682,917,1137,1285, 1557,1588,1598,1599,1600,1601,1697,1815,2675,2727,2743,4413,4418,4442,39896,4718 1,47734,48047,49553,49702,52263,52509,52738,52897&RawValues=ZIP%2C80201&Redirect =;ord=cwkeRIN,bdsoziWtbnox?. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.macrumors.com/ from frame with URL http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-2224409576101196&d t=1193764276702&format=728x90as&output=html&correlator=1193764276702&channel=7440724589&url=http%3A%2F%2Fwww. macrumors.com%2F&color_bg=CBD3DE&color_text=000000&color_link=CC0000&color_url=0 08000&color_border=CBD3DE&ad_type=text_image&ga_vid=280090412.1193203054&ga_sid= 1193764275&ga_hid=892053144&ga_fc=true&flash=9&u_h=1200&u_w=1920&u_ah=1129&u_aw= 1920&u_cd=32&u_tz=-360&u_his=3&u_java=true&u_nplug=16&unmime=151. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://www.macrumors.com/ from frame with URL http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-2224409576101196&d t=1193764276702&format=728x90as&output=html&correlator=1193764276702&channel=7440724589&url=http%3A%2F%2Fwww. macrumors.com%2F&color_bg=CBD3DE&color_text=000000&color_link=CC0000&color_url=0 08000&color_border=CBD3DE&ad_type=text_image&ga_vid=280090412.1193203054&ga_sid= 1193764275&ga_hid=892053144&ga_fc=true&flash=9&u_h=1200&u_w=1920&u_ah=1129&u_aw= 1920&u_cd=32&u_tz=-360&u_his=3&u_java=true&u_nplug=16&unmime=151. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://forums.macrumors.com/showthread.php?t=376423 from frame with URL http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-2224409576101196&d t=1193764644335&format=728x90as&output=html&correlator=1193764644335&channel=8355507924&url=http%3A%2F%2Fforu ms.macrumors.com%2Fshowthread.php%3Ft%3D376423&color_bg=CBD3DE&color_text=000000 &color_link=CC0000&color_url=008000&color_border=CBD3DE&ad_type=text_image&ga_vi d=280090412.1193203054&ga_sid=1193764275&ga_hid=382955828&ga_fc=true&flash=9&u_h =1200&u_w=1920&u_ah=1129&u_aw=1920&u_cd=32&u_tz=-360&u_his=4&u_java=true&u_nplug =16&unmime=151. Domains must match.
    Unsafe JavaScript attempt to access frame with URL http://forums.macrumors.com/showthread.php?t=376423 from frame with URL http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-2224409576101196&d t=1193764644335&format=728x90as&output=html&correlator=1193764644335&channel=8355507924&url=http%3A%2F%2Fforu ms.macrumors.com%2Fshowthread.php%3Ft%3D376423&color_bg=CBD3DE&color_text=000000 &color_link=CC0000&color_url=008000&color_border=CBD3DE&ad_type=text_image&ga_vi d=280090412.1193203054&ga_sid=1193764275&ga_hid=382955828&ga_fc=true&flash=9&u_h =1200&u_w=1920&u_ah=1129&u_aw=1920&u_cd=32&u_tz=-360&u_his=4&u_java=true&u_nplug =16&unmime=151. Domains must match.
    [367] http://discussions.apple.com/resources/merge - Can't find variable: tinyMCE
    The "unsafe JavaScript attempts" are mostly referring to websites I've accessed this am.
    My concerns are:
    -What the heck is Network Spy Alert?
    -From the console log, any ideas what the HPEventHandler is or what the "HPTMNotificationManager" refers to? (Yes, I do have an HP printer but haven't sent anything to print today, so not sure why events need handling, unless this is some sort of automatic log-in thing?)
    -What is "MagicMenuHotKeyDaemon 363"?
    -What constitutes an "Unsafe JavaScript attempt?"
    My question, in a nutshell, is whether this is all par for the course and I'm just noticing it because I happened to be looking into the iPhoto issue, or is there reason to feel paranoid at the mention of "spy," "Third Party Client," "sync" and "unsafe?"
    Any info would be much appreciated!

    You have (at least) two different issues going on there.
    The first one (nsapAgent) is unrelated to the second (HPEventHandler's debug statement).
    nsapAgent is a component of Allume's Internet Cleanup, so I suspect it is something you installed - or at least someone there did.
    It may be that you're running an old version that is not compatible with your machine/configuration, but that's hard to tell.
    I'm pretty sure that the Unsafe JavaScript messages are coming from this app, too.
    I would expect that Allume's site would be a better source of information for that particular one.
    As for the HPEventHandler, I'm guessing you have some kind of HP device there - a printer, scanner, or some such. The error message indicates that app had a problem, but it's impossible to be more specific without more information.

  • What do these errors mean ? Web Logic

    I am attempting to start Web Logic Server, and Web Logic Server for my application installed on my machine. I get the following errors, completely new to web Logic so I don't know what they mean. But it seems to be a privelege issue related to the admin account. Please note that I have in no way changed any settings to my admin account recently, nor my password or anything. Everything was working fine for a week until yesterday, and I can't think of anything I have changed. Any input is appreciated. Highlighted the main errors in bold.
    When starting Web Logic Server for my application:
    <Nov 21, 2010 3:49:48 PM CST> <Notice> <Server> <BEA-002613> <Channel "DefaultSe
    cure[1]" is now listening on 127.0.0.1:7002 for protocols iiops, t3s, ldaps, htt
    ps.>
    <Nov 21, 2010 3:49:48 PM CST> <Notice> <Server> <BEA-002613> <Channel "DefaultSe
    cure" is now listening on 10.0.2.15:7002 for protocols iiops, t3s, ldaps, https.
    >
    <Nov 21, 2010 3:49:48 PM CST> <Notice> <Server> <BEA-002613> <Channel "Default[1
    ]" is now listening on 127.0.0.1:7001 for protocols iiop, t3, ldap, snmp, http.>
    <Nov 21, 2010 3:49:48 PM CST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 10.0.2.15:7001 for protocols iiop, t3, ldap, snmp, http.>
    <Nov 21, 2010 3:49:48 PM CST> <Notice> <WebLogicServer> <BEA-000331> <Started We
    bLogic Admin Server "examplesServer" for domain "wl_server" running in Developme
    nt Mode>
    <Nov 21, 2010 3:49:50 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RUNNING>
    <Nov 21, 2010 3:49:50 PM CST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>
    <Nov 21, 2010 3:50:00 PM CST> <Error> <Security> <BEA-090513> <ServerIdentity fa
    iled validation, downgrading to anonymous.>
    <Nov 21, 2010 3:50:01 PM CST> <Error> <Security> <BEA-090513> <ServerIdentity fa
    iled validation, downgrading to anonymous.>
    <Nov 21, 2010 3:50:01 PM CST> <Error> <Security> <BEA-090513> <*ServerIdentity fa*
    iled validation, downgrading to anonymous.>
    <Nov 21, 2010 3:50:01 PM CST> <Warning> <RMI> <BEA-080003> <RuntimeException thr
    own by rmi server: weblogic.rmi.internal.AdminAccessOnlyServerRef@1f, implementa
    tion: 'weblogic.server.channels.RemoteChannelServiceImpl@2332930', oid: '31', im
    plementationClassName: 'weblogic.server.channels.RemoteChannelServiceImpl'
    java.lang.SecurityException: Method 'getAdministrationURL' cannot be invoked wi
    thout administrator access.
    java.lang.SecurityException: Method 'getAdministrationURL' cannot be invoked wit
    hout administrator access
    at weblogic.rmi.internal.AdminAccessOnlyServerRef.getWorkManager(AdminAc
    cessOnlyServerRef.java:29)
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:316
    at weblogic.rmi.internal.BasicServerRef.dispatch(BasicServerRef.java:944
    at weblogic.rjvm.RJVMImpl.dispatchRequest(RJVMImpl.java:1138)
    at weblogic.rjvm.RJVMImpl.dispatch(RJVMImpl.java:1020)
    Truncated. see log file for complete stacktrace
    when starting Web Logic Server for my application:
    <Nov 21, 2010 4:15:19 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Nov 21, 2010 4:17:42 PM CST> <Error> <org.apache.beehive.netui.pageflow.interna
    l.AdapterManager> <BEA-000000> <ServletContainerAdapter manager not initialized
    correctly.>
    <Nov 21, 2010 4:17:46 PM CST> <Notice> <Log Management> <BEA-170027> <The Server
    has established connection with the Domain level Diagnostic Service successfull
    y.>
    <Nov 21, 2010 4:17:48 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to ADMIN>
    <Nov 21, 2010 4:17:48 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RESUMING>
    <Nov 21, 2010 4:17:49 PM CST> <Emergency> <Security> <BEA-090087> <Server failed
    to bind to the configured Admin port. The port may already be used by another p
    rocess.>
    <Nov 21, 2010 4:17:49 PM CST> <Error> <Server> <BEA-002606> <Unable to create a
    server socket for listening on channel "Default[1]". The address 127.0.0.1 might
    be incorrect or another process is using port 7001: java.net.BindException: Add
    ress already in use: JVM_Bind.>
    <Nov 21, 2010 4:17:49 PM CST> <Critical> <WebLogicServer> <BEA-000362> <Server f
    ailed. Reason: Server failed to bind to any usable port. See preceeding log mess
    age for details.>
    <Nov 21, 2010 4:17:49 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to FAILED>
    <Nov 21, 2010 4:17:49 PM CST> <Error> <WebLogicServer> <BEA-000383> <A critical
    service failed. The server will shut itself down>
    <Nov 21, 2010 4:17:49 PM CST> <Error> <Server> <BEA-002606> <Unable to create a
    server socket for listening on channel "Default". The address 10.0.2.15 might be
    incorrect or another process is using port 7001: java.net.BindException: Addres
    s already in use: JVM_Bind.>
    <Nov 21, 2010 4:17:49 PM CST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to FORCE_SHUTTING_DOWN>

    The message weblogic.server.channels.RemoteChannelServiceImpl@2332930', oid: seems like there is some trouble
    with your OID.
    Another message in your loggng:
    Unable to create a server socket for listening on channel "Default". The address 10.0.2.15 might be incorrect or another process is using port 7001: java.net.BindException: Address already in use: JVM_Bind.
    Tells you there is already a process running on port 7001 (you can use the netstat -a command to check if the port 7001 is taken).

  • Firewall Log - what do these entries mean?

    I am especially concerned with the XXX is listening entries. What does this mean? Are they being blocked? I access the internet through a wireless router connected to DSL with that firewall and my computer's firewall turned on. I did find the Macworld Firewall article and have changed my firewall settings to match what they say. Just curious as to who is listening and what this means.
    I have replaced the computer name with ****
    == Partial Log Below ======================
    May 24 09:37:25 ****-computer Firewall[49]: Deny cupsd data in from 192.168.0.198:631 uid = 0 proto=17
    May 24 09:37:55: --- last message repeated 1 time ---
    May 24 09:44:14 ****-computer Firewall[50]: qmasterd is listening from 0.0.0.0:49152 uid = 0 proto=6
    May 24 09:46:47 ****-computer Firewall[50]: krb5kdc is listening from :::88 uid = 0 proto=6
    May 24 09:46:47 ****-computer Firewall[50]: krb5kdc is listening from 0.0.0.0:88 uid = 0 proto=6
    May 24 09:50:52 ****-computer Firewall[50]: Deny cupsd data in from 192.168.0.198:631 uid = 0 proto=17
    May 24 09:51:22: --- last message repeated 1 time ---
    === Since checking "Set access for specific services..." and "Enable Stealth Mode" the log looks like this =================
    May 24 10:59:05 ****-computer Firewall[50]: Deny cupsd data in from 192.168.0.198:631 uid = 0 proto=17
    May 24 10:59:35: --- last message repeated 1 time ---
    May 24 11:12:03 ***s-computer Firewall[50]: Stealth Mode connection attempt to TCP 192.168.0.196:49489 from 17.254.2.136:443
    May 24 11:12:33: --- last message repeated 3 times ---
    Message was edited by: Tim Rogan

    Just turn on WPA security on your wireless router, and use a password that is not in any dictionary, and then you can pretty much assume nobody's going to be able to join your network.
    Oh, and that last IP address in your log?
    May 24 11:12:03 ***s-computer Firewall50: Stealth Mode connection attempt to TCP 192.168.0.196:49489 from 17.254.2.136:443
    Looked it up at arin.net and it belongs to...
    Search ARIN WHOIS for: 17.254.2.136
    OrgName: Apple Computer, Inc.
    OrgID: APPLEC-3
    Address: 20740 Valley Green Drive, MS32E
    City: Cupertino
    StateProv: CA
    PostalCode: 95014
    Country: US
    NetRange: 17.0.0.0 - 17.255.255.255
    CIDR: 17.0.0.0/8
    NetName: APPLE-WWNET
    NetHandle: NET-17-0-0-0-1
    Parent:
    NetType: Direct Assignment
    NameServer: NSERVER.APPLE.COM
    NameServer: NSERVER2.APPLE.COM
    NameServer: NSERVER.EURO.APPLE.COM
    NameServer: NSERVER.ASIA.APPLE.COM
    Comment:
    RegDate: 1990-04-16
    Updated: 2000-05-23
    RTechHandle: ZA42-ARIN
    RTechName: Apple Computer, Inc.
    RTechPhone: +1-408-974-7777
    RTechEmail: [email protected]

  • What do these symbols mean? (FCP6)

    Here are a couple of screen shots. I guess the yellow triangle with the exclamation point and the red/green lines are telling me that the white in this shot is blown out, right? What does the green circle with the checkmark mean?
    Thanks!
    Andy

    They mean you have 'Show Excess Luma' turned on in the Canvas or Viewer windows.  The exclamation point means that the luminance levels are too high - the green check mark means they are within proper limits.
    -DH

  • What does these errors mean?

    1. [07/Nov/2002:16:38:29 -0800] NSMMReplicationPlugin - Unable to acquire replica "
    cn=Sample1, cn=replica, cn="o=company.com", cn=mapping tree, cn=config (host myhost
    , port 389)": there is no replicated area "o=company.com" on the consumerserver. Replication is aborting.
    2. [07/Nov/2002:18:34:11 -0800] NSMMReplicationPlugin - Unable to send a startReplication extended operation to consumer "cn=Sample1, cn=replica, cn="o=company.co
    m", cn=mapping tree, cn=config (host myhost, port 389)". Will retry later.
    Any help is appreciated..
    Thanks

    It means you need to
    1) create the suffix and db for o=company.com on the consumer.
    2) enable the replica for o=company.com on the consumer
    Please refer to the documentation about setting up replication for more information.

Maybe you are looking for

  • Display Pref Overscan Options

    Throughout this forum people are having mixed results connecting a Mac Mini to a HDTV. Often noted for overscan issues is "deselecting" the overscan option in System Preferences/Displays. Can anyone tell me why when my Mini is connected to my Sony HD

  • It is possible to print any name 200 times without using loops?

    How to print any name 200 times without using loops and recurssive function and that to in java?

  • Pixelated images when exporting to a PDF

    I am having difficulty every time I export to a PDF. Many of the pictures in side the .indd file are extremely pixelated. They have all been linked properly and are high resolution to begin with. Not sure what is going on. Any suggestions and/or help

  • Need to Publish Portal on internet -introducing SSL & Apache infront Portal

    Hi, Recently we have installed Portal server u2013 EP 7.01 and our backend systems are ECC and BW.   UME Data source is Database Only. On Portal server we have one central instance and one server node.  Currently we are accessing our Portal through h

  • Can't see my albums

    i downloaded directX 9 like it told me to and now its saying iTunes is unable to browse album covers on this computer. any suggestions