Special characters an issue in reading email from server?

I have an email application that uses javamail 1.4.1 that grabs emails out of flat files and displays the messages on the screen. Until recently, all email was sent within the business, but now they are able to receive emails from any email provider. We've been seeing issues where parts of messages go missing, even links to attachments that don't get displayed to the screen. All of the correct information is in the flat files, but it doesn't get displayed. Does Javamail do anything to handle special characters or is there anything you think I could try to get these messages to display? It's really causing some problems!

As far as I can tell, it's not throwing any exceptions, the only ones I catch in retrieving emails are MessagingException, IOException, and IndexOutOfBoundsException, and I'm not seeing any errors in my log files. The headers are the only thing that come through correctly every time, it's always either the message or attachments that go missing. One of the messages is from a mobile phone, which could be a problem, but we've seen it from our company email addresses too. I'll see if I can get a hold of a sample message to post. In the meantime, what kinds of properties can be set? Is there a good place to look for that?
EDIT: here is a sample message (names have been changed to protect the innocent, also removed attachment encoding)
Return-Path: <[email protected]>
X-Original-To: [email protected]
Delivered-To: [email protected]
Received: from localhost (unknown [IP])
     by company.com (Postfix) with ESMTP id AA0FB52B4F0
     for <[email protected]>; Wed, 17 Dec 2008 12:27:00 +0000 (UTC)
Received: from company.com ([IP])
by localhost (HOST [IP]) (amavisd-new, port 10024)
with ESMTP id 02398-05 for <[email protected]>;
Wed, 17 Dec 2008 06:27:00 -0600 (CST)
Received: from fortimail (unknown [IPADDRESS])
     by company.com (Postfix) with ESMTP id 7EBC7178D95
     for <[email protected]>; Wed, 17 Dec 2008 06:27:00 -0600 (CST)
Received: from atlmtaow03.cingularme.com (atlmtaow03.cingularme.com [IPADDRESS])
     by fortimail with ESMTP id mBHCQvRG003014
     for <[email protected]>; Wed, 17 Dec 2008 06:26:58 -0600
X-Mms-MMS-Version: 18
Date: Wed, 17 Dec 2008 06:31:21 -0600
X-Nokia-Ag-Internal: ; smiltype=true; internaldate=1229517081559
Content-Type: multipart/mixed; boundary="----=_Part_11936491_5421953.1229517081567"
X-Mms-Delivery-Report: 1
Received: from schagw02 ([IPADDRESS]) by atlmtaow03.cingularme.com (InterMail vM.6.01.04.00 201-2131-118-20041027) with ESMTP id <20081217122656.MANG3081.atlmtaow03.cingularme.com@schagw02> for <[email protected]>; Wed, 17 Dec 2008 07:26:56 -0500
X-Mms-Transaction-ID: MMS0000084841772
From: <[email protected]>
To: [email protected]
X-Mms-Message-Class: 0
X-Mms-Read-Reply: 1
Mime-Version: 1.0
Message-ID: <3200553.1229517081568.JavaMail.wluser@schagw02>
X-Mms-Priority: 1
X-Mms-Message-Type: 0
Subject: Multimedia message
X-Nokia-Ag-Version: 2.0
X-Virus-Scanned: amavisd-new at location.company.com
------=_Part_11936491_5421953.1229517081567
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: base64
Content-ID: <slide1.txt>
Content-Location: slide1.txt
Content-Disposition: inline
TG9vawo=
------=_Part_11936491_5421953.1229517081567
Content-Type: image/jpeg
Content-Transfer-Encoding: base64
Content-ID: <1215082150-01.jpg>
Content-Location: 1215082150-01.jpg
Content-Disposition: inline
[Attachment encoding goes here]
------=_Part_11936491_5421953.1229517081567--
Edited by: jlapoint on Dec 22, 2008 9:22 AM

Similar Messages

  • Reading emails from Faxcom server with javamail 1.4.2

    Our JavaMail-based application reads up to 60,000 emails a day. We recently upgraded to JavaMail 1.4.2 to get more leniency reading poorly formatted messages. So far, it's looking great. We only experienced one issue. Upon upgrading, we stopped being able to receive multiparts sent via Faxcom product. To resolve this, we set the property:
    mail.mime.multipart.ignoreexistingboundaryparameterto "false". If it is set to true, it will not be able to read emails from the Faxcom product that were previously successful using JavaMail 1.4.1. Basically, the API returns zero for the multipart count. If you are setting some of the new leniency parameters, I would recommend keeping this "false" unless it solves some specific problem.
    Just wanted to post this to see if anyone had experienced the same problem, and to share the solution.

    Thanks Bill, I will try setup a simple program to reproduce, or see if I can reproduce with one of the JavaMail sample programs - I also have a FaxCom mailbox setup for testing.
    We are also still having trouble consuming a few messages that have a broken Content Type field:
    08:37:05.996 INFO: (EmailServer.processMultipart-Thread-21) Inside Content Type: text/plain
    name="incoming.txt"
    javax.mail.internet.ParseException: Expected ';', got "NAME"
    at javax.mail.internet.ParameterList.<init>(ParameterList.java:280)
    at javax.mail.internet.ContentType.<init>(ContentType.java:110)
    ...etc..
    I will also look and find out which mail client that came from. Maybe the solution here is trying to ask the sender to fix/upgrade/switch mail clients.
    But other than these 2 occasional problems, 1.4.2 is working great in production and we are getting a lot fewer failures.

  • Getting inner exception "dtd is prohibited in this xml document exchange" while reading emails from outlook

    Getting error "The response received from the service didn't contain valid XML." with inner exception "dtd is prohibited in this xml document exchange" while reading emails from outlook(Not while reading every mail).
    Can anybody please tell me what might be the issue. Below is the code where I am getting error
    FindItemsResults<Item> RetrievedItems=null ;
    RetrievedItems = service.FindItems(FIds, new ItemView(4));
    String[] SignatureList = ConfigurationManager.AppSettings.Get("SignatureTypes").Split(',');
    if (RetrievedItems != null && RetrievedItems.Count() > 0)
    RetrievedItems.ToList().ForEach(x =>
    try
    List<String> Attachments = new List<String>();
    List<String> ScanFileName = new List<String>();
    bool IsAvailable = true;
    //Getting error while Load() - below line of code
    ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).Load();
    Vo.EmailMessage msg = new Vo.EmailMessage();
    msg.MessageId = ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).Id.UniqueId;
    msg.From = ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).From.Address;
    ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).ToRecipients.ToList().ForEach(z => msg.To += z.Address + ",");
    ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).ReplyTo.ToList().ForEach(y => msg.ReplyToEmailAddress += y.Address + ",");
    msg.Subject = ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).Subject;
    msg.Body = ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).Body.Text;
    msg.Dated = ((Microsoft.Exchange.WebServices.Data.EmailMessage)x).DateTimeSent;
    Please help.

    Hi,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    Niko Cheng
    TechNet Community Support

  • Removing email from server issue

    I have a new iMac and I am having problems with email (settings).
    I have the iMac and macbook both running yosemite and both have/share the main email account. the macbook email has the setting to remove email from server, but the iMac doesn't. When I use the remove now on the macbook to clear it off the server, it deletes them from my iMac (just inbox not junk)? I though once they are on the iMac they would be here, and the remove would just remove them from the host mail server?
    I'd like to be able to control the removal from the iMac (not macbook). Anybody else had this issue, and how can I get the settings to appear on my iMac mail pref window to control it there?

    See my reply to the message:
    https://discussions.apple.com/thread/2557520?start=15&tstart=0
    The problem is that the POP3 client does not issue a DELE command to remove the email from the server.

  • FOUND SOLUTION TO EMAIL ISSUE - "message not downloaded from server"

    It took me 4 days to figure it out but there is a solution to the problem "the messsage has not been downloaded from server" and "the message has no content".
    I do not have to set up "push" accounts from yahoo or gmail and it works with my corporate email.
    Apple can reach me at <Message was edited by: Host> to discuss this issue.

    I'm not a computer technician, and if you were to give me a few days looking at the problem, i'm sure I or anyone else could provide a solution. I'm not too bothered about the message appearing 50% of the time as i'm usually within easy reach of a Laptop or PC or can find another method to get access to my email.
    So i'm not pi**ed off that you have found a solution. I'm just trying to obtain information for a post that says "FOUND SOLUTION TO EMAIL ISSUE - "message not downloaded from server" in the Apple HELP FORUMS...

  • Read email from microsoft exchangeserver 2010 and save attachement

    Hello,
    I want to read email from microsoft exchangeserver 2010 and save attachement into a folder.I created an Java program to import attachments from a exchange server mailbox using "POP3S".It works fine when run as a java application.But when i put this inside Oracle11g R2 using load java and while executing from a procedure it gives an error at parsing message into Multipart
    Error at line : Multipart mp = (Multipart)m.getContent();
    Error:
    Content-Type: multipart/mixed;
    boundary="_002_A0C2E09A..................................."
    java.lang.ClassCastException
    at mailPop3.checkmail(mailPop3:71)
    My Java Class is as follows,
    import java.io.*;
    import java.util.Properties;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.Date;
    The function i used to check for attachments is given below.
    public static boolean hasAttachments(Message m) throws java.io.IOException, MessagingException
    Boolean hasAttachments = false;
    try
    // if it is a plain/html text - no attachements
    if (m.isMimeType("text/*"))
    return hasAttachments;
    else if (m.isMimeType("multipart/alternative"))
    return hasAttachments;
    else if (m.isMimeType("multipart/*"))
    Multipart mp = (Multipart)m.getContent();
    if (mp.getCount() > 1)
    hasAttachments = true;
    return hasAttachments;
    catch (Exception e) {
    e.printStackTrace();
    } finally {
    return hasAttachments;
    My Java Details as follows
    java Version :1.5.0_10
    java.vm.specification.version:1.0
    java.vm.version :1.5.0_01
    java.specification.version:1.5
    java.class.version:48.0
    Java mail API:javamail-1.4.4
    Used Jars:mail.jar
    Could someone explain why I am getting this error? What can I do to resolve this error?
    Is any other Jar need other than mail.jar?
    Any help would be much appreciated.
    Regards,
    Nisanth

    889509 wrote:
    This java class has no error.Then it should work - not only at compile time, but at run-time too.
    Because it does not, it means there are errors. And as the error you've posted is not an Oracle SQL or PL/SQL error, your question is off-topic to this forum.
    Why would the code not work at run-time? Numerous reasons, including environmental ones. Java inside Oracle are subjected to a number of restrictions and limitations that do not exist in a Java VM outside Oracle (for good reasons).
    So you need to consider that too - and that is why I referred you to the documentation... which is IMO mandatory reading for all Oracle developers.

  • Why "Outlook Express" users can't read email from Mail.app ?

    Why "Outlook Express" users can't read email from Mail.app ? Any explanation ? Select a good format,that's a good explanation,but i can't know each time if our recipients use "Outlook Express".

    There are no completely bug free email clients including the Mail.app and Outlook has its share of bugs for such an old/mature email clients and some glaring ones that MS has been aware of for a long time but has chosen not to do anything about since these do not affect exchanging email with other Outlook users.
    Outlook has always had problems with Mail's RTF and the degree depending on the Windows and Outlook versions used by the recipient.
    Check this link.
    http://homepage.mac.com/thgewecke/woutlook.html

  • Need to read Email from Lotusnotes and Outlook using Oracle

    Dear All,
    My database version Oracle 10.2
    I need to read Email from Lotusnotes and Outlook using Oracle.
    I have tried with below link
    http://sourceforge.net/projects/plsqlmailclient/The problem is i am getting some java error.
    Can anyone suggest me to proceed further.
    Cheers,
    San

    I am using the another function to read an email from pop3 server
    create or replace
    FUNCTION pop3 (
       username   VARCHAR2,
       PASSWORD   VARCHAR2,
       msgnum     NUMBER
       RETURN tstrings PIPELINED
    IS
       --POP3_SERVER             constant varchar2(19) := '127.0.0.1';
       pop3_server   CONSTANT VARCHAR2 (100)     := 'xxxxxx';
       pop3_port     CONSTANT NUMBER             := 110;
       --POP3_TIMEOUT            constant number := 10;
       pop3_ok       CONSTANT VARCHAR2 (10)      := '+OK';
       e_pop3_error           EXCEPTION;
       --E_READ_TIMEOUT  exception;
       --pragma exception_init( E_READ_TIMEOUT, -29276 );
       socket                 UTL_TCP.connection;
       line                   VARCHAR2 (30000);
       BYTES                  INTEGER;
       -- send a POP3 command
       -- (we expect each command to respond with a +OK)
       FUNCTION writetopop (command VARCHAR2)
          RETURN VARCHAR2
       IS
          len    INTEGER;
          resp   VARCHAR2 (30000);
       BEGIN
          len := UTL_TCP.write_line (socket, command);
          UTL_TCP.FLUSH (socket);
          -- using a hack to check the popd response
          len := UTL_TCP.read_line (socket, resp);
          IF SUBSTR (resp, 1, 3) != pop3_ok
         THEN
           RAISE e_pop3_error;
          END IF;
          RETURN (resp);
       END;
    BEGIN
    --UTL_TCP.CLOSE_CONNECTION (SOCKET);
       PIPE ROW ('pop3:' || pop3_server || ' port:' || pop3_port);
       -- Just to make sure there are no previously opened connections
       UTL_TCP.close_all_connections;
       -- open a socket connection to the POP3 server
       socket :=
          UTL_TCP.open_connection (remote_host      => pop3_server,
                                   remote_port      => pop3_port,
                                   --tx_timeout => POP3_TIMEOUT,
                                   CHARSET          => 'US7ASCII'
       -- read the server banner/response from the pop3 daemon
       PIPE ROW (UTL_TCP.get_line (socket));
       -- authenticate with the POP3 server using the USER and PASS commands
       PIPE ROW ('USER ' || username);
       PIPE ROW (writetopop ('USER ' || username));
       PIPE ROW ('PASS ' || PASSWORD);
       PIPE ROW (writetopop ('PASS ' || PASSWORD));
       -- retrieve the specific message
       PIPE ROW ('RETR ' || msgnum);
       PIPE ROW (writetopop ('RETR ' || msgnum));
       --PIPE ROW( 'LIST '||msgNum ); PIPE ROW( WriteToPop('LIST '||msgNum) );
       PIPE ROW ('*** START OF INTERNET MESSAGE BODY ***');
       LOOP
       dbms_output.put_line('entering');
          BYTES := UTL_TCP.available (socket);
         IF BYTES > 0
          THEN
             BYTES := UTL_TCP.read_line (socket, line);
             line := REPLACE (line, CHR (13) || CHR (10), '');
             -- WILL HAVE TO USE PLSQL FUNCTIONS (HAVE BOOKMARKED) TO GET THE MAIL
             -- IN THE PREFERRED FORMAT. CAN USE "REPLACE()"
             IF LENGTH (line) = 1 AND line = '.'
             THEN
                PIPE ROW ('*** END OF INTERNET MESSAGE BODY ***');
             ELSE
                PIPE ROW (line);
             end if;
         END IF;
          EXIT when length (LINE) = 1 and LINE = '.';
          -- PIPE ROW (line);
       END LOOP;
       --PIPE ROW( '*** END OF INTERNET MESSAGE BODY ***' );
       -- close connection
       PIPE ROW ('QUIT');
       PIPE ROW (writetopop ('QUIT'));
       UTL_TCP.CLOSE_CONNECTION (SOCKET);
    EXCEPTION
       WHEN e_pop3_error
       THEN
          PIPE ROW ('There are no mails !');
    END;I am getting the below output .
    21     pop3:sbssld1 port:110
    75     "+OK Lotus Notes POP3 server version Release 8.0.1 ready on SBSSLD1/SBPSS.
    47     USER [email protected]
    69     "+OK [email protected], your papers please.
    13     PASS password
    63     "+OK [email protected] has 1 message.
    6     RETR 1
    17     "+OK 1546 octets
    38     *** START OF INTERNET MESSAGE BODY ***
    9     Subject:
    48     X-KeepSent: A231D6D0:8485FE4B-65257AB1:0022E60F;
    23      type=4; name=$KeepSent
    46     To: [email protected]
    53     X-Mailer: Lotus Notes Release 8.0.1 February 07, 2008
    95     Message-ID: <[email protected]mbnpparibasfs.in>
    48     From: [email protected]
    36     Date: Fri, 9 Nov 2012 11:51:14 +0530
    90     X-MIMETrack: Serialize by POP3 Server on SBSSLD1/SBPSS(Release 8.0.1|February 07, 2008) at
    23      11/09/2012 11:51:21 AM
    17     MIME-Version: 1.0
    37     Content-type: multipart/alternative;
    68     "     Boundary="0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6""
    27     Content-Disposition: inline
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    39     Content-type: text/plain; charset=UTF-8
    33     Content-transfer-encoding: base64
    (null)     (null)
    (null)     (null)
    76     DQoNCg0KUmVnYXJkcywNClNoYW5tdWdhbSBOYXRhcmFqYW4uDQpNb2IgOiA5NjI5MjUyNDI1DQpP
    76     ZmYgOiAwNDQgMjI1MDQ3MDAgRXh0biA0Nzc5DQoNCiB+SWYgdGhlIGZhY3RzIGRvbuKAmXQgZml0
    68     IHRoZSB0aGVvcnksIGNoYW5nZSB0aGUgZmFjdHMu4oCdIC0gQWxiZXJ0IEVpbnN0ZWlu
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    38     Content-type: text/html; charset=UTF-8
    27     Content-Disposition: inline
    33     Content-transfer-encoding: base64
    (null)     (null)
    76     PGh0bWw+PGJvZHk+DQo8cD5SZWdhcmRzLDxicj4NClNoYW5tdWdhbSBOYXRhcmFqYW4uPGJyPg0K
    76     TW9iIDogOTYyOTI1MjQyNTxicj4NCk9mZiA6IDA0NCAyMjUwNDcwMCBFeHRuIDQ3Nzk8YnI+DQo8
    76     YnI+DQogfklmIHRoZSBmYWN0cyBkb27igJl0IGZpdCB0aGUgdGhlb3J5LCBjaGFuZ2UgdGhlIGZh
    60     Y3RzLuKAnSAtIEFsYmVydCBFaW5zdGVpbjxicj4NCjwvYm9keT48L2h0bWw+
    (null)     (null)
    60     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6--
    (null)     (null)
    36     *** END OF INTERNET MESSAGE BODY ***
    4     QUIT
    42     "+OK Lotus Notes POP3 server signing off.
    "Now pls suggest me how can i store the sender mail id, receiver mail id, subject and body of the mail in a table.
    So that i can display the saved data in the above table as a mail in my separate application.
    Thanks in advance.
    Cheers,
    San

  • How to read emails from Microsoft Exchange Server

    I have microsoft exchange server and I want to read emails from microsoft exchange server. There is no POP3 server. So is it possible?
    If it is possible to read emails from microsoft exchange server then please give me some idea.
    Thanks
    Santanu

    santanu wrote:
    Hi,
    My company is using Microsoft exchange server.
    IMPA and POP3 has been disabled, but my requirement is I wan to read email.Then ask the administrator of the server to enable IMAP. If you have a valid business requirement to do that, there would be no reason for the administrator to refuse.

  • Reading emails from gmail by labview

    I easily found a sample program to send an email to Gmail in LabVIEW and it works well. But I want to read emails from Gmail in LabVIEW as well. Is this possible? Thanks
    Jay
    Solved!
    Go to Solution.

    Well, not so much a duplicate post, since that post was asking about reading attachments. This is asking about getting emails from Gmail.
    To OP: Your question is not clear. Are you trying to download emails from your Gmail account? If so, you first need to configure Gmail to turn on the POP service. I don't think this is enabled by default. The Gmail help documents tell you how to do this. Once you've done that, you can just use a POP client. You can start by trying the one posted in this thread, but be aware, that sometimes servers have their own little "quirks", as alluded to in that thread.

  • Read email from multiple machines

    Hi, I have an intel macbook and imac and am looking for an efficient way to read email from both machines. I currently use POP and have to check both machines to be sure I don't miss any mail. Is there a simple way of making the imac an IMAP mail server and use the macbook to read only?

    If you set up an IMAP email account, you can read, send and delete your mail on any mac, which has your IMAP account set up. Because all your mail data etc is stored on the server, not on your computer. Think of it as a form of "web mail" but accessible through your email program (Mail and Entourage)
    Cheers

  • Don't want to download email from server. How?

    Just upgrade from my Droid1 to a new Droid RAZR.
    On my Droid1, when I checked my eemail, the messages were not downloaded to the phone. They remained on the server. Then, when I checked email from my PC, any messages that were in my Droid's inbox would automatically be removed (as they were downloaded to my PC). If I deleted a mail message from my Droid's inbox, the message would still be downloaded to my PC when I checked its email.
    I want to configure the email on my new RAZR the same way, but I'm having problems. After downloading the email to my PC, the messages remain in my RAZR's inbox. I have to manually delete them   What am I doing wrong?
    My RAZR's email configuration is:
    Incoming server
    POP mail server
    Server, username, and password (all are correct)
    Port: 110
    My old Droid1 had a "Delete email from server: When I delete from Inbox" setting.
    Outgoing server
    SMTP server
    Server, username, and password
    Port: 26
    Authentication: LOGIN
    My old Droid1 had a "Require sign-in" setting
    Other settings
    Never delete messages
    Remove manually deleted emails from the server (enabled)
    My old Droid1 did not have this "Other settings" section.
    Thanks!
    -R

    i agree up to #5.
    if i get a pop3 email on the phone & don't delete it but look at the same email on my pc, deleting the email on the pc does not delete it from the phone inbox & must be deleted manually.
    as i don't leave a copy of the email on the server using outlook express on the home pc, if i get email on the pc 1st, it won't go to the phone.
    i don't delete from the server on the phone, so if i delete the email in the phone inbox, it still goes to the pc.
    oh, btw, i do a manual fetch on the phone.
    gmail does what you ask, email in the inbox is deleted when deleted from the gmail account on a pc.

  • How to read file from server

    Hi,
    When i try to read file from server,the following message is displayed .
    ORA-29532: Java call terminated by uncaught Java exception: java.security.AccessControlException: the Permission (java.io.FilePermission /tmp read) has not been granted to EWMTRACKTEST. The PL/SQL to grant this is dbms_java.grant_permission( 'EWMTRACKTEST', 'SYS:java.io.FilePermission', ' /tmp', 'read' )
    ORA-06512: at "EWMTRACKTEST.GET_DIRLIST_EWM", line 1
    ORA-06512: at line 1
    thanks and regards
    P Prakash

    it seems obvious, user EWMTRACKTEST doesn`t have access to directory /tmp and the file under that.
    try to give read permission and try again.
    you could use command line like 'chmod' to grant permissions.

  • Deleting email from server

    I have had email from my ISP (Plus.net) that I'm over their "email limit"
    Apparently after I download the emails to my Mac they are not being delted from the server.
    So I try to google an answer and they say "Go to Preferences > Account > Advanced and select the third option "delete email from server" or some such.
    However... when I go to Preferences > Account > Advanced etc no such option exists
    I have "Keep copies for offline viewing" - the exact opposite option and doesn't help me at all!!!
    If I select "don't keep copies" the whole inbox disappears!!! And I'm thinking: what is the point of an app that deletes all its data?
    Anyway I only have a few days before Plus.Net kicks me off their service...

    Imap accounts should be in sync with their server (the website) so anything you delete from Mail should be deleted from the website. Yours appears not to be working.
    Check whether (in Mail) 'Store Deleted Messages on Server' is selected or not.
    Mail>Preferences>Accounts>Mailbox Behaviour

  • JavaConsole Error: Problem reading data from server

    HI All
    We are getting this error on java console on a page:
      Error: Problem reading data from Server - Java.Security.AccessControlException:access denied (java.util.PropertyPermission http.strictpostredirect Read)
    In this page we are not firing  a SQL Query of huge data.
    Any suggestions on this why it is happening?
    Thanks
    Manisha

    Manisha,
    I think JVM(Java Virtual Machine) is trying to access something at network level and it cant able to find it.Or any new patches of java is installed.
    Or may be due to IIS or Applet,Don't know exactly.
    You can find some answers in below links:
    http://java.sun.com/j2se/1.4.2/docs/api/java/security/AccessControlException.html
    http://www.webdeveloper.com/forum/archive/index.php/t-46358.html
    -Suresh

Maybe you are looking for

  • Cost in Batch splits items

    HI I have an issue where the cost(VPRS) of the main item is not getting updated/Displayed in billing document. The batch splits is done at delivery document and the main item is displayed without cost in billing document Regards Ramesh

  • SAP R/3 Integration to Oracle

    Does any one know that if there is any tools that can help integrate SAP R/3 to Oracle? For testing purpose, can Oracle Apllication Server 10g be installed on Windows XP instead of Windows Server?

  • Problem with download %APPDATA%

    Help please - I have been trying for 3 days to get past the error %APPDATA%\. Everytime I download itunes 10.1 I get this error. I have read all the posts and have tried everything imaginable. Nothing seems to work. It is getting very frustrating. I

  • Apple Mobile Device installation - Error writing to file

    When trying to install any version of iTunes on Windows7_64, I am receiving an error during the installation of the Apple Mobile Device software. Error writing to file: C:\Program Files (x86)\Common Files\Apple\Mobile Device Support\AppleMobileDevice

  • OCI8 on Linux/11g

    Hi to All I have installed Oracle Linux and Oracle DB 11g. When I try to install PHP with OCI8 library, the installation abort whi not found the library. How can download or install this library Thank You and Best Regards Gaetano