Malformed mime file and Symantec AV SMTP Gateway

Hi
We are running 2 versions of JES at the moment, 2003Q4 and 2004Q2, both fully patched. We have just discovered that any messages with attachments that are directed through our AV ASPAM gateway from these systems are dropped with the following error.
Scan Status: 56 - Malformed MIME file
The AV product is Symantec AV for SMTP Gateways 3.1.2.35
On further examination of the AV logs it appears that e-mail from other institutions also running iMS
are also being dropped.
The response from Symantec is as follows
"This error indicates that the scanned email message did not conform to the Multipurpose Internet Mail Extensions (MIME) standards as set forth in RFC 2045 - RFC 2049. Strict adherence to this standard prevents incoming email with virus payloads encapsulated within malformed MIME headers and form."
See
http://service1.symantec.com/support/ent-gate.nsf/docid/2002112109330754?Open&src=w
I have also discovered that similar problems are being encountered by a user trying to send HTML messages via Sun Java Mail.
So, has anybody seen this beforeand know of a fix? It is a rather frustrating problem.
I can provide a copy of the full message text if required.
Many thanks in advance
Bernard

Bernard,
We are using Symantec AV SMTP Gateway with Messaging Server 6.1 and are not experiencing the problems you mention, though we did see a few such issues with an older rev (we're currently using 4.0.0.59). Some of the fixes Symantec lists with ver 3.1.7 are:
# Some multipart MIME messages with nonstandard boundary markers incorrectly parsed
# Some multipart MIME messages with numerous plain text attachments not parsed correctly
# Some multipart MIME messages containing two terminating boundary markers for the primary (outer) boundary generate a false positive malformed mime error
You might consider upgrading your AV SMTP Gateway to see if this fixes the problem.
Regards,
Brian

Similar Messages

  • How to ZIP file and send via SMTP in Oracle

    Dear All,
    I want to send data every month via email where the data i got from view.
    The problem is the file is to big, so i should zip it.
    the question is How i can perform it with procedure and send it automatically via Job every 1st month
    what i've done was i create a procedure to make the file in zip
    [quote/]
    CREATE OR REPLACE PROCEDURE production.CREATE_EXCEL_DTKPITerminate IS
        vvrun varchar2(3000);
        vsender varchar2(100);
        vrecepient varchar2(100);
      vccrecipient varchar2(1000);
        vsubject varchar2(1000);
        vmessage long;
        v_loc varchar2(5);
       NAME:       CREATE_EXCEL
       PURPOSE:
       REVISIONS:
       Ver        Date        Author           Description
       1.0        10/15/2012          1. Created this procedure.
       NOTES:
       Automatically available Auto Replace Keywords:
          Object Name:     CREATE_EXCEL
          Sysdate:         10/15/2012
          Date and Time:   10/15/2012, 9:42:40 , and 10/15/2012 9:42:40
          Username:         (set in TOAD Options, Procedure Editor)
          Table Name:       (set in the "New PL/SQL Object" dialog)
    begin
       vsender := '[email protected]';
         vrecepient := '[email protected]';
      vccrecipient := '[email protected]';
         vsubject := 'KPI Terminate'||TO_CHAR(SYSDATE,'MM-YYYY');
         vmessage :=
            'MESSAGE .';
         as_xlsx.query2sheet('
         select cmp_company,emp#,name,class,goucode,goudesc,job,job_name,tglkeluar
                ,nac_seq,nac_code,nac_type,nac_begin,nac_desc,reason,reason_code
                from V_KPITerminate
         --insert into blobs(blob_id,blob_name)
         --values (1,as_xlsx.finish);
         SEND_SMTP_PUZZLE_DTKRY(vsender,vrecepient,vccrecipient,vsubject,vmessage,as_xlsx.finish,'DataKPITerm -'||to_char(sysdate,'yyyy')||'.zip');
      --as_xlsx.save( 'BASE_DIR3', 'SWT.xls' );
    end;
    [/quote]
    when i execute this, Error ocured
    Message       : ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512           : at "SYS.UTL_SMTP", line 21
    ORA-06512           : at "SYS.UTL_SMTP", line 97
    ORA-06512           : at "SYS.UTL_SMTP", line 399
    ORA-06512           : at "PU22PROD_123.SEND_SMTP_PUZZLE_DTKRY", line 151
    ORA-29294           : A data error occurred during compression or uncompression.
    ORA-06512           : at "PU22PROD_123.CREATE_EXCEL_KPITERM", line 60
    ORA-06512           : at line 2
    cann anyone help?
    the data is too big so i prefer it zip.. can anyone help..
    the SMTP I use is like this
    CREATE OR REPLACE PROCEDURE production.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          l_buffer   RAW(54);
          l_amount   BINARY_INTEGER := 54;
         l_pos      INTEGER := 1;
         l_blob     BLOB := EMPTY_BLOB;
         l_blob_len INTEGER;
          v_amount   INTEGER;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       BEGIN
         /*Preparing the LOB from file for attachment. */
         --DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
         --dBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
         --v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
         --DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
         --l_blob_len := DBMS_LOB.getlength(l_blob);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         l_blob_len := DBMS_LOB.getlength(l_blob);
         /*UTL_SMTP related coding. */
         v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
         UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
         UTL_SMTP.MAIL(v_connection_handle, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
           while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
       --MIME header.
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'MIME-Version: 1.0' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
       /* Writing the BLOL in chunks */
         WHILE l_pos < l_blob_len LOOP
           DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
           UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
           UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
           l_buffer := NULL;
           l_pos    := l_pos + l_amount;
        END LOOP;
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Close Email
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || '--' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
         UTL_SMTP.CLOSE_DATA(v_connection_handle);
         UTL_SMTP.QUIT(v_connection_handle);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;

    this is my smtp procedure
    CREATE OR REPLACE PROCEDURE PROD.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          l_buffer   RAW(54);
          l_amount   BINARY_INTEGER := 54;
         l_pos      INTEGER := 1;
         l_blob     BLOB := EMPTY_BLOB;
         l_blob_len INTEGER;
          v_amount   INTEGER;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       BEGIN
         /*Preparing the LOB from file for attachment. */
         --DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
         --dBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
         --v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
         --DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
         --l_blob_len := DBMS_LOB.getlength(l_blob);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         l_blob_len := DBMS_LOB.getlength(l_blob);
         /*UTL_SMTP related coding. */
         v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
         UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
         UTL_SMTP.MAIL(v_connection_handle, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
            while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
         --MIME header.
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'MIME-Version: 1.0' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: multipart/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
       /* Writing the BLOL in chunks */
         WHILE l_pos < l_blob_len LOOP
           DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
           UTL_SMTP.write_raw_data(v_connection_handle,
                                  UTL_ENCODE.BASE64_ENCODE(l_buffer));
           UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
           l_buffer := NULL;
           l_pos    := l_pos + l_amount;
        END LOOP;
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Close Email
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || '--' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
         UTL_SMTP.CLOSE_DATA(v_connection_handle);
         UTL_SMTP.QUIT(v_connection_handle);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;
    is there a mistake?

  • Photos as MIME files

    My good friend has a blackberry. When he send me photos, the attachment says "MIME file" and I cannot open it. Any cure for this?

    All email attachments are encoded while the message is sent and MIME is used for the attachment encoding and decoding when the recieved message is opened. When "MIME file" is shown instead of the attached file, this means the attached file is not recognized or supported.
    Were the photos being sent captured by the Blackberry? Do you know the file type for the attached files?
    These are the email attachment file types the iPhone supports.
    Viewable document types: .jpg, .tiff, .gif (images); .doc and .docx (Microsoft Word); .htm and .html (web pages); .key (Keynote); .numbers (Numbers); .pages (Pages); .pdf (Preview and Adobe Acrobat); .ppt and .pptx (Microsoft PowerPoint); .txt (text); .rtf (rich text format); .vcf (contact information); .xls and .xlsx (Microsoft Excel)

  • When I try to click on a download link for a .pdf file Firefox does not recognize the MIME type and tries to download the file as "index.php"

    When visiting a site I frequent I tried to download a linked .pdf file. Previously I've used Firefox 7.0.1 to download the link with no problem. Using Firefox 8 however I the browser does not recognize the .pdf link's mime type. Instead of recognizing the download link as a .pdf file Firefox 8 tries to download it as "index.php". Firefox 8 does this with .doc files and .txt files as well. When I downgrade to 7.0.1 again the problem disappears.

    Hi hakmacpace,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You could also try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile Creating a new profile].
    Hopefully this helps!

  • Mime-type and/or extension of script file

    I would like to generate a script file dynamically on my web server and then have it downloaded to my users such that they can simply double-click the file and have it execute. I've gotten pretty close by using the ".command" extension, but it still requires a "chmod +x filename" after download in order to work properly. Is there another extension or a mime-type that I could use that would cause Mac OS X 10.4 and/or 10.5 to grant execute rights to the user that downloaded it? I'm not married to it being shell script if it can be done with AppleScript, Ruby, etc that would be great. It basically just has to be text file (non-binary format) so I can dynamically generate it on the server side.

    Hi Daniel,
    do you use EPG, mod_plsql or APEX Listener? Have you changed the connection mechanism after upgrading to 4.2.1?
    If you use the APEX Listener, which version do you use? Which browser and version do you use to upload the file? Does it reproduce with other browsers as well?
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Get Uploaded File Mime Type and Client Filename

    Anyone know how to recover an uploaded file MIME type and
    client file name?
    I'm writing my own cfx tag to process file uploads and pretty
    much have it figured out except to determine the name of the client
    file and mime type. The formfield file variable value contains the
    path/filename to the CF temp directory, but I need the MIME type,
    filename, etc. that is contained int he HTTP Header
    (e.g. Content-Disposition: form-data; name="Image";
    filename="C:\test.JPG"
    Content-Type: image/pjpeg
    [empty line])
    I'm using the getHttpRequestData() functiont, but it only
    gives me the content-type multipart/form-data, leaving out the Mime
    type and Content-Disposition (which contains the client file name).

    Hi Daniel,
    do you use EPG, mod_plsql or APEX Listener? Have you changed the connection mechanism after upgrading to 4.2.1?
    If you use the APEX Listener, which version do you use? Which browser and version do you use to upload the file? Does it reproduce with other browsers as well?
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Automatically open file based on MIME type and file extension

    We have an app that is registered to handle custom MIME type and file extension. This works perfectly on IE and FireFox causing them to download the file to a temp folder and then launch our app associated with MIME type and file extension with command line to the downloaded file. On Safari however this does not work. It opens up a download window and shows that it has downloaded the file with no option to open it.

    hello, you can file a bug on bugzilla.mozilla.org if you want to include your plugin in the plugin finder service...
    [https://wiki.mozilla.org/PFS]

  • [svn] 1607: Set svn:mime-type and svn: eol-style on LICENSE and NOTICE files in the lib directory.

    Revision: 1607
    Author: [email protected]
    Date: 2008-05-07 17:02:39 -0700 (Wed, 07 May 2008)
    Log Message:
    Set svn:mime-type and svn:eol-style on LICENSE and NOTICE files in the lib directory.
    Modified Paths:
    flex/sdk/branches/3.0.x/lib/batik-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/commons-discovery-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/xalan-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/xerces-LICENSE.txt
    Property Changed:
    flex/sdk/branches/3.0.x/lib/batik-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/batik-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/commons-collections-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/commons-discovery-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/commons-logging-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/commons-logging-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/mm-velocity-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/mm-velocity-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/xalan-LICENSE.txt
    flex/sdk/branches/3.0.x/lib/xalan-NOTICE.txt
    flex/sdk/branches/3.0.x/lib/xerces-LICENSE.txt

    Thanks for your attention.
    In the above logs, higher resolutions seems to be detected on both screens, hence my surprise :
    [ 391.631] (II) intel(0): Printing probed modes for output LVDS1
    [ 391.631] (II) intel(0): Modeline "1600x900"x60.0 110.00 1600 1664 1706 2010 900 903 906 912 -hsync -vsync (54.7 kHz eP)
    [ 391.897] (II) intel(0): Printing probed modes for output HDMI1
    [ 391.897] (II) intel(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz eP)
    If it can help here is also my current xrandr output (after having called it manually to use the preferred resolution of each screen)
    itanguy ~ $ xrandr
    Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 8192 x 8192
    LVDS1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
    1600x900 60.0*+ 40.0
    1024x768 60.0
    800x600 60.3 56.2
    640x480 59.9
    VGA1 disconnected (normal left inverted right x axis y axis)
    HDMI1 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 434mm x 270mm
    1680x1050 59.9*+
    1280x1024 75.0 60.0
    1152x864 75.0
    1024x768 75.1 60.0
    800x600 75.0 60.3
    640x480 75.0 60.0
    720x400 70.1
    DP1 disconnected (normal left inverted right x axis y axis)
    HDMI2 disconnected (normal left inverted right x axis y axis)
    HDMI3 disconnected (normal left inverted right x axis y axis)
    DP2 disconnected (normal left inverted right x axis y axis)
    DP3 disconnected (normal left inverted right x axis y axis)
    If needed, I may reboot and provide xrandr output after boot (it will be 1024x768), or could other logs help you ? Please ask...

  • Getting Error in CMC - source file error. [No such file or directory]: [CrystalEnterprise.Smtp]

    Dear All,
    I am able to schedule the Crystal report successfully means mail gets auto triggered as we set in SCHEDULE option. But when we tried to use the notification option we get the status as FAILED. nd in details we get "source file error. [No such file or directory]: [CrystalEnterprise.Smtp]".
    But still a mail gets triggred and each and every person will get mail. but the issue is notification will not work properly and no notification mail. And the status is despayed as FAILED with "source file error. [No such file or directory]: [CrystalEnterprise.Smtp]" this message.
    Regards,
    Rohan Ghadi

    Do you have multiple job servers in your environment? Did all the Job servers configured SMTP settings?

  • Find object Names in a file and print all those objects Names

    Hi All,
    I am new to this forum.
    I want to know how to read only objects names in txt file. In the text file i have sql queries, package names, Function Name. I need to read all the objects and display out put. The file contains around 20000 Lines.
    Please suggest me.
    Thanks & Regards
    Suresh.

    Gurram wrote:
    want to read .rex File. The file contains combination of SQL code with table Names, Packages,Functions,There are three basic ways to read an external file.
    You can use UTL_FILE and use standard/basic file I/O calls like fread() and fwrite() - common amongst most (if not all) programming languages.
    You can define an external table for the file, and SQL*Load the contents of the file dynamically via a SQL SELECT statement.
    You can load the file into a CLOB using DBMS_LOB and then process it - quite useful if the text file is XML as the XMLTYPE supports parsing a a CLOB containing XML.
    I want to pick Each object name put in a separate file line by line.That in turn will need to use UTL_FILE to create an external file.
    Keep in mind though that your in a database environment with PL/SQL. The very best place for data is inside the database in SQL tables. Not outside as external files. Thus you need to ask yourself whether dealing this way with external files is the best solution, and a robust and scalable one.
    Granted, many times from the database side we need to deal with external files. The optimal method usually is to load that file's data into a database table as structured data - data that can be accessed via SQL and sorted, filtered, aggregated and analysed.
    To provide a "file" as output - this should ideally be done directly from structured data (SQL tables). And can be done using HTTP (via a web enabled PL/SQL procedure that supplies the file content as a http Mime stream), using FTP (via <i>UTL_TCP</i>) or as a CLOB via a PL/SQL call interface. Using UTL_FILE is not necessarily the only option.

  • ~Can't open "noname" MIME files in Gmail~

    I've searched for this topic, but can't understand all the tech-speak! I'm in my 20s, so I'm not dumb, just not in the loop. Someone break this down for me in layman's terms.
    I use Gmail for my primary email. Lately, I've been getting attachments from family members who use PCs. These attachments are always called "noname." When I hit "download," I get a message saying that it is a MIME message and asking what application I should open it with. I always get a bunch of nonsense no matter what I open it with! It looks like it's trying to be HTML, but opening it with Firefox doesn't work. Neither does opening it with the StuffIt Expander.
    Even when I hit "View as text," it doesn't make any sense. I'll paste a copy below. Can someone please tell me what application to open up MIME files in?
    This is only part of the message because it was too long to post. Here we go.... close your eyes!!
    From: "Bumidang, Gloria" <**@*******.*>
    To: "Sanchez, Thess" <*******@******>,
    "'Saqui, Olivia'" <*******@******>,
    Subject: FW: 90-10 PRINCIPLE
    Date: Mon, 23 Mar 2009 12:05:21 -0400
    Message-ID: <[email protected]>
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
    boundary="----=NextPart_000_005F01C9AC67.828B5C70"
    X-Mailer: Microsoft Office Outlook 12.0
    Thread-Index: AcmrZINq6Njpl4LQQYGF4PcxHt+WQQASvuNQAAK8fpA=
    Content-Language: en-us
    X-Originating-IP: [198.96.114.20]
    X-OriginalArrivalTime: 23 Mar 2009 16:05:23.0052 (UTC) FILETIME=[2BF152C0:01C9ABD1]
    X-Apparently-To: ****@****.com via 216.39.53.229; Mon, 23 Mar 2009 09:05:53 -0700
    X-IronPort-AV: E=Sophos;i="4.38,408,1233550800"; d="pps'32?scan'32,208,217,32";a="7117813"
    X-MS-Has-Attach: yes
    X-MS-TNEF-Correlator:
    X-Antivirus: AVG for E-mail 7.5.557 [270.11.24/2018]
    This is a multipart message in MIME format.
    ------=NextPart_001_006001C9AC67.828B5C70--
    ------=NextPart_001_006001C9AC67.828B5C70
    Content-Type: text/html;
    boundary="004_95B51F5CDB1B9B46A9E963EF35579D6025AFB8F116EXMB01regionp";
    charset="us-ascii"
    Content-Transfer-Encoding: quoted-printable
    <html xmlns:v=3D"urn:schemas-microsoft-com:vml" =
    xmlns:o=3D"urn:schemas-microsoft-com:office:office" =
    xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
    xmlns=3D"http://www.w3.org/TR/REC-html40">
    <head>
    <meta http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Dus-ascii">
    <meta name=3DGenerator content=3D"Microsoft Word 11 (filtered medium)">
    <!--[if !mso]>
    <style>
    v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    </style>
    <![endif]-->
    <title>Message</title>
    <style>
    <!--
    /* Font Definitions */
    @font-face
    {font-family:Tahoma;
    panose-1:2 11 6 4 3 5 4 4 2 4;}
    @font-face
    {font-family:inherit;
    panose-1:0 0 0 0 0 0 0 0 0 0;}
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {margin:0cm;
    margin-bottom:.0001pt;
    font-size:12.0pt;
    font-family:"Times New Roman";}
    a:link, span.MsoHyperlink
    {color:blue;
    text-decoration:underline;}
    a:visited, span.MsoHyperlinkFollowed
    {color:blue;
    text-decoration:underline;}
    pre
    {margin:0cm;
    margin-bottom:.0001pt;
    font-size:10.0pt;
    font-family:"Courier New";}
    span.EmailStyle18
    {mso-style-type:personal-reply;
    font-family:Arial;
    color:navy;}
    @page Section1
    {size:612.0pt 792.0pt;
    margin:85.6pt 80.5pt 58.4pt 89.85pt;}
    div.Section1
    {page:Section1;}
    -->
    </style>
    </head>
    <body lang=3DEN-CA link=3Dblue vlink=3Dblue>
    <span =
    style=3D'font-size:
    10.0pt;font-family:Arial;color:navy'>Good morning, have a great day and =
    a super
    week.  Stay safe and sound always.
    <span =
    style=3D'font-size:
    10.0pt;font-family:Arial;color:navy'> 
    <font =
    size=3D3
    face=3D"Times New Roman">
    <hr size=3D2 width=3D"100%" align=3Dcenter tabindex=3D-1>
    From:</spa=
    n><span lang=3DEN-US =
    style=3D'font-size:10.0pt;font-family:Tahoma'>
    Yu, Lilibeth [mailto:[email protected]]
    Sent: March 23, 2009 8:06 =
    AM
    Subject: FW: 90-10 =
    PRINCIPLE
    ------=NextPart_000_005F01C9AC67.828B5C70
    Content-Type: application/vnd.ms-powerpoint;
    name="90-10 Principle.pps"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
    filename="90-10 Principle.pps"
    0M8R4KGxGuEAAAAAAAAAAAAAAAAAAAAAPgADAP7/CQAGAAAAAAAAAAAAAAAVAAAAdQoAAAAAAAAA
    EAAAdwoAAAEAAAD+////AAAAAF4KAABfCgAAYAoAAGEKAABiCgAAYwoAAGQKAABlCgAAZgoAAGcK
    AABoCgAAaQoAAGoKAABrCgAAbAoAAG0KAABuCgAAbwoAAHAKAABxCgAAdgoAAP//////////////
    //////////////////////////////////////////////////////////////////////////+g
    Rh3wZWAAANx5LbqFi2eVecK4MZKK5p3//9j/4AAQSkZJRgABAgEAYABgAAD/wAARCAMABAADASIA
    AhEBAxEB/9sAhAAFAwMEAwMFBAQEBQUFBgcNCAcHBwcQCwwJDRMQFBMSEBISFRceGRUWHBYSEhoj
    GhwfICEiIRQZJSckICceISEgAQUFBQcGBw8ICA8gFRIVFSAgICAgICAgICAgICAgICAgICAgICAg
    ICAgICAgICAgICAgICAgICAgICAgICAgICD/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJ
    CgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJ
    ChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeI
    iYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq
    8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncA
    AQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6
    Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeo
    qaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4Tl5ufo6ery8/T19vf4fr/2gAMAwEAAhED
    EQA/APH6KKK5TmwooooAKKKKACiiigAooooAXI7Lijj6UuCx4FdR4RGHiLxpYzXml2cTQQts3y
    yBA7Y6Lnr29qErmGIxNLDU3UrSUYrq9EcrmlHPFT3dnPp13NZ3cLQzwuY5I2HKsDgiq49qRpTnGc
    VKLumFFFFMsKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK
    KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoo
    ooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii
    gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA
    CiiigAooooAKKKKACiiigAooooAKKKKAFzwBjpXp3wyNcPgXQZNIvtMlukSRpIHicKeeSrZ9/v
    0rzEDceKAcLxQnbY4cwy/D5hQdDEK8X+hpeJtbm8S67eatPGsUt3KZCi9FHYfgMVm53NzSkE5Y0Y
    zjHekdNGjChTjSpq0YpJLyWiG0UUUzUKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoo
    ooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiii
    gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKA
    CiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAK
    KKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKAF7AYq5YaTf6izmysrm4EQzJ5
    MTSbB6nA4qpkBQAa9pCvxK8LeFfCsunarcixuY5mlZjEzCYHGDlQeRjGPYURV2eXmMr4LCutQp
    upJW0X/A1+48WIXPHSk6gn0rY8ZarZ634n1LUrC3MNrc3DSRpjBwT1I7E9fxrIYbeBSO3DVJVaMa
    k48rcU2uza2+Q2iiimbhRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUU
    UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQ
    AUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFAB
    RRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAFF
    Message was edited by: TravelGirlTwoPointOh
    <Edited by Moderator>

    TravelGirlTwoPointOh wrote:
    I've searched for this topic, but can't understand all the tech-speak! I'm in my 20s, so I'm not dumb, just not in the loop. Someone break this down for me in layman's terms.
    It sounds like gmail has serious problems with MIME data. That isn't something it should have trouble with. It has been solved for a long, long time now.
    Even when I hit "View as text," it doesn't make any sense. I'll paste a copy below. Can someone please tell me what application to open up MIME files in?
    Ordinarily, your e-mail program.
    I have a program I used to sell years ago when people started sending MIME e-mail messages that AOL couldn't understand. Perhaps I should update it if all the world is switching to gmail and gmail doesn't handle MIME either. 1996 is here again.
    Anyway, click here to download it.
    Technically this is a shareware program and technically I could make money from it. But very few people need this program anymore and it should work just fine for you in "demo" mode.

  • Error when launching .rdp file from RDWebAccess with RD Gateway "NtlmWebAuthException: 2" on Mac Version 8.0.8 (Build 25010)

    When launching a .rdp file that has been download from an rdwebaccess session, the following error is generated "NtlmWebAuthException: 2". I have tested this on the Mac Microsoft Remote Desktop client version  8.0.8 (Build 25010).
    The following is the use case:
    Download the .RDP file for a published app "notepad.exe", on rdwebaccess (2012R2), accessed through the gateway (2012R2) VIA the connection broker (2012R2) on a RDSH server (2012R2). NLA is enabled everywhere.
    This same setup works on Windows using the Remote Desktop Connection client.
    I found that if you edit the .rdp file and add the following line (no quotes):
    "username:s: "
    Then the user is prompted for credentials. You may also set it to be "username:s:domain\username".
    This issue here appears that the Mac client is either ignoring the "prompt for credentials on client:i:1" setting, or it is passing blank credentials... or both.
    I appreciate all the work the MS team (and iTap) have done on this product... keep up the great work.
    Example failing RDP file:
    redirectclipboard:i:1
    redirectprinters:i:1
    redirectcomports:i:0
    redirectsmartcards:i:1
    devicestoredirect:s:*
    drivestoredirect:s:*
    redirectdrives:i:1
    session bpp:i:32
    prompt for credentials on client:i:1
    span monitors:i:1
    use multimon:i:1
    remoteapplicationmode:i:1
    server port:i:3389
    allow font smoothing:i:1
    promptcredentialonce:i:1
    videoplaybackmode:i:1
    audiocapturemode:i:1
    gatewayusagemethod:i:1
    gatewayprofileusagemethod:i:1
    gatewaycredentialssource:i:0
    full address:s:RDCB.COMPANY.COM
    alternate shell:s:||Notepad
    remoteapplicationprogram:s:||Notepad
    gatewayhostname:s:rdgateway.COMPANY.com
    remoteapplicationname:s:Notepad
    remoteapplicationcmdline:s:
    workspace id:s:RDCB.COMPANY.com
    use redirection server name:i:1
    loadbalanceinfo:s:tsv://MS Terminal Services Plugin.1.Notepad
    alternate full address:s:RDCB.COMPANY.COM
    signscope:s:Full Address,Alternate Full Address,Use Redirection Server Name,Server Port,GatewayHostname,GatewayUsageMethod,GatewayProfileUsageMethod,GatewayCredentialsSource,PromptCredentialOnce,Alternate Shell,RemoteApplicationProgram,RemoteApplicationMode,RemoteApplicationName,RemoteApplicationCmdLine,RedirectDrives,RedirectPrinters,RedirectCOMPorts,RedirectSmartCards,RedirectClipboard,DevicesToRedirect,DrivesToRedirect,LoadBalanceInfo
    signature:s:ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB ABCXXX123xDummyDataHerex321XXXCAB

    Hi,
    I too have this problem but I am unsure of how you fo about adding the "username:s:domain\username"
    into the file as it is downloaded via the RD Web Access page.
    I know that I can edit the RDP file after the event and then send it to my users but I don't want the
    hassle of doing this,
    The weird thing is that ver 8.0.8 release notes say that there is a "Fix for the issues of starting remote connection from RDP files that included gateway information" 
    Anybody have any ideas?
    Thanks,
    Jaggie

  • AuthenticationFailedException when using JNDI and JavaMail with SMTP auth

    Hi all - I've been banging my head on this one for awhile now - hopefully someone else has done this.
    We are working in a servlet container (tomcat), and need obtain a mail session from JNDI. We do this as follows:
                   Context initCtx = new InitialContext();
                   Context envCtx = (Context) initCtx.lookup("java:comp/env");
                   Session mailSession=(Session) envCtx.lookup("mailSession/trumpetinc");so far so good. The jndi entry for the mail session is configured in server.xml as follows:
              <Resource name="mailSession/trumpetinc" scope="Shareable" type="javax.mail.Session"/>
              <ResourceParams name="mailSession/trumpetinc">
                <parameter>
                  <name>mail.smtp.host</name>
                  <value>mail.server.com</value>
                </parameter>
                <parameter>
                  <name>mail.smtp.password</name>
                  <value>ABCDEFG</value>
                </parameter>
                <parameter>
                  <name>mail.smtp.user</name>
                  <value>trumpet_kevin</value>
                </parameter>
             <parameter>
               <name>mail.smtp.auth</name>
               <value>true</value>
             </parameter>
              </ResourceParams>With the above, whenever we hit Transport.send(msg), we got an AuthenticationFailedException thrown. I have run into this before with SMTP authentication, so I decided to try using the transport.sendMessage() method instead.
    So, I get the transport:
    Transport trans = mailSession.getTransport("smtp");
    trans.connect();Then I send my message using:
    msg.saveChanges();
    trans.sendMessage(msg, msg.getAllRecipients());and finally, I close the transport:
    trans.close();Unfortunately, I'm still getting the exception. Is it possible that my connect() method is not picking up the JNDI properties set in the server.xml file (this seems likely)? If so, what's the best way for me to get those properties so I can set them explicitly in the connect() method?
    Thanks in advance,
    - Kevin

    Hi,
    I have faced the same problem and after some googling and trying I have discovered what causes the AuthenticationFailedException exception. I just wanted to share the knowedge maybe it will be helpfull to others.
    Here it is what the API says:
    To use SMTP authentication you'll need to set the mail.smtp.auth property (see below) and provide the SMTP Transport with a username and password when connecting to the SMTP server. You can do this using one of the following approaches:
    1.Provide an Authenticator object when creating your mail Session and provide the username and password information during the Authenticator callback.
    Note that the mail.smtp.user property can be set to provide a default username for the callback, but the password will still need to be supplied explicitly.
    This approach allows you to use the static Transport send method to send messages.
    2.Call the Transport connect method explicitly with username and password arguments.
    This approach requires you to explicitly manage a Transport object and use the Transport sendMessage method to send the message. The transport.java demo program demonstrates how to manage a Transport object. The following is roughly equivalent to the static Transport send method, but supplies the needed username and password:
    Using the Transport.connect makes the JNDI not very helpfull for configuration.
    It seems that using just the mail.smtp.user and mail.smtp.pass is not sufficient for the authentication.
    so, the solution is :
    just place these to lines in the JNDI configuration:
              username="test"
              password="test1"
    so it should looks as follows:
              <Resource name="mail/Session" auth="Container"
              type="javax.mail.Session"
              username="test"
              password="test1"
              mail.transport.protocol="smtp"
              mail.smtp.auth="true"     
              mail.smtp.host="localhost"
              mail.smtp.port="25"
              mail.smtp.user="test"
              mail.smtp.password="test1"
    />
    where test and test1 are the user's credentials
    Regards,
    Kiril
    Message was edited by:
    Kireto
    Message was edited by:
    Kireto

  • ITS: How to download a PDF file and provide it with a filename !??

    Hi everybody,
    I habve created an Zservice that Prints spools requests. Now it should be extend to allow download as a pdf file as well.
    What are the options here !?
    I am aware of mime-download and it works fine but it has certain limitations despite it opens up the pdf just fine the in IE window.
    -- No custom filename can be provided
    -- Opens up in the same window can only escape w/ back button
    I would need something that would allow the following:
    -- Either to select file location etc. or being abale to set correct file location
    -- Possible open pdf file in a new window...
    I assume that a combination of different things need to be done here...
    Any suggestions !?
    Cheers,
    CN
    PS. Non integrated ITS

    > If I recall, the ability for IE to show a pdf file
    > comes from the WEBDAV.
    >
    > But, look at this sight.
    >
    > http://www.useit.com/alertbox/open_new_windows.html
    >
    > And there is a link in the middle.  I don't know if
    > it will work in your case but it is worth a read.
    Hey David,
    that seems about what I would need :
    Open or saving it in a separated dialog/window/application
    Being able to provide a filename (which can be a BHtml variable)
    But I do not have a clue how I can get it implemented ...what needs to be done !?
    Although iot seems to be the way to go...but how !??
    Cheers,
    Chris

  • Need to create a MIME file to FTP to customer

    Hi Experts,
    I have a requirement to generate a MIME file that will consist of am XML file and 1 to many attachments.  This file will then be sent via FTP to a client.  Searching within the SCN community has proven very difficult because I am NOT looking to do anything with the MIME Repository.  I just want to create a file with a .MIME extension and having the appropriate tags.  We are not wanting to send this file via email.
    I have found several queries on similar topics but they do not appear to have a solution.  Does anyone know of the proper Functions, Class methods or procedure to accomplish this within ABAP? 
    Best Regards,
    Terry

     $props = @{"FirstName" = '';
                'LastName' = '';
                'UID' = '';
                'Site' = '';
                'Description' = ''}
    New-Object PsObject -Property $props | Export-Csv c:\powershell\myfile.csv -NoTypeInformation -Force
    that's the closest i have been able to come, but it seems to put the columns in a random order..
    $props=[ordered]@{
    FirstName=''
    LastName=''
    UID=''
    Site=''
    Description=''
    New-Object PsObject -Property $props |
    Export-Csv c:\powershell\myfile.csv -NoTypeInformation
    Formatting is important down the road.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • Issues with adding a line....

    Can someone PLEASE give me some course of action to take here. I feel extremely frustrated and upset with Verizon, and none of the reps seem to want to be of any assistance at all…… Recently, my wife and I decided that it was time to consolidate our

  • Question for drag'n'drop...

    Hi, I am not sure whether my BlackBerry Pearl is the 8100 or 8200 series--I bought it refurb with no booklets or anything. It came with various cords, like a USB cord and a Power Cord, though. Anyway, I hit up the http://na.blackberry.com/eng/service

  • QUERY NEED CHANGE

    MY QUERY RETURNS SELECT COL1,COL2 FROM TBL WHERE COL1=7; COL1 COL2 1 A 1 F 1 C 1 A Now in out put i want col1 col2 1 A,F,C,A OR COL1 COL2 1 __ A __ B ___ C ___ D

  • PremPro CC stopped working?

    The program will no longer render the time line. The render progress window opens, shows no progress, and clicking to close the render or the program results in a popup saying premPro is not responding. Media encoder does not process a sequence. Not

  • Every time I open v.5 firefox the pop up opens asking if I want to download the programe file for firefox.

    I have just installed version 5 of firefox. All good worked well got some add on's and all my password are still ok. PROBLEM is every time I open a new tab in firefox or firefox it's self I get the pop up download window asking if I want to download