Int dereferencing error question

Hey what does the error "int cannt be dereferenced" mean. I get it when im calling a method with a variable read in from a file?

Java has two families of types: primitive types and reference types.
Primitves: byte, char, short, int, long, float, double, boolean.
References: Refer to objects, interfaces and arrays. People often simply think of them as "objects," which is a good enough approximation in many cicrcumstances.
To dereference is when you use the dot to get to a member (variable or method) that a reference refers to.
Object obj = new Object();
System.out.println(obj.hashCode());In the second line, we dereference obj to access its hashCode method.
Primitives (like int) don't have members, so you can't dereference them.int i = 5;
System.out.println(i.hashCode()); // can't do it. i doesn't refer to an object, so there are no methods associated with it

Similar Messages

  • Int dereferencing error when transforming 2d array

    Int WorkArray = new Int[9];
    WorkArray.set( new int[] { 6, 3, 0, 7, 4, 1, 8, 5, 2 } );
              for( Tloop = 0; Tloop <= 8; Tloop++ )
                   TransForms[0][Tloop].set( WorkArray.getValueAt( Tloop ) );
              }I get the "Int Cannot be Dereferenced" error on the line beginning with TransForms.
    The definition of the array TransForms is private int[][] TransForms = new int[9][9];

    That was a mistake yes, ive refined the code more but it still gives me this damn "Int cannot be dereferenced" error.
             int[] WorkArray = new int[9];
         int[] rotate90 = {6,3,0,7,4,1,8,5,2};
              WorkArray = rotate90;
              for( Tloop = 0; Tloop <= 8; Tloop++ )
                   TransForms[0][Tloop].setInt( WorkArray [Tloop] );
              }basically the 0-8 array represents a 3*3 grid and this code is to create a transformation that represents that grid rotated right by 90 degrees. I have 8 more of these bits of code to do other transformations. Obviously none of them work as yet. But if I get this one fixed then i can apply this fix to the others.

  • Why doesnt itunes let me restore my ipohne 4 it gives me a error question saying cannot restore.

    Why doesnt itunes let me restore my ipohne 4 it gives me a error question saying cannot restore.

    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.
    http://support.apple.com/kb/TS3694#error1

  • CLI Output filter - show int counters errors

    Hi,
    On catalyst and Nexus, I would like to filter the lines with 0 0 0 0 0 from the "show int counters errors" result.
    Result without filter :
    Switch#sh int counters errors
    Port        Align-Err    FCS-Err   Xmit-Err    Rcv-Err UnderSize OutDiscards
    Gi1/1               0          0          0          0         0           0
    Gi1/2               0          0          0          0         0           0
    Gi1/3               0          0          0          0         0           0
    Gi1/4               0          0          0          0         0           0
    Gi1/5               0          0          0          0         0           0
    Gi1/6               0          0          0          0         5500     0
    Gi1/7               0          0          0          0         0           0
    Gi1/8               0          0          0          0         0           6005
    My expected result
    Switch#sh int counters errors | exclude or grep ???
    Port        Align-Err    FCS-Err   Xmit-Err    Rcv-Err UnderSize OutDiscards
    Gi1/6               0          0          0          0         5500     0
    Gi1/8               0          0          0          0         0           6005
    Thank you for your help.
    Regards.
    Ju

    These kind of lines are filtered:
    sh int counters errors | ex 0(.*)0(.*)0(.*)0(.*)0(.*)0
    Gi1/0/12            0           0           0           0          0           83
    Gi2/0/20            0           0           0           0          0      5343759
    Gi2/0/21            0           0           0           0          0      5343135
    Gi2/0/22            0           0           0           0          0      5344382
    Po2                 0           0           0           0          0          104
    Thank you for your help.
    Ju

  • "int cannot be dereferenced" error.. help me please

    I'm working with an array list class called PersonList and it uses attributes from a normal class called Person.
    I would like to make this method PrintPerson inside the PersonList class that should search for a specific Person given the ID as parameter to the method. the method should print all info of the Person if found, otherwise a message saying id is not valid.
    I solved it like this:
    public void PrintPerson(int id)
              System.out.println("Enter ID of the person ");
              id = Stdin.readInteger();
              //search the ID if it is in the List
              int i=0;
              while
              ((i<next)&&(!(list.getID().equals(id))))
              i++;
              //if found
              if (i<next)
                   list[i].OutputWindow();}//display the object ouput of this ID
                   else{
                   System.out.println("The following ID: " id "is not valid!");
              }//end if
         }// end of method
    my problem is with this code:
    ((i<next)&&(!(list.getID().equals(id))))
    I get this error "int cannot be dereferenced"
    what should I do? help me please
    -- Matt

    list.getID() == id                                                                                                                                                                                                                               

  • Disk0s2 error questions

    Alright, so I have heard about this error, and one of my friends got it today.
    The problem started out as "my computer won't load and has the spinning gear". I then told her to boot in Safe Mode, but it would continuously load. Should it take 2 hours for it to boot? I don't think so...but maybe I am wrong.
    Since that fails, Apple says to boot into single user mode, which is fine. Put in my /sbin/fsck -fy command, and let it do it's thing. Then we see that error.
    So, here are my questions. Note I have my own copies of the grey installation disk, but she does not have hers.
    * Pertaining to the 5-step checkup by running /fsck -fy, how long should this take? It got all the way up to Invalid Record Count (4, 4xxx), with 2 lines of disk0s2 and Invalid Node every now and then. It seems to be stuck/slow on step 4.
    * Is it safe to use my startup/installation disk solely for running Disk Utility? I am almost sure this is due to bad permissions, or simply a bad hard drive.
    * Would Target Disk Mode help? We both have Macs and I know about that feature, but since we don't have a Firewire 800 cable, can't do this. My mac is fine (better repair my permissions!)
    * Any other further steps that can be taken? She is visiting an Apple Store this weekend, so I am merely curious as to what can be done.
    Macbook Specs:
    2010 Macbook Pro 13'
    OS X Snow Leopard (unsure of which version, but I would say 10.6.3,5,7 or 8)

    xtremecarbon wrote:
    I have heard about this error
    What error?
    Invalid Record Count (4, 4xxx), with 2 lines of disk0s2 and Invalid Node every now and then. It seems to be stuck/slow on step 4.
    Disk directory disk0s2 is damaged. Can't tell what disk that is (this is dynamic identifier), but, if you're running SL, in all likelihood that's the 2nd partition (slice) of the internal disk, ie, main partition on the internal disk.
    You can try to (a) boot from an alternate device (eg, Install DVD or ext'l drive) and attempt to fix the problem with Disk Utility, (b) rebuild the disk directory with DiskWarrior, (c) boot from an alternate device, reformat the disk (which will destroy everything currently on it) and restore everything from the backup. In any event, if you don't have a backup, you're in trouble. Pray.
    Is it safe to use my startup/installation disk solely for running Disk Utility?
    To verify or repair the disk? Yes.
    I am almost sure this is due to bad permissions
    Nothing whatever to do with permissions.
    Would Target Disk Mode help?
    No. Can't be used if you can't boot the Mac from the int'l drive.
    Any other further steps that can be taken?
    If there is a current backup, no. If there isn't, boot from an alternate device and try to copy as much data which hasn't been backed up as possible. The Apple Store does not do data recovery.

  • OWB Process Flow - Transition Warinig OR Error - Question

    Hi all,
    I have a question. In a Simple Process Flow I have:
    Start -> Mapping -> Warning -> Email
    -> Erro -> Email
    ->Sucess - End
    Is necessary use 3 Transition ?
    Can I do only 2 Transition like
    Start -> Mapping -> Warning OR Error -> Email
    ->Sucess - End
    How can I do "Warning OR Error" on a Transition?
    If i put any condition on the Transition:
    Start -> Mapping -> Email
    ->Sucess - End
    It means
    Start -> Mapping -> Warning OR Error -> Email
    ->Sucess - End
    Thanks

    If i put any condition on the Transition:
    Start -> Mapping -> Email
    ->Sucess - End
    It means
    Start -> Mapping -> Warning OR Error -> Email
    ->Sucess - End
    it exactly what you need
    Edited by: hungsao on Oct 17, 2012 9:10 PM

  • Quick else if error question

    I am getting an else if error, and I have no clue why. Can somebody help me out? Thanks in advance!
    PrimaryColors.java:71: 'else' without 'if'
              else if(buttonString.equals("Blue"));
    PrimaryColors.java:73: 'else' without 'if'
              else if(buttonString.equals("Red"));
    PrimaryColors.java:75: 'else' without 'if'
              else
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JButton;
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.FlowLayout;
    import java.awt.Color;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class PrimaryColors extends JFrame implements ActionListener
         public static final int WIDTH = 300;
         public static final int HEIGHT = 200;
         private JPanel yellowPanel;
         private JPanel bluePanel;
         private JPanel redPanel;
         public PrimaryColors()
              super("Primary Colors");
              setSize(WIDTH, HEIGHT);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setLayout(new BorderLayout());
              JPanel biggerPanel = new JPanel();
              biggerPanel.setLayout(new GridLayout(3, 1));
              yellowPanel = new JPanel();
              yellowPanel.setBackground(Color.BLACK);
              biggerPanel.add(yellowPanel);
              bluePanel = new JPanel();
              bluePanel.setBackground(Color.BLACK);
              biggerPanel.add(bluePanel);
              redPanel = new JPanel();
              redPanel.setBackground(Color.BLACK);
              biggerPanel.add(redPanel);
              add(biggerPanel, BorderLayout.CENTER);
              JPanel buttonPanel = new JPanel();
              buttonPanel.setBackground(Color.BLACK);
              buttonPanel.setLayout(new FlowLayout());
              JButton yellowButton = new JButton("Yellow");
              yellowButton.setBackground(Color.YELLOW);
              yellowButton.addActionListener(this);
              buttonPanel.add(yellowButton);
              JButton blueButton = new JButton("Blue");
              blueButton.setBackground(Color.BLUE);
              blueButton.addActionListener(this);
              buttonPanel.add(blueButton);
              JButton redButton = new JButton("Red");
              redButton.setBackground(Color.RED);
              redButton.addActionListener(this);
              buttonPanel.add(redButton);
              add(buttonPanel, BorderLayout.WEST);
         public void actionPerformed(ActionEvent e)
              String buttonString = e.getActionCommand();
              if(buttonString.equals("Yellow"));
                   yellowPanel.setBackground(Color.YELLOW);
              else if(buttonString.equals("Blue"));
                   bluePanel.setBackground(Color.BLUE);
              else if(buttonString.equals("Red"));
                   redPanel.setBackground(Color.RED);
              else
                   System.out.println("Unexpected error");
         public static void main(String[] args)
              PrimaryColors gui = new PrimaryColors();
              gui.setVisible(true);
    }

    Get into the habit of always using braces around if's and loops. Consider the following.
    if(condition)
        firstLine;
    else
        anotherLine;Then later you need to change to code.
    if(condition)
        firstLine;
        secondLine; //always executed
    else // error else without if
        anotherLine;By not using braces in the first place can lead to errors if you forget to include then when the code changes.

  • Procedure Syntax Error Question

    Hi all, new here but working on an intro database application project and am getting stuck on this procedure, any feedback would be greatly appreciated
    create or replace procedure "PROJ_NEW_TRANSACTION"
    (arg_transid IN NUMBER,
    arg_totalcost IN NUMBER,
    arg_pmtmethod IN VARCHAR2,
    arg_amtpaid IN NUMBER,
    arg_register IN NUMBER,
    arg_customer IN NUMBER)
    is
    ws_availcash number;
    insufficient_change exception;
    begin
    SELECT avail_cash into ws_availcash FROM proj_register WHERE arg_register = reg_id;
    IF (arg_amtpaid - arg_totalcost) > ws_availcash
    THEN raise insufficient_change;
    END IF;
    INSERT into proj_transaction values (arg_transid, arg_totalcost, arg_pmtmethod, arg_amptpaid, arg_register, arg_customer);
    EXCEPTION
    WHEN insufficient_change THEN
    raise_application_error(-20000, 'Insufficient change in register');
    end;
    This is the syntax to the procedure, I have 3 tables (proj_transaction, proj_customer, proj_register) and am trying to get this procedure to ensure there is enough change in the register, and if not raise the exception and display the message indicated. I have to add more aspects to the procedure later, but I need to know why this isn't working. I keep getting the errors (Line 19, Position 81, PL/SQL: ORA-00984: column not allowed here) and (Line 19, Position 1, PL/SQL: SQL Statement ignored) -- Line 19 starts with the INSERT statement
    These are the tables I am using:
    create table proj_transaction
    (trans_id      number(3) primary key,
    total_cost      number(6,2) not null,
    pmt_method      varchar2(6) check(pmt_method in('Cash', 'Credit')),
    amt_paid     number(6,2) not null,
    register     number(3) references proj_register(reg_id),
    customer     number(3) references proj_customer(cust_id));
    create table proj_register
    (reg_id      number(3) primary key,
    avail_cash     number(6,2) not null,
    accounts_rec     number(6));
    create table proj_customer
    (cust_id     number(3) primary key,
    money_amt      number(6,2),
    cust_name     varchar(15));

    Welcome to the OTN forums.
    As advice for a new user, please do not duplicate posts. {thread:id=2220607}
    And this question is better placed in the {forum:id=75} forum. Please try to get a feel for the different forums and their typical topics/discussions.
    If you had looked up the error message, you would have found:
    >
    ORA-00984 column not allowed here
    Cause: A column name was used in an expression where it is not permitted, such as in the VALUES clause of an INSERT statement.
    Action: Check the syntax of the statement and use column names only where appropriate.

  • Compilation Error Question

    Please help. Tried to create Microsoft HTML (chm), which was requested by programmer/manager. I keep getting the following error:
    Warning: Data loss in converting Index data using choosen language.
    Warning: Data loss in converting Index data using choosen language. HHC5010: Error: Cannot open "c:\Projects\1.chm". Compilation stopped.
    This warning comes with the "stop file" error that was addressed in another post. I eliminate this problem by deleting the stop file.
    If you have a resolution, please let me know. Thank you.

    too many curlies  public static void main(String[] args) {
      block:
      for (int j=1; j<=5; j++) {
        for (int i=1; i<= 5; i++) {
          if (i == 3) continue block;
         System.out.println(j + " , " +i);
          } //end for
        } // end for
      } // end main

  • Bayes Error Question after Spamassassin Upgrade

    I have just upgraded to Version 3.1.5 of the Spamassassin and I am getting the following readout when after I run spamassassin -D --lint
    xserve1:/var/amavis root# spamassassin -D --lint
    [18757] dbg: logger: adding facilities: all
    [18757] dbg: logger: logging level is DBG
    [18757] dbg: generic: SpamAssassin version 3.1.5
    [18757] dbg: config: score set 0 chosen.
    [18757] dbg: util: running in taint mode? yes
    [18757] dbg: util: taint mode: deleting unsafe environment variables, resetting PATH
    [18757] dbg: util: PATH included '/bin', keeping
    [18757] dbg: util: PATH included '/sbin', keeping
    [18757] dbg: util: PATH included '/usr/bin', keeping
    [18757] dbg: util: PATH included '/usr/sbin', keeping
    [18757] dbg: util: final PATH set to: /bin:/sbin:/usr/bin:/usr/sbin
    [18757] dbg: message: ---- MIME PARSER START ----
    [18757] dbg: message: main message type: text/plain
    [18757] dbg: message: parsing normal part
    [18757] dbg: message: added part, type: text/plain
    [18757] dbg: message: ---- MIME PARSER END ----
    [18757] dbg: dns: is Net::DNS::Resolver available? yes
    [18757] dbg: dns: Net::DNS version: 0.59
    [18757] dbg: diag: perl platform: 5.008006 darwin
    [18757] dbg: diag: module installed: Digest::SHA1, version 2.10
    [18757] dbg: diag: module installed: Archive::Tar, version 1.30
    [18757] dbg: diag: module installed: IO::Zlib, version 1.04
    [18757] dbg: diag: module installed: DB_File, version 1.814
    [18757] dbg: diag: module installed: HTML::Parser, version 3.36
    [18757] dbg: diag: module installed: MIME::Base64, version 3.05
    [18757] dbg: diag: module installed: Net::DNS, version 0.59
    [18757] dbg: diag: module installed: Net::SMTP, version 2.29
    [18757] dbg: diag: module installed: Mail::SPF::Query, version 1.999001
    [18757] dbg: diag: module installed: IP::Country::Fast, version 604.001
    [18757] dbg: diag: module installed: Razor2::Client::Agent, version 2.82
    [18757] dbg: diag: module installed: Net::Ident, version 1.20
    [18757] dbg: diag: module not installed: IO::Socket::INET6 ('require' failed)
    [18757] dbg: diag: module installed: IO::Socket::SSL, version 1.0
    [18757] dbg: diag: module installed: Time::HiRes, version 1.68
    [18757] dbg: diag: module installed: DBI, version 1.52
    [18757] dbg: diag: module installed: Getopt::Long, version 2.34
    [18757] dbg: diag: module installed: LWP::UserAgent, version 2.033
    [18757] dbg: diag: module installed: HTTP::Date, version 1.47
    [18757] dbg: ignore: using a test message to lint rules
    [18757] dbg: config: using "/etc/mail/spamassassin" for site rules pre files
    [18757] dbg: config: read file /etc/mail/spamassassin/init.pre
    [18757] dbg: config: read file /etc/mail/spamassassin/v310.pre
    [18757] dbg: config: read file /etc/mail/spamassassin/v312.pre
    [18757] dbg: config: using "/usr/local/share/spamassassin" for sys rules pre files
    [18757] dbg: config: using "/usr/local/share/spamassassin" for default rules dir
    [18757] dbg: config: read file /usr/local/share/spamassassin/10_misc.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_advance_fee.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_anti_ratware.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_body_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_compensate.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_dnsbl_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_drugs.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_fake_helo_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_head_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_html_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_meta_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_net_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_phrases.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_****.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_ratware.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/20_uri_tests.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/23_bayes.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_accessdb.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_antivirus.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_body_tests_es.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_body_tests_pl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_dcc.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_dkim.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_domainkeys.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_hashcash.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_pyzor.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_razor2.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_replace.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_spf.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_textcat.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/25_uribl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_de.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_fr.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_it.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_nl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_pl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/30_text_pt_br.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/50_scores.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_awl.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_dk.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_dkim.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_spf.cf
    [18757] dbg: config: read file /usr/local/share/spamassassin/60_whitelist_subject.cf
    [18757] dbg: config: using "/etc/mail/spamassassin" for site rules dir
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_adult.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_bayes_poison_nxm.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum0.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum1.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_evilnum2.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_html.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_obfu.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_oem.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_random.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sare_stocks.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/70_sc_top200.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/99_FVGT_Tripwire.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/Chinese_rules.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/local.cf
    [18757] dbg: config: read file /etc/mail/spamassassin/weeds.cf
    [18757] dbg: config: using "/private/var/root/.spamassassin/user_prefs" for user prefs file
    [18757] dbg: config: read file /private/var/root/.spamassassin/user_prefs
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::URIDNSBL from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Hashcash from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Hashcash=HASH(0x1c828d8)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::SPF from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::SPF=HASH(0x1d91a64)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Pyzor from @INC
    [18757] dbg: pyzor: network tests on, attempting Pyzor
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Pyzor=HASH(0x1c66f5c)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::Razor2 from @INC
    [18757] dbg: razor2: razor2 is available, version 2.82
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::Razor2=HASH(0x466db0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::SpamCop from @INC
    [18757] dbg: reporter: network tests on, attempting SpamCop
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::SpamCop=HASH(0x468e68)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::AWL from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::AWL=HASH(0x1dd02d0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::AutoLearnThreshold from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::AutoLearnThreshold=HASH(0x1e34100)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::WhiteListSubject from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::WhiteListSubject=HASH(0x1e36be0)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::MIMEHeader from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::MIMEHeader=HASH(0x1e39d30)
    [18757] dbg: plugin: loading Mail::SpamAssassin::Plugin::ReplaceTags from @INC
    [18757] dbg: plugin: registered Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x1e3e260)
    [18757] dbg: config: adding redirector regex: /^http:\/\/chkpt\.zdnet\.com\/chkpt\/\w+\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/www(?:\d+)?\.nate\.com\/r\/\w+\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/.+\.gov\/(?:.*\/)?externalLink\.jhtml\?.*url=(.*?)(?:&.*)?$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/redir\.internet\.com\/.+?\/.+?\/(.*)$/i
    [18757] dbg: config: adding redirector regex: /^http:\/\/(?:.*?\.)?adtech\.de\/.*(?:;|\|)link=(.*?)(?:;|$)/i
    [18757] dbg: config: adding redirector regex: m'^http.*?/redirect\.php\?.*(?<=[?&])goto=(.*?)(?:$|[&\#])'i
    [18757] dbg: config: adding redirector regex: m'^https?:/*(?:[^/]+\.)?emf\d\.com/r\.cfm.*?&r=(.*)'i
    [18757] dbg: config: adding redirector regex: m'/(?:index.php)?\?.*(?<=[?&])URL=(.*?)(?:$|[&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/url\?.*?(?<=[?&])q=(.*?)(?:$|[&\#] )'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/search\?.*?(?<=[?&])q=[^&]*?(?<=%2 0|..[=+\s])site:(.*?)(?:$|%20|[\s+&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/search\?.*?(?<=[?&])q=[^&]*?(?<=%2 0|..[=+\s])(?:"|%22)(.*?)(?:$|%22|["\s+&\#])'i
    [18757] dbg: config: adding redirector regex: m'^http:/*(?:\w+\.)?google(?:\.\w{2,3}){1,2}/translate\?.*?(?<=[?&])u=(.*?)(?:$ |[&\#])'i
    [18757] warn: config: failed to parse line, skipping: scare RCVD_IN_NJABL_SPAM 3.0
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x1e3e260) implements 'finish_parsing_end'
    [18757] dbg: replacetags: replacing tags
    [18757] dbg: replacetags: done replacing tags
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: config: score set 1 chosen.
    [18757] dbg: message: ---- MIME PARSER START ----
    [18757] dbg: message: main message type: text/plain
    [18757] dbg: message: parsing normal part
    [18757] dbg: message: added part, type: text/plain
    [18757] dbg: message: ---- MIME PARSER END ----
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: dns: name server: 209.198.128.11, family: 2, ipv6: 0
    [18757] dbg: dns: testing resolver nameservers: 209.198.128.11, 209.198.128.27
    [18757] dbg: dns: trying (3) google.com...
    [18757] dbg: dns: looking up NS for 'google.com'
    [18757] dbg: dns: NS lookup of google.com using 209.198.128.11 succeeded => DNS available (set dns_available to override)
    [18757] dbg: dns: is DNS available? 1
    [18757] dbg: metadata: X-Spam-Relays-Trusted:
    [18757] dbg: metadata: X-Spam-Relays-Untrusted:
    [18757] dbg: metadata: X-Spam-Relays-Internal:
    [18757] dbg: metadata: X-Spam-Relays-External:
    [18757] dbg: message: no encoding detected
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'parsed_metadata'
    [18757] dbg: uridnsbl: domains to query:
    [18757] dbg: dns: checking RBL sbl-xbl.spamhaus.org., set sblxbl-lastexternal
    [18757] dbg: dns: checking RBL sa-accredit.habeas.com., set habeas-firsttrusted
    [18757] dbg: dns: checking RBL sbl-xbl.spamhaus.org., set sblxbl
    [18757] dbg: dns: checking RBL sa-other.bondedsender.org., set bsp-untrusted
    [18757] dbg: dns: checking RBL combined.njabl.org., set njabl-lastexternal
    [18757] dbg: dns: checking RBL combined.njabl.org., set njabl
    [18757] dbg: dns: checking RBL combined-HIB.dnsiplists.completewhois.com., set whois
    [18757] dbg: dns: checking RBL list.dsbl.org., set dsbl-lastexternal
    [18757] dbg: dns: checking RBL bl.spamcop.net., set spamcop
    [18757] dbg: dns: checking RBL sa-trusted.bondedsender.org., set bsp-firsttrusted
    [18757] dbg: dns: checking RBL combined-HIB.dnsiplists.completewhois.com., set whois-lastexternal
    [18757] dbg: dns: checking RBL dnsbl.sorbs.net., set sorbs-lastexternal
    [18757] dbg: dns: checking RBL dnsbl.sorbs.net., set sorbs
    [18757] dbg: dns: checking RBL iadb.isipp.com., set iadb-firsttrusted
    [18757] dbg: check: running tests for priority: 0
    [18757] dbg: rules: running header regexp tests; score so far=0
    [18757] dbg: rules: ran header rule __HAS_MSGID ======> got hit: "<"@lint_rules>"
    [18757] dbg: rules: ran header rule NO_REAL_NAME ======> got hit: "[email protected]
    [18757] dbg: rules: "
    [18757] dbg: rules: ran header rule __MSGID_OK_DIGITS ======> got hit: "1159381766"
    [18757] dbg: spf: no suitable relay for spf use found, skipping SPF-helo check
    [18757] dbg: eval: all '*From' addrs: [email protected]
    [18757] dbg: eval: all '*To' addrs:
    [18757] dbg: spf: no suitable relay for spf use found, skipping SPF check
    [18757] dbg: rules: ran eval rule NO_RELAYS ======> got hit
    [18757] dbg: spf: cannot get Envelope-From, cannot use SPF
    [18757] dbg: spf: def_spf_whitelist_from: could not find useable envelope sender
    [18757] dbg: rules: ran eval rule __UNUSABLE_MSGID ======> got hit
    [18757] dbg: spf: spf_whitelist_from: could not find useable envelope sender
    [18757] dbg: rules: ran eval rule MISSING_HEADERS ======> got hit
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=3.188
    [18757] dbg: rules: ran body rule __NONEMPTY_BODY ======> got hit: "I"
    [18757] dbg: uri: running uri tests; score so far=3.188
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: bayes: not scoring message, returning undef
    [18757] dbg: bayes: opportunistic call attempt failed, DB not readable
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=3.188
    [18757] dbg: rules: running full-text regexp tests; score so far=3.188
    [18757] dbg: info: entering helper-app run mode
    [18757] dbg: info: leaving helper-app run mode
    [18757] dbg: razor2: part=0 engine=4 contested=0 confidence=0
    [18757] dbg: razor2: results: spam? 0
    [18757] dbg: razor2: results: engine 8, highest cf score: 0
    [18757] dbg: razor2: results: engine 4, highest cf score: 0
    [18757] dbg: util: current PATH is: /bin:/sbin:/usr/bin:/usr/sbin
    [18757] dbg: pyzor: pyzor is not available: no pyzor executable found
    [18757] dbg: pyzor: no pyzor found, disabling Pyzor
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'check_tick'
    [18757] dbg: check: running tests for priority: 500
    [18757] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x18796d0) implements 'check_post_dnsbl'
    [18757] dbg: rules: running meta tests; score so far=3.188
    [18757] info: rules: meta test DIGEST_MULTIPLE has undefined dependency 'DCC_CHECK'
    [18757] info: rules: meta test SARE_OBFU_CIALIS has undefined dependency 'SARE_OBFU_CIALIS2'
    [18757] info: rules: meta test FP_MIXED_****3 has undefined dependency 'FP_PENETRATION'
    [18757] dbg: rules: running header regexp tests; score so far=4.666
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=4.666
    [18757] dbg: uri: running uri tests; score so far=4.666
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=4.666
    [18757] dbg: rules: running full-text regexp tests; score so far=4.666
    [18757] dbg: check: running tests for priority: 1000
    [18757] dbg: rules: running meta tests; score so far=4.666
    [18757] dbg: rules: running header regexp tests; score so far=4.666
    [18757] dbg: config: using "/private/var/root/.spamassassin" for user state dir
    [18757] dbg: locker: safe_lock: created /private/var/root/.spamassassin/auto-whitelist.lock.xserve1.topequip.com.18757
    [18757] dbg: locker: safe_lock: trying to get lock on /private/var/root/.spamassassin/auto-whitelist with 0 retries
    [18757] dbg: locker: safe_lock: link to /private/var/root/.spamassassin/auto-whitelist.lock: link ok
    [18757] dbg: auto-whitelist: tie-ing to DB file of type DB_File R/W in /private/var/root/.spamassassin/auto-whitelist
    [18757] dbg: auto-whitelist: db-based [email protected]|ip=none scores 0/0
    [18757] dbg: auto-whitelist: AWL active, pre-score: 4.666, autolearn score: 4.666, mean: undef, IP: undef
    [18757] dbg: auto-whitelist: DB addr list: untie-ing and unlocking
    [18757] dbg: auto-whitelist: DB addr list: file locked, breaking lock
    [18757] dbg: locker: safe_unlock: unlink /private/var/root/.spamassassin/auto-whitelist.lock
    [18757] dbg: auto-whitelist: post auto-whitelist score: 4.666
    [18757] dbg: rules: running body-text per-line regexp tests; score so far=4.666
    [18757] dbg: uri: running uri tests; score so far=4.666
    [18757] dbg: rules: running raw-body-text per-line regexp tests; score so far=4.666
    [18757] dbg: rules: running full-text regexp tests; score so far=4.666
    [18757] dbg: check: is spam? score=4.666 required=2
    [18757] dbg: check: tests=MISSING_HEADERS,MISSING_SUBJECT,NO_REAL_NAME,NO_RECEIVED,NO_RELAYS,TO_CC_ NONE
    [18757] dbg: check: subtests=__HAS_MSGID,__MSGID_OK_DIGITS,__MSGID_OK_HOST,__NONEMPTY_BODY,__SANE_M SGID,__UNUSABLE_MSGID
    [18757] warn: lint: 1 issues detected, please rerun with debug enabled for more information
    I am concerned with the following -
    [18757] dbg: bayes: no dbs present, cannot tie DB R/O: /private/var/root/.spamassassin/bayes_toks
    [18757] dbg: bayes: not scoring message, returning undef
    [18757] dbg: bayes: opportunistic call attempt failed, DB not readable
    I know that I have a failure with the IO::Socket::INET6 also.
    I am also not getting (never have gotten) the BAYES tag when I look at the Raw Source on Spam Emails. I am assuming that error above could be the issue.
    Any help on this would be greatly appreciated. I love this discussion group and it has helped me out of a bind more than once!
    Thanks in advance for your time.
    G5 Power Mac   Mac OS X (10.4.7)  

    Latest news!
    I just looked at a spam email and I see that it is tagged here is the info
    X-Spam-Status: No, hits=-1.827 tagged_above=-999 required=2 tests=BAYES_00,
    DIET_1
    Now I am still concerned about the error I listed above about the Bayes DB. Any help would be great.

  • ITunes 7 Unknown Error question.

    http://docs.info.apple.com/article.html?artnum=304318
    I have been using that document to help me solve this problem, but when I try to disable Safemode in Quicktime, after I close the window, the button checks itself, even after I hit apply, so I go back and uncheck it again, and it reverts itself. I think this is the problem, because I've tried option 2 and it still doesn't work. Any ideas?
    Dell Demension 5100   Windows XP  

    "The iTunes application could not be opened. An unknown error occurred (-200)."
    the -200 is caused by a problem with your QuickTime. (iTunes needs a fully functional QuickTime in order to work properly.)
    the first thing we'll try is a careful standalone QT 7.1.3 reinstall.
    download and save a copy of the QT 7.1.3 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1.3 Installers … get the one that doesn’t mention itunes
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)

  • Another 2048 error question

    I have Windows XP Pro and the latest version of Quicktime.
    Recently I recorded a video with my Pentax Optio W20 video camera which records in *.MOV format. The video plays on the camera with sound no problem. I copied the video from the SD Card to my harddisk and when I try to view the video with Quicktime I get:
    "Error -2048: Couldn't open the file xxxxxx.mov because it is not a file that QuickTime understands."
    I emailed the file to my buddy and the file plays without issue on his laptop (WinXP). So the file is a working file and is not corrupt or missing anything.
    I've searched on this site and others and it seems this is a common issue when someone is trying to play a different file format with QuickTime, however this is a *.MOV flie! It should play without issue. What gives? HELP!
    --Z

    Here is my second plea for help.
    I have since taken the files to a post production house and they also cannot open the larger ones. they say the pc has a 2 gig limit. Is this true? why is this not documented.
    if no one can answer the above, perhaps someone can be so kind to tell me where I can get an answer if not on this forum. thanks!

  • Discoverer error question

    Hi,
    I had a Discoverer user receive the following error message when trying to log into Discoverer. The user waited for a while and then was able to log in. I suspect his Java might be corrupted but I wanted to see if there was anything else I should look at
    "Unable to connect to the Discoverer server: null. Please contract your Oracle Application server administrator."
    Thanks,
    Carlos

    Hi
    While Java could be a cause I think it is highly unlikely. More likely you could have had a network issue or the server was temporarilly unavailable.
    Michael

  • html:errors question

    I have a JSP file,and I use <html:errors> in this page,but it raise error,my code is follows:
    <%@ taglib uri="/WEB-INF/struts-form.tld" prefix="html" %>
    <html>
    <head>
    <link rel="stylesheet" href="style.css" type="text/css">
    </head>
    <html:errors/>
    <html:form method="post" action="log.do">
    <html:text property="abc" /><html:errors property="abc"/>
    </html:form> and my Form is follows:
    public ActionErrors validate(ActionMapping mapping,HttpServletRequest request) {
    ActionErrors errors = new ActionErrors();       
    if(abc!=null && abc.length()>0){
       errors.add("abc",new ActionError(" error.abc.required"));
    return errors;
    } When I run it,it raise following error:
    org.apache.jasper.JasperException: /index.jsp(8,15) Attribute property invalid for tag errors according to TLD
    org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
    org.apache.jasper.servlet.JspServletWrapper.service (JspServletWrapper.java:375)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java :802)
    org.apache.struts.action.ActionServlet.processValidate(ActionServlet.java:2149)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1565)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java :510)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    I have looked up <html:errors> API,I find it have property attribute:
    property Name of the property for which error messages should be displayed. If not specified, all error messages (regardless of property) are displayed. (RT EXPR)
    Why raise above error when I use <html:errors property="abc"/> ? How to do with it?
    Thanks in advance!

    Maybe this piece of code might help you
    <tr>
    <td align="center"><logic:messagesPresent>
    <html:messages id="error">
    <span id="error"><li><%=error%></li></span>
    </html:messages>
    </logic:messagesPresent>
    <span id="error"><c:out value="${errorsNolog}"/></span>
    </td>
    </tr>

Maybe you are looking for

  • Not able to clear out a formula field value when variables are equal to 0

    I am trying to calculate the difference between a formula field from a main report and a formula field from a subreport. When i run the report i get a correct difference calculation only when both formula fields have a value different than 0. When bo

  • I have some software problems of running matlab script node in the LabVIEW program.

    Hi there, I wrote a simple matlab code, like x= 1, y = x*2. Then I tried to put them into matlab script node in LabVIEW. However, when I ran the program, I couldn't run and Labiew show some error.  Then I tried the method talked before on this forum.

  • Loss of color vibrancy

    I've noticed a significant decrease in the color vibrancy/saturation after uploading photos from iweb to the .mac server. Has anyone else observed this and is there a solution?

  • Adding new fields mara

    hi friends, adding new fields to mara by using append structure . how will insert data to that fields. thanks.

  • Sequence: possible to use sequence in "Data" tab

    Hello, I have one question concerning the "Data" tab in Developer which makes it possible to enter rows like in an excel sheet. Is it possible to use a sequence in a direct way here? Entering "<sequence_name>".nextval or ""<sequence_name>".currval" j