Filename when dl PDF Blobs

I have an APEX app that stores PDFs and RTF file in my DB as BLOBS. Users click on links and download these files. I use a DB procedure to build the http header for dl of the blob. (I think I got it from the APEX help section).
Everything works except for the file name of the PDF blobs. I still get the file but the file name is always the name of my DB schema.pdf. The filename var is set correctly in the DB, same datatype as the RTF file.
Same results if you left or right -> save target as click. RTF works. PDF works but odd filename.
As anyone heard of an issue like this? Thanks for any help.
Here are my two procedures:
PDF (filename problem is here)
create or replace PROCEDURE download_contractpdf(p_file in number) AS
v_mime VARCHAR2(48);
v_length NUMBER;
v_file_name VARCHAR2(2000);
Lob_loc BLOB;
BEGIN
     -- Assuming your application's numeric ID is 122, set g_flow_id to
     -- that value, otherwise change the value as required.
     HTMLDB_APPLICATION.G_FLOW_ID := 122;
     IF NOT wwv_flow_custom_auth_std.is_session_valid then
     -- display this message or a custom message.
     htp.p('Unauthorized access - file will not be retrieved.');
     -- You can do whatever else you need to here to log the
     -- unauthorized access attempt, get the requestor's
     -- IP address, send email, etc.
     RETURN;
     END IF;
SELECT 'application/pdf', PDFFILE, PDFFILENAME,DBMS_LOB.GETLENGTH(PDFFILE)
INTO v_mime,lob_loc,v_file_name,v_length
FROM ES_GENERATION_Q_STAFFAUG
WHERE id = p_file;
-- set up HTTP header
-- use an NVL around the mime type and
-- if it is a null set it to application/octect
-- application/octect may launch a download window from windows
owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
-- set the size so the browser knows how much to download
htp.p('Content-length: ' || v_length);
-- the PDFFILENAME will be used by the browser if the users does a save as
htp.p('Content-Disposition: attachment; PDFFILENAME="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
-- close the headers
owa_util.http_header_close;
-- download the BLOB
wpg_docload.download_file( Lob_loc );
end download_contractpdf;
RTF (this works)
create or replace PROCEDURE download_contractrtf(p_file in number) AS
v_mime VARCHAR2(48);
v_length NUMBER;
v_file_name VARCHAR2(2000);
Lob_loc BLOB;
BEGIN
     -- Assuming your application's numeric ID is 122, set g_flow_id to
     -- that value, otherwise change the value as required.
     HTMLDB_APPLICATION.G_FLOW_ID := 122;
     IF NOT wwv_flow_custom_auth_std.is_session_valid then
     -- display this message or a custom message.
     htp.p('Unauthorized access - file will not be retrieved.');
     -- You can do whatever else you need to here to log the
     -- unauthorized access attempt, get the requestor's
     -- IP address, send email, etc.
     RETURN;
     END IF;
SELECT 'application/msword', RTFFILE, RTFFILENAME,DBMS_LOB.GETLENGTH(RTFFILE)
INTO v_mime,lob_loc,v_file_name,v_length
FROM ES_GENERATION_Q_STAFFAUG
WHERE id = p_file;
-- set up HTTP header
-- use an NVL around the mime type and
-- if it is a null set it to application/octect
-- application/octect may launch a download window from windows
owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
-- set the size so the browser knows how much to download
htp.p('Content-length: ' || v_length);
-- the filename will be used by the browser if the users does a save as
htp.p('Content-Disposition: attachment; filename="'||substr(v_file_name,instr(v_file_name,'/')+1)|| '"');
-- close the headers
owa_util.http_header_close;
-- download the BLOB
wpg_docload.download_file( Lob_loc );
end download_contractrtf;

Hi Regis,
You have put this thread as answered.
I have the same problem, can you tell me how you fixed this problem?
thanks!
KR,
Micha

Similar Messages

  • CVAW package : wrong filename when saving pdf file

    Hi experts,
    In my bsp, I have a link to the standard bsp CVAW_VIEW_DOCFILE in order to display an original of a DIR.
    An example of a complete URL to open an original :
    https://daplmdv.sylvania.com:10443/sap/bc/bsp/sap/CVAW_VIEW_DOCFILE/ViewDocFile.htm?pa_document_key=ZPI000000000000000000185252800EN&pa_file_id=49A5C8136B110187E1008000C61CAA2D&filename=d:\seal\data\convserv\49A5B257145901AAE1008000C61CAA2D\in\test.pdf
    In this case, the pdf has been displayed but when I use the button "Save a copy" in acrobat reader, the windows proposed "ViewDocFile.pdf" instead of "test.pdf".
    In fact, I have always this name when I open the document first and try to save it after.
    With .doc files, I have another window which ask me if I want to open or save the document (I think I have this window because the doc is not automaticaly opened in internet explorer). So, when I save it directly, the name is correct but when I open it and then save it, MS word propose me the name "ViewDocFile.doc".
    Do you have an idea how I can have the original name and not ViewDocFile.ext ?
    Thanks for your support

    Hi Regis,
    You have put this thread as answered.
    I have the same problem, can you tell me how you fixed this problem?
    thanks!
    KR,
    Micha

  • Preserving filename when encrypting PDFs in Preview

    Dear All,
    When I encrypt PDFs using Preview in the normal way (Print -> PDF -> Set Security) everything works fine and the filename is preserved. However if I do this in Automator the filename gets given an alphanumeric name. I don't understand why this is. When I open that file, it asks for the password that I had originally set and it reveals the document.
    My workflow is like the following:
    Get Selected Finder Items (i am only selecting doc not docx)
    Convert Format of Word Documents (to pdfs)
    Encrypt PDF (Picked out from the Documet list)
    Move Finder Items (To desktop)
    Quit Application (Word in this case)
    All of the above seems to be just fine only that the filename gets converted to something else.
    On the system.log file I get the following entries (hope this helps!)
    Feb 1 12:07:10 Macintosh [0x0-0x300300].com.apple.Preview[17593]: Sun Feb 1 12:07:10 Macintosh.home Preview[17593] <Error>: CGCryptorProcessBytes: CCCryptorUpdate failed: error -4300.
    Feb 1 12:07:42: --- last message repeated 2 times ---
    Feb 1 12:09:38 Macintosh mdworker[17730]: (Error) Import: Importer force killed!
    Feb 1 12:09:38 Macintosh com.apple.launchd[1] (0x1004a0.mdworker[17730]): Exited with exit code: 1
    Feb 1 12:10:42 Macintosh /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word[18057]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Feb 1 12:10:42 Macintosh /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word[18057]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Feb 1 12:10:54 Macintosh /Applications/Automator.app/Contents/MacOS/Automator[4259]: setting security information: /Users/rjani5/Desktop/1zwCC1.pdf: Operation not permitted
    Many thanks in advance.
    Kind regards,
    Vnayak

    I played with the encrypt pdf action and it seems buggy. it can't replace the original (non-encrypted) pdf. instead it creates a temp file with a random alpha-numeric name and passes it to the next action. the way around it as i see it should be to first save the name of your word file in a text variable and after the encrypt action (or maybe after the move action) rename the resulting file. "rename finder items" doesn't seem to want to accept variables so you'll have to do the renaming via apple or shell script.

  • Hiding filenames when combining multiple files into a single .pdf

    I'm fairly new to this Acrobat X. I'm trying to assemble my portfolio to distribute to employers but I cannot seem to get rid/hide the filenames in the final pdf file. I was using the option to 'combine multiple files into a single pdf' because I was compiling images and documents to a single readable pdf file. I got all that done but once I open it, I'd see that each page would still contain the original file names rather than page numbers - which I prefer not to have employers see for the sake of tidiness (and I refuse to use the Adobe portfolio because it's not really efficient on space or design. I prefer a simple page-by-page pdf). So I was wondering if anyone can tell me how to hide my file names, change them into page numbers or getting rid of them all together so the 'Table of Contents' in the pdf preview mode would not show anything, I would really much appreciate it.
    -Ss

    Well, when the .pdf is in the final, deliverable form; I open it in Mac preview mode and the sidebar is always extended showing a 'table of contents' rather than having each document in the pdf file have a number designating a page name, it shows each individual filename the pdf is composed of. Not too sure about bookmark, though. Thanks for the reply!
    If you want, I can send the file to you.

  • How to show in a report a pdf blob from database

    Hi all
    We are working on report 6i and report 10. We have a report wich needs to show a blob field from database that storages a pdf (type application/pdf). OLE2 is deprecated. The pdf blob field must be displayed in a preview and must be printed. In local, it works. When it works on a browser, the pdf blob field is missing. If we load the field into a pdf file, the field is not visible in the browser.
    Do not get it to work. How I can implement? Could you give us any example for this?

    In local, it works. What do you mean by that exactly? You see the pdf in Reports Builder?
    If you just want to show the pdf in a browser (not embedded in a report) it is easy to use mod_plsql. You can have a simple db procedure like this to show any kind of blob:
    procedure show_webdoc(io_blob    in out nocopy blob
                         ,i_mimetype in varchar2
                         ,i_filename in varchar2)
    is
    begin
       if dbms_lob.getlength(io_blob) >0 then
          owa_util.mime_header(nvl(i_mimetype,'application/octet'),false);
          htp.p('Content-length: ' || dbms_lob.getlength(io_blob));
          htp.p('Content-Disposition:  inline; filename="'||i_filename|| '"');
          owa_util.http_header_close;
          wpg_docload.download_file(io_blob);
       end if;
    end show_webdoc;

  • CS6: DistributedCOM Error id: 10016 when open pdf from web page in Win8.1

    For example here below I've got the issue: 
    http://modemwifi.it/wp-content/uploads/asus-dsl-n55u.pdf
    Adobe Acrobat X pro V 10.1.8:
    DistributedCOM Error id: 10016 when open pdf from web page.
    Nome registro: System
    Origine:       Microsoft-Windows-DistributedCOM
    Data:          04/11/2013 19:09:19
    ID evento:     10016
    Categoria attività:Nessuna
    Livello:       Errore
    Parole chiave: Classico
    Utente:        PC-PIERO\Piero
    Computer:      Pc-Piero
    Descrizione:
    Le impostazioni delle autorizzazioni impostazioni predefinite del computer non concedono l'autorizzazione di Attivazione in Locale per l'applicazione server COM con CLSID
    {B801CA65-A1FC-11D0-85AD-444553540000}
    e APPID
    {2EAF0840-690A-101B-9CA8-9240CE2738AE}
    all'utente Pc-Piero\SID Piero (S-1-5-21-3453328585-262132574-2759341577-1001) dall'indirizzo LocalHost (tramite LRPC) in esecuzione nel SID del contenitore di applicazioni Non disponibile (S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1277922394). Per modificare tale autorizzazione di sicurezza, è possibile utilizzare lo strumento amministrativo Servizi componenti.
    XML evento:
    < Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="0">10016</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2013-11-04T18:09:19.468877700Z" />
        <EventRecordID>14806</EventRecordID>
        <Correlation />
        <Execution ProcessID="768" ThreadID="776" />
        <Channel>System</Channel>
        <Computer>Pc-Piero</Computer>
        <Security UserID="S-1-5-21-3453328585-262132574-2759341577-1001" />
      </System>
      <EventData>
        <Data Name="param1">impostazioni predefinite del computer</Data>
        <Data Name="param2">Locale</Data>
        <Data Name="param3">Attivazione</Data>
        <Data Name="param4">{B801CA65-A1FC-11D0-85AD-444553540000}</Data>
        <Data Name="param5">{2EAF0840-690A-101B-9CA8-9240CE2738AE}</Data>
        <Data Name="param6">Pc-Piero</Data>
        <Data Name="param7">Piero</Data>
        <Data Name="param8">S-1-5-21-3453328585-262132574-2759341577-1001</Data>
        <Data Name="param9">LocalHost (tramite LRPC)</Data>
        <Data Name="param10">Non disponibile</Data>
        <Data Name="param11">S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1 277922394</Data>
      </EventData>
    < /Event>
    How can I solve this problem?
    Thanks

    // I got this from an Action (I�m using Struts)
    java.sql.Blob file=(java.sql.Blob)request.getAttribute("PDFfile");
    String filename=(String)request.getAttribute("filename");
    try{
      int iLength = (int)(file.length());
      response.setHeader("Content-type", "application/pdf");   
      response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"");
      response.setHeader("Expires","0");
      response.setHeader("Cache-Control","must-revalidate, post-check=0, pre-check=0");
      response.setHeader("Pragma","public");
      response.setContentLength(iLength);
      ServletOutputStream os = response.getOutputStream();
      InputStream in = null;
      in = file.getBinaryStream();
      byte buff[] = new byte[1024];
      while (true) {
          int i = in.read(buff);
          if (i<0) break;      
          os.write(buff,0,i); 
      os.flush();
      os.close();
    } catch(Exception ex){
       out.println("Error while reading file : " + ex.getMessage());
    }and now it�s running !!! I�m not using response.setContentType(...) and I do this in response.setHeader("Content-type", "application/pdf"). And I use response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"") instead of response.setHeader("Content-Disposition", "attachment; filename=\""+filename+"\"");

  • Image filename description in PDF

    Hi,
    I have a converted powerpoint file which is showing up the original jpeg filenames when you mouse over the images in the PDF which i would like to remove or edit as they are just nonsense rather than a proper description.
    I have looked in acrobat but I cannot find where it shows them up, can anyone help on this please,
    I am using a PC version of version 9.
    Ta muchly
    Simon

    Hi Dean,
    Here is a sample of the image issue: https://acrobat.com/#d=EGVpC0TT2iHGyNXPUqWmCw
    You can create/drag buttons from the Object Library onto the page. Then in the custom appearance you can set the fill and border to the look and feel you want.
    In LC Designer, make sure that in the File > Form Properties > Defaults tab, you set 'preserve script changes' to automatic.
    Also the object should have a 'normal' or 'name' binding in the Object > Binding palette. It depends on which version of LC Designer you are using.
    When deploying forms it is important to consider what your users will open the form with - Acrobat or Reader. Here is a summary of what features are available depending on what the user has and whether the form has been Reader Enabled:
    A summary and PDF is here:
    http://assurehsc.ie/blog/index.php/2010/05/using-livecycle-forms-in-acrobat-and-reader/
    There are two ways to Reader Enable the form: using Acrobat OR using the full server product LC Reader Extensions ES2. Come back if you need more info.
    Good luck,
    Niall

  • Searching a string in a pdf blob

    Hi,
    My requirement is finding a string in a blob data. I am using
    dbms_lob.INSTR(FILE_DATA, utl_raw.cast_to_raw('Tag Switch'),1,1) > 0 approach.
    It is working properly for doc htm, text formats. But when we try to search in pdf blobs, it isn't working.
    Can someone suggest a solution for this issue?

    You can use Oracle Text to search your words in pdf files.
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    SQL> /* Creating my demo table */
    SQL> CREATE TABLE pdm(id_pk INTEGER,fname VARCHAR2(30),pdf_file BLOB);
    Table created.
    SQL> /* Creating the directory object for latter use */
    SQL> CREATE OR REPLACE DIRECTORY TEMP AS 'c:\';
    Directory created.
    SQL> /* Creating a procedure which will load the BLOBs (pdf files) into the table */
    SQL> CREATE OR REPLACE PROCEDURE load_file(pi_id IN INTEGER, pfname IN VARCHAR2) IS
      2    src_file BFILE;
      3    dst_file BLOB;
      4    lgh_file BINARY_INTEGER;
      5  BEGIN
      6    src_file := bfilename('TEMP', pfname);
      7 
      8    INSERT INTO pdm
      9      (id_pk, fname, pdf_file)
    10    VALUES
    11      (pi_id, pfname, EMPTY_BLOB())
    12    RETURNING pdf_file INTO dst_file;
    13 
    14    DBMS_LOB.OPEN(src_file, dbms_lob.file_readonly);
    15    lgh_file := dbms_lob.getlength(src_file);
    16    DBMS_LOB.LOADFROMFILE(dst_file, src_file, lgh_file);
    17    dbms_lob.close(src_file);
    18    COMMIT;
    19  END load_file;
    20  /
    Procedure created.
    SQL> EXECUTE load_file(1,'plsql_new_in_11gr1.pdf');
    PL/SQL procedure successfully completed.
    SQL> EXECUTE load_file(2,'Model clause.pdf');
    PL/SQL procedure successfully completed.
    SQL>
    SQL> SELECT id_pk,fname,DBMS_LOB.getlength(pdf_file)
      2  FROM pdm;
         ID_PK FNAME                          DBMS_LOB.GETLENGTH(PDF_FILE)
             1 plsql_new_in_11gr1.pdf                               170264
             2 Model clause.pdf                                    4288164
    SQL> /* Creating the index */
    SQL> CREATE INDEX pdm_pdf_idx ON pdm(pdf_file) INDEXTYPE IS CTXSYS.CONTEXT;
    Index created.
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(USER, 'PDM', cascade=>TRUE);
    PL/SQL procedure successfully completed.
    SQL> SELECT id_pk,fname
      2  FROM pdm
      3  WHERE CONTAINS(pdf_file,'PL/SQL')>0;
         ID_PK FNAME
             1 plsql_new_in_11gr1.pdf
    SQL> SELECT id_pk,fname
      2  FROM pdm
      3  WHERE CONTAINS(pdf_file,'Fine-grained access control')>0;
         ID_PK FNAME
             1 plsql_new_in_11gr1.pdf
    SQL> SELECT id_pk,fname,DBMS_LOB.getlength(pdf_file)
      2  FROM pdm;
         ID_PK FNAME                          DBMS_LOB.GETLENGTH(PDF_FILE)
             1 plsql_new_in_11gr1.pdf                               170264
             2 Model clause.pdf                                    4288164
    SQL> SELECT id_pk,fname
      2  FROM pdm
      3  WHERE CONTAINS(pdf_file,'Saubhik')>0;
    no rows selected
    SQL> EXECUTE load_file(3,'plsql_conditional_compilation.pdf');
    BEGIN load_file(3,'plsql_conditional_compilation.pdf'); END;
    ERROR at line 1:
    ORA-12899: value too large for column "SCOTT"."PDM"."FNAME" (actual: 33,
    maximum: 30)
    ORA-06512: at "SCOTT.LOAD_FILE", line 8
    ORA-06512: at line 1
    SQL> EXECUTE load_file(3,'conditional_compilation.pdf');
    PL/SQL procedure successfully completed.
    SQL> SELECT id_pk,fname,DBMS_LOB.getlength(pdf_file)
      2  FROM pdm;
         ID_PK FNAME                          DBMS_LOB.GETLENGTH(PDF_FILE)
             1 plsql_new_in_11gr1.pdf                               170264
             2 Model clause.pdf                                    4288164
             3 conditional_compilation.pdf                          540594
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(USER, 'PDM', cascade=>TRUE);
    PL/SQL procedure successfully completed.
    SQL> SELECT id_pk,fname
      2  FROM pdm
      3  WHERE CONTAINS(pdf_file,'conditional')>0;
         ID_PK FNAME
             1 plsql_new_in_11gr1.pdf
             3 conditional_compilation.pdf
    SQL> SELECT id_pk,fname
      2  FROM pdm
      3  WHERE CONTAINS(pdf_file,'The Catch 22')>0;
         ID_PK FNAME
             3 conditional_compilation.pdf
    SQL>

  • How to retain focus in Web forms 6i item when displaying pdf image

    How to retain focus in Web forms 6i item when displaying pdf image in a multi-record block?
    Hello.
    I have a Web Forms 6i program (version Forms 6.0.8.19.2) running in a 3-tier application. The web form program has a multi-record block containing invoices. When navigating to a record, the form should display the PDF invoice image which is stored in an Oracle 8.1.7 database as a BLOB in another window. When user press down-arrow, the next PDF invoice image should be displayed.
    I am able to accomplish the functionality above by using web.show_document('URL', target') in the when-new-record-instance. The URL being called is a PL/SQL Web Toolkit stored procedure using wpg_docload.download_file built-in.
    The problem is that the focus is lost on the Webform and the focus is shifted to the PDF image window when you navigate to the next record using down-arrow. I want to retain the focus in the form as this is a data-entry form, the operator will use down-arrow to go to the next-record rather than the mouse. I also only want to do this for this Invoice Entry form and NOT to all forms.
    Please advise how to resolve this problem. Thank you.
    Regards,
    Armando

    Magesh,
    the issue of a SSO protected form showing the logon dialog is a knwon issue for Windows200 and the Oracle9iAS base release. If you applied Forms Patch 1 then this should be solved. Hope that I am right in that you are using Oracle9iAS and not Oracle9iDS. Do you see the Single Sign-On logon screen or the Forms logon dialog directly? Check the forms90.conf file in teh forms90/server directory as this contains the Form sso settings (mod_osso) which by default is commented out and therefore inactive. You need to remove the commenting '#' characters and make sure that each sentence having a '#' in front, after that starts on a new line.
    The Forms deployment documentation within the Oracle9iAS docu provides this information too.
    Frank

  • How to Hide Acrobat Reader When Printing PDFs From Web App

    We have a web application that prints pdfs.  Here's the line of code that prints the pdfs:  
    win32api.ShellExecute(0, "print", filename, None, ".", 0)
    When the pdf prints from our web application, Adobe Acrobat opens and we don't need it to open.  Is there a way to get the pdf to print without Acrobat interupting the user?

    Use standard VB/Windows features to minimize the app.

  • How can I save to the same map every time when printing pdfs?

    How can I save to the same map every time when printing pdfs?
    Finder points to the document map even when I chose a different map recently.
    I often print series of pdfs from the print dialog box, I'd like to choose the map to save to and then have all subsequent pdf prints automatically directed to the same map until I decide otherwise.

    that link seems to be broken right now:
    403 Error - Forbidden  - No cred, dude.

  • Removing the "Security Warning" dialogue box on default when a PDF is opened

    Hey
    I have created a pdf document with a specific data written using iText Libraries. I have actually created a beacon that generates a notification sent to the owner's email when the pdf is opened.
    The code is under OpenAction. The problem I am facing is that as I open the document, a dialogue box is opened saying "Security Warning" The document is trying to connect to : URL. How do I get rid of this dialogue box. ? I don't want this dialogue box to appear and allow the connection by default. I have tried playing with the Trust Manager - but that doesn't seem to be the solution, as  am trying to execute my PDF document at a remote machine.

    There was a lot of media fuss years back when it was found out that PDF files could "phone home", i.e. do what you want to do. So Adobe put this warning in. It wouldn't be much good as a warning if the creator of a PDF could choose to turn it off!
    Document creators like to track people opening documents. Privacy advocates consider this a breach of privacy. The latter group shouts louder. http://en.wikipedia.org/wiki/Phoning_home

  • Windows Server 2008R2 running Remote Desktop Services reports printer process does not exist when installing PDF printer

     Windows Server 2008R2 running Remote Desktop Services reports printer process does not exist when installing PDF printer, And when Installing network printers from the domain controller it reports it cannot connect to printer.  I can ping all
    network devices. I can connect to the internet.
    On boot I get a netlogon 5719 error followed by service control manager errors 7023,7001 and a group policy error 1129.
    Clients can connect to the remote application and RDP operates to connect to the server internally and externally.
    The domain controller is another server 2008r2 box. I have scoured the internet but have not found any solutions that work yet.

    Hi,
    After referring to your post, it can be identified that the issue which you are facing is mostly due to some network issue in your environment. Please recheck your network connection issue between computer and domain controller. 
    Can you able to ping with IP address and also with fully qualified name of a domain controller in the users' and computers' domain. If it fails states that name resolution issue with computer and domain controller. Are you using MS DHCP Relay agent then there’s
    available Hotfix for the particular Event ID. Please go through this KB 2459530 to fix the error event ID.
    As per the net logon error 5719 which you are facing states that the client component of Netlogon was unable to locate a DC for the domain it was trying to perform an operation against. Below is one of the reason. If this is being logged on a DC and the event
    refers to the DC's own domain, something might be preventing the client component of Netlogon from starting a network session (to itself or to another DC in the domain). The following event 7001 & 7023 states start & stop operation service. Please
    go through beneath article for more details.
    1.  Event ID 5719 is logged when you start a computer
    2.  Netlogon 5719 and the Disappearing Domain [Controller]
    3.  Event ID 1129 — Microsoft-Windows-GroupPolicy
    Hope it helps!
    Regards.

  • How do I set Safari to prompt me to choose a filename when downloading?

    I can't figure this out at all. How do I set Safari to give me a dialog box in which I can choose my own filename when downloadiing a file? Right now, as soon as I click "download linked file" it just puts the files straight on my desktop with whatever filename was assigned to it.
    This will help me identify files as I often download files saved with numerical names.

    Greeting Marco,
    This KBase article should help:
    http://docs.info.apple.com/article.html?artnum=301465

  • HP LaserJet 1536 - grey background when printing pdf files

    HP LaserJet M1536dnf MFP, Windows 7 32-bit
    Firmware data 20140123
    The latest drivers from official site (HP Universal peinting PCL and Universal printing PS v 5.8.0)
    When printing pdf files from Acrobat Reader, Adobe Acrobat or FoxIt the grey background appears on the paper.  The content of the file is printed normally. Printing from the other sources (Word, Excel, NotePad) is OK
    This question was solved.
    View Solution.

    Hello, 
    If your PC works on Windows XP, then you might try downloadin the hotfix available @ Microsoft.
    Url :
    http://support.microsoft.com/kb/971250
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

Maybe you are looking for