Unable to open PDF in Web Browser and delay for printing

In my LAN, on several PCs running with Windows 7 (32 and 64 bits), I observe two problems with "Acrobat Reader XI":
- Delays / unable to open pdf files in the web browser (Internet Explorer).
- Delays in printing: for example it takes over 8 minutes to print a pdf file: 400kB for two pages (on different printers / models).
Here's the list of actions that I've allready tried to issue those problems:
For the Web Browser problem :
- Repair the "Acrobat Reader XI" installation.
- Uninstalling and Installing Acrobat Reader.
- In the web browser, disabling and activating the add-on (Adobe PDF Reader).
- Uninstall "Acrobat Reader XI" and install "Acrobat Reader X"
Temporary issue: downgrade to "Acrobat Reader 9", which solves the problem with the web browser.
For the printing delay:
- Repair the "Acrobat Reader XI" installation
- Change the printers drivers (install Universal Drivers PCL)
- Check the box: "Print As Image" before printing
Any Idea ?

You can get that error if there is still an old Adobe Reader plugin in the plugins folder in the Firefox program folder.
C:\Program Files\Mozilla Firefox\plugins\nppdf32.dll
See also http://kb.mozillazine.org/Adobe_Reader

Similar Messages

  • Opening PDF in Web Browser(IE)

    Hi,
    I have written a program to download PDF file. When user will click on "Download" link, PDF file should open in web browser IE itself. Currently file is opening in separate window. I am creating this PDF file run time and it is not stored in harddisk. In Acrobar Reader, I have checked the check box "Display PDF in browser". Despite this it is opening in separate window.
    I have written following code:
    byte abyte0[] = pdfGenerator.generatePDF(getXslFile(instancedata), new String(instancedata.requestResult.message, "UTF-8"));
    httpservletresponse.setHeader("Cache-Control", "no-cache");
    httpservletresponse.setHeader("Cache-Control", "max-age=0");
    httpservletresponse.setHeader("Content-Disposition", "inline; filename=" + instancedata.userId + "_" + System.currentTimeMillis() + ".pdf");
    httpservletresponse.setContentType("application/pdf");
    String s = new String(abyte0, "UTF-8");
    servletoutputstream = httpservletresponse.getOutputStream();
    servletoutputstream.write(abyte0, 0, abyte0.length);
    servletoutputstream.flush();
    Kindly suggest what is required to open PDF in Web browser (IE).
    Regards,
    Dev

    I don't see anything wrong here offhand.
    In your download link, you aren't using target="new" or anything, are you?

  • Unable to open PDF file in browser using Reader 9 with IE8

    I just updated to IE8 and when trying to open a PDF file on the browser, I received a message stating to use Adobe Reader 8 or 9.  I downloaded AR9 and still receive the same message and cannot open PDF files in browser window.  It defaults to my Adobe Acrobat 6.0 which will not open the file.  I have Windows XP.  I do not have a problem opening a PDF file in Yahoo mail with AR9.  I have tried many different ideas on the web to no avail.  Appreciate any help to be able to default to open PDF files in the browser using AR9 which is apparently required by IE8.

    Fixed problem by taking to a computer store to find that my hard drive storage was maxed out.  I had the hard drive repaced with a larger amount of storage.   Problem resulted from inadequate amount of storage space which prevented me from downloading and installing Adobe Reader 9.
    Thanks to al that responded.  

  • I have Adobe Reader in stalled on my MacBook Pro but the plugin is not showing in FireFox so I am unable to open pdf's in browser. How can I correct?

    When I encounter a site that requires me to fill in a pdf form the browser opens in Adobe Reader and not in the browser. I have checked off in Adobe Reader to open pdf's in browser but it still will not.

    I do not think adobe reader works as a plugin for Firefox on Macs, ( but a PC user myself so I can not check). See [[Installing and updating Adobe Reader]]
    Note specifically comments in the Mac version of that [/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox?s=pdf+plugin+mac&as=s#os=mac&browser=fx35] about alternative plugins.

  • I am unable to open pdf files in firefox, and I have tried all the solutions proposed by others. How can I re-enable pdf viewing in firefox?

    I have recently switched to Firefox from Google Chrome, and I am finding that I am unable to open any pdf files from the web in any way in Firefox. I cannot download them and open them in Adobe Reader, and I cannot preview them in Firefox, nor can I use the Adobe plugin. I have tried to use the solutions posed by users on this site, but none of them have worked. Any time I make a change to settings to try to solve this issue, the change never allows me to view the pdf file, and the setting reverts to the previous setting after the browser has been restarted. I don't care how I view the file, but I need to either be able to view it as a preview or I need to be able to download it.

    I don't know if this is any help I have had a problem where the pdf files were not opening correctly which I think was the problem here. I spent hours of head scratching and have now found out what the problem is. Right click on the Adobe Reader Icon on the desktop. Select properties and then the compatibility tab. You will see the uppermost section in this screen is Compatibility mode. I have Windows 7 and mine was set to Windows XP. I changed that to Windows 7 and now the problem is resolved. In short use the above instructions to check you are using the right compatibility mode for the version of Windows you are using and your troubles should be over!!

  • Unable To Open PDF File In Browser

         I am unable to open a PDF file within my browser using Adobe Reader.  Whenever I attempt to open a PDF file, I get the following message:
    The Adobe Acrobat/Reader selected for viewing PDF documents in browsers cannot be found at its installed location, it may have been moved or deleted.
    Please reinstall or repair the application (15:524)
         I have ensured that Adobe Reader is set as my default program for opening PDF files, and have downloaded and installed the latest version of Adobe Reader.  I am running Windows 8 and Internet Explorer 10.
         I have attempted to contact Adobe Reader Support and was informed that the expected wait time was 3-5 minutes.  I have been holding for over an hour without any support.

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • XML - WML; Unable to open in WAP/WEB browser

    I am trying to convert an XML document into a WML document. I have the following code:
    private void generateWML() {
         wmlPath = root+System.getProperty("file.separator")+"results.wml";
         File results = new File(wmlPath);
         try {
              //instantiate a TransformerFactory
              TransformerFactory tFactory = TransformerFactory.newInstance();
              //Generate TRansformer object using stylesheet Source
              Source stylesheet = new StreamSource(stylePath);
              Transformer transformer = tFactory.newTransformer(stylesheet);
              transformer.setOutputProperty(OutputKeys.INDENT, "yes");
              transformer.setOutputProperty(OutputKeys.MEDIA_TYPE, "text/vnd.wap.wml");
              //Use transformer to transform XML source and send the output to SourceResult object
              StreamSource xmlIn = new StreamSource(xmlPath);
              StreamResult wmlOut = new StreamResult(results);
              transformer.transform(xmlIn, wmlOut);
         catch (TransformerConfigurationException tce) {
              out.println(tce.getMessage()+"<br />");
         catch (TransformerException te) {
              out.println(te.getMessage()+"<br />");
    }I can open the resultant wml file in my text editor, but am unable to load the file both in IE and in my WAP phone simulator.
    I get an alert box saying Access to the specified device, path, or file is denied when I try to open the file in IE, and I get a No response, Try again alert when I try to load the file in my Nokia Mobile Internet Toolkit.
    Does anyone know how to solve this problem?
    Thanking in advanced.
    gerbera

    Hi ,
    I've a problem in browsing in WAP phone simulator. I use xml --> xsl --> wml.
    But, in wap phone, i can see only "url not found" error. How can i solve it?
    Plz help me if possible.
    Here's my code.....
    ----------------------------- address-wml.xsl ------------------------------------------------------------
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template
    match="contact">
    <xsl:processing-instruction name="cocoon-format">
    type="text/wml"
    </xsl:processing-instruction>
    <wml>
    <card id="index" title="Your Contacts">
    <p align="center">
    Phone Book
    </p>
    </card>
    <card id="contact" title="Phone Book">
    <p>
    <b><xsl:value-of select="name/first-name"/>
    <xsl:text>
    </xsl:text>
    <xsl:value-of select="name/last-name"/></b>
    <xsl:value-of select="phone"/>
    <do type="accept" label="More">
    <go href="#Address"/>
    </do>
    </p>
    </card>
    <card
    id="Address" title="address">
    <p>
    <b>
    <xsl:value-of
    select="name/first-name"/>
    <xsl:text> </xsl:text>
    <xsl:value-of
    select="name/last-name"/>
    </b>
    <xsl:value-of select="address/street"/>
    <xsl:value-of select="address/city"/>
    <xsl:value-of
    select="address/state"/>
    <xsl:value-of select="address/country"/>
    Main
    <do type="prev">
    <prev/>
    </do>
    </p>
    </card>
    </wml>
    </xsl:template>
    </xsl:stylesheet>
    ---------------------------------------------- homer.xml ------------------------------------------------------------
    <?xml-stylesheet href="address-wml.xsl? type="text/xsl? media="wap"?>
    ---------------------------------------------- sitemap.xmap --------------------------------------------------------
    <?xml version="1.0"?>
    <!-- CVS $Id: sitemap.xmap,v 1.13 2003/11/18 07:12:10 tony Exp $ -->
    <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
    <!-- =========================== Views =================================== -->
    <map:views>
    <map:view name="content" from-label="content">
    <map:serialize type="xml"/>
    </map:view>
    <map:view from-label="content" name="pretty-content">
    <map:transform src="context://stylesheets/system/xml2html.xslt"/>
    <map:serialize type="html"/>
    </map:view>
    <map:view name="links" from-position="last">
    <map:serialize type="links"/>
    </map:view>
    </map:views>
    <!-- =========================== Pipelines ================================= -->
    <map:serializers>
    <!--<map:serializer logger="sitemap.serializer.wml" mime-type="text/vnd.wap.wml" name="wml" src="org.apache.cocoon.serialization.XMLSerializer">
    <doctype-public>-//WAPFORUM//DTD WML 1.1//EN</doctype-public>
    <doctype-system>http://www.wapforum.org/DTD/wml_1.1.xml</doctype-system>
    <encoding>ASCII</encoding>
    <omit-xml-declaration>yes</omit-xml-declaration>
    </map:serializer>
    </map:serializers>
    <map:pipelines>
    <map:pipeline>
    <map:match pattern="homer.wml">
    <map:generate src="homer.xml"/>
    <map:transform src="address-wml.xsl"/>
    <map:serialize type="wml"/>
    </map:match>
    </map:pipeline>
    </map:pipelines>
    </map:sitemap>

  • Unable to open reports in web browser through 9ias

    Hi ...
    I got the following error when i am clling from web.
    I saved my reports into database from .rdf format.
    Error: The requested URL was not found, or cannot be served at
    this time.
    Oracle Reports Server CGI - Report Job has terminated with error.
    Reports Server Replies:
    REP-0110: Unable to open file 'STATION'.
    REP-1070: Error while opening or saving a document.
    REP-0110: Unable to open file 'STATION'.
    I wouid appreciate any help
    Regards
    Gopi

    Hi,
    Just check I think users are executing reports first time, Go to Start Menu of Windows -> All Programs -> Business Explorer -> Analyser.
    Then a pop windows will come which will ask for enabling Macros in Excel.
    Check the Authorization Role for User in TCode PFCG, Check the Sub option for S_RS_COMP & S_RS_COMP1.
    Regards,
    Rajdeep.

  • Unable to open up another web browser when using a button among item

    I am trying to call another web page(pop up window) with button displayed among items, the problem is there is not place to put a URL redirect. I could only do it with a button not displayed among items by putting in URL javascript: openPopUp(); which is calling a function which is in the HTML Header of my page.
    function openPopUp()
    window.open('f?p=&APP_ID.:14:&SESSION.::NO.:::','Popup','width=800,height=500,scrollbars=1,resizable=1');
    Doews anyone have an idea. I was unable tofind an in this forum that would work for me.
    Thanks
    Aron

    Aron,
    Did you try to add the link in the button Attibutes property ?
    Button>> edit >> attribute : onClick="javascript:window.open('f?p=&APP_ID.:14:&SESSION.::NO.:::','Popup','width=800,height=500,scrollbars=1,resizable=1');"
    This should work,
    Thanks
    Sam
    Please reward good answers by marking them corrent or helpful!

  • Cannot View PDF in Web Browser error

    Using windows XP sp3 has adobe reader 9 on it...
    Installing Adobe Acrobat 9 Pro extended was trouble prone enough, but now there is more...
    When trying to open a PDF in a browser window, you get the following dialog error message (sample site:http://support.apple.com/manuals/#iphone)
    "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser.
    Adobe Acrobat/Reader version 8 or 9 is required. Please exit and try again."
    For the cost of this program, I expected better. The above was not a problem before installing Adobe Acrobat 9 Pro extended.
    Please advise.
    Thanks
    bob

    I did a google search and found a fix that was a bunch of registry entries that worked for me:
    Ted Neubauer, "Reader 9 won't open PDF from web browser" #15, 15 Jul 2008 7:47 am
    It is just anoying to spend this kind of money on a piece of software and have so many problems out of the box.
    Yes, I have run the updater software.
    What is the phone number for adobe support?
    Thanks
    Bob

  • Adobe Reader 11 is unable to open PDF's from Internet Explorer 11

    My boss is currently operating on the Adobe Reader 11 and often needs to use Internet Explorer 11 for certain programs.
    Unfortunately the Adobe Reader is unable to open PDFs from Internet Explorer and often comes up with a message telling us that the file is either damaged, no longer exists or that there is a problem with the syntax.  She does not have this problem with Google Chrome.  We have tried several ideas regarding the security settings but nothing seems to correct the problem.  Could someone shed some light on how to fix this error?

  • I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it.

    I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it. NEED HELP

    Adobe Acrobat NPAPI Plug-in, Version 11.0.04
    Adobe® Acrobat® Plug-in for Web Browsers, Version 11.0.04 — from file “AdobePDFViewerNPAPI.plugin”.
    application/pdf
    Acrobat Portable Document Format
    pdf
    application/vnd.adobe.pdf
    Acrobat Portable Document Format (Interim)
    pdf
    application/vnd.adobe.pdfxml
    Acrobat XML Portable Document Format
    pdfxml
    application/vnd.adobe.x-mars
    Acrobat XML Portable Document Format (Interim)
    mars
    application/vnd.adobe.xdp+xml
    XML Data Package
    xdp
    application/vnd.adobe.xfd+xml
    FormFlow99 Data File
    xfd
    application/vnd.adobe.xfdf
    Acrobat Forms Data Format in XML
    xfdf
    application/vnd.fdf
    Acrobat Forms Data Format
    fdf
    doubleTwist Web Plugin
    doubleTwist Web Plugin — from file “doubleTwistWebPlugin.bundle”.
    application/x-vnd-doubletwist
    doubleTwist Web Plugin
    Java Applet Plug-in
    Displays Java applet content, or a placeholder if Java is not installed. — from file “JavaAppletPlugin.plugin”.
    application/x-java-applet
    Basic Java Applets
    javaapplet
    application/x-java-applet;deploy=10.25.2
    Java applet
    application/x-java-applet;javafx=2.2.25
    Java applet
    application/x-java-applet;jpi-version=1.7.0_25
    Java applet
    application/x-java-applet;version=1.1
    Java applet
    application/x-java-applet;version=1.1.1
    Java applet
    application/x-java-applet;version=1.1.2
    Java applet
    application/x-java-applet;version=1.1.3
    Java applet
    application/x-java-applet;version=1.2
    Java applet
    application/x-java-applet;version=1.2.1
    Java applet
    application/x-java-applet;version=1.2.2
    Java applet
    application/x-java-applet;version=1.3
    Java applet
    application/x-java-applet;version=1.3.1
    Java applet
    application/x-java-applet;version=1.4
    Java applet
    application/x-java-applet;version=1.4.1
    Java applet
    application/x-java-applet;version=1.4.2
    Java applet
    application/x-java-applet;version=1.5
    Java applet
    application/x-java-applet;version=1.6
    Java applet
    application/x-java-applet;version=1.7
    Java applet
    application/x-java-vm
    Java applet
    application/x-java-vm-npruntime
    Java applet
    QuickTime Plug-in 7.7.1
    The QuickTime Plugin allows you to view a wide variety of multimedia content in web pages. For more information, visit the QuickTime Web site. — from file “QuickTime Plugin.plugin”.
    application/sdp
    SDP stream descriptor
    sdp
    application/x-mpeg
    AMC media
    amc
    application/x-rtsp
    RTSP stream descriptor
    rtsp,rts
    application/x-sdp
    SDP stream descriptor
    sdp
    audio/3gpp
    3GPP media
    3gp,3gpp
    audio/3gpp2
    3GPP2 media
    3g2,3gp2
    audio/aac
    AAC audio
    aac,adts
    audio/ac3
    AC3 audio
    ac3
    audio/aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/amr
    AMR audio
    amr
    audio/basic
    uLaw/AU audio
    au,snd,ulw
    audio/mid
    MIDI
    mid,midi,smf,kar
    audio/midi
    MIDI
    mid,midi,smf,kar
    audio/mp3
    MP3 audio
    mp3,swa
    audio/mp4
    MPEG-4 media
    mp4
    audio/mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/mpeg3
    MP3 audio
    mp3,swa
    audio/vnd.qcelp
    QUALCOMM PureVoice audio
    qcp,qcp
    audio/wav
    WAVE audio
    wav,bwf
    audio/x-aac
    AAC audio
    aac,adts
    audio/x-ac3
    AC3 audio
    ac3
    audio/x-aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/x-caf
    CAF audio
    caf
    audio/x-gsm
    GSM audio
    gsm
    audio/x-m4a
    AAC audio
    m4a
    audio/x-m4b
    AAC audio book
    m4b
    audio/x-m4p
    AAC audio (protected)
    m4p
    audio/x-midi
    MIDI
    mid,midi,smf,kar
    audio/x-mp3
    MP3 audio
    mp3,swa
    audio/x-mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/x-mpeg3
    MP3 audio
    mp3,swa
    audio/x-wav
    WAVE audio
    wav,bwf
    image/jp2
    JPEG2000 image
    jp2
    image/jpeg2000
    JPEG2000 image
    jp2
    image/jpeg2000-image
    JPEG2000 image
    jp2
    image/pict
    PICT image
    pict,pic,pct
    image/png
    PNG image
    png
    image/tiff
    TIFF image
    tif,tiff
    image/x-bmp
    BMP image
    bmp,dib
    image/x-jpeg2000-image
    JPEG2000 image
    jp2
    image/x-macpaint
    MacPaint image
    pntg,pnt,mac
    image/x-pict
    PICT image
    pict,pic,pct
    image/x-png
    PNG image
    png
    image/x-quicktime
    QuickTime image
    qtif,qti
    image/x-sgi
    SGI image
    sgi,rgb
    image/x-targa
    TGA image
    targa,tga
    image/x-tiff
    TIFF image
    tif,tiff
    video/3gpp
    3GPP media
    3gp,3gpp
    video/3gpp2
    3GPP2 media
    3g2,3gp2
    video/avi
    Video For Windows (AVI)
    avi,vfw
    video/flc
    AutoDesk Animator (FLC)
    flc,fli,cel
    video/mp4
    MPEG-4 media
    mp4
    video/mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/msvideo
    Video For Windows (AVI)
    avi,vfw
    video/quicktime
    QuickTime Movie
    mov,qt,mqv
    video/sd-video
    SD video
    sdv
    video/x-m4v
    Video (protected)
    m4v
    video/x-mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/x-msvideo
    Video For Windows (AVI)
    avi,vfw
    SharePoint Browser Plug-in
    Microsoft Office for Mac SharePoint Browser Plug-in — from file “SharePointBrowserPlugin.plugin”.
    application/x-sharepoint
    Microsoft Office for Mac SharePoint Browser Plug-in
    Shockwave Flash
    Shockwave Flash 11.9 r900 — from file “Flash Player.plugin”.
    application/futuresplash
    FutureSplash Player
    spl
    application/x-shockwave-flash
    Shockwave Flash
    swf
    Silverlight Plug-In
    5.1.20913.0 — from file “Silverlight.plugin”.
    application/x-silverlight

  • I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem.

    I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem. Uninstalled it. Still have the problem with Firefox.
    == This happened ==
    Every time Firefox opened

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • I use Outlook for my email on the Safari web browser, and about 90% of the time when I want to attach a pdf or jpg file the email message will crash.

    I use Outlook for my email on the Safari web browser, and about 90% of the time when I want to attach a pdf or jpg file it fails and about 50% of the time when I want to send a standard text massage it will also fail and the email massage crashes. The only way I can get my Outlook to work is if I switch to Firefox web browser. I would rather not switch to a new web browser if I don't have to.
    It seems like what ever the problem is that its related the Safari web browser, because it works fine on the Firefox web browser.
    I think its some kind of plug-in failure because it giving me a LOC ERROR:
    LOC ERROR: Unable to locate localized string for resource ID 5007.
    How can I fix this Plug-in?
    And, yes my softwer is conpletly updated…

    That's an Outlook issue. You'll probably get better responses posting on the Office for Mac forums.

  • Acrobat plug-in. I get this when try to opem. The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Please exit Adobe Acrobat/Reader and exit your Web Browser and try again. Don't problems w/ Internet Explorer-

    Acrobat plug-in.
    The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser.
    Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.

    See if you can find a NPPDF32.DLL files in the Firefox program folder (C:\Program Files\Mozilla Firefox\)
    You can see the installed plugins on the about:plugins page.
    * http://kb.mozillazine.org/about%3Aplugins
    You can set the pref plugin.expose_full_path to true on the about:config page to see the full path of plugins on the about:plugins page.
    It is best not to leave that pref set to true as it exposes that full path to web servers, so reset that pref to false after you are done with the about:plugins page.
    You can open about:plugins and about:config via the location bar, like you open a website (about: is a special protocol to access some build-in pages).
    If you get a warning when opening the about:config page then you can confirm that you want to continue.
    See Manually uninstalling a plugin:
    * https://support.mozilla.com/kb/Troubleshooting+plugins

Maybe you are looking for

  • Not a significant problem, but has anyone noticed iTunes opening itself, or suddenly playing when dormant?

    The title asks the questions.

  • Texts copying rules

    Hy guys, my problem is this:I insert a text into the view 'Purchase Order Text' in material master record and this text is taken automatically into the tab 'Purchase order text' in the Inforecord : I don't want this,how can I avoid this? Thanks in ad

  • Capital Utilization

    Hi, We had procured 4 Capital material in current year done GR > J1IEX= 50% in Current year> MIRO Now we have to sell 2 of the capital material.through Sales process> sales order > Billing > J1IIN. Before that we need to transfer of 50% credit which

  • Authorization Issue to Upload file in Integrated Planning

    Hi All   I have included the planning role for the user...which is the same as mine..I can execute and upload  the file..when I login with the user iD, it says you are not authorize to upload zFILE_SEQ/...in my role..there is Z* values also.. No idea

  • Get domain root directory programmatically

    hello,           There is any way to get the domain root directory path programmatically ??           i.e : D:\bea\user_projects\domains\platformR1           thanks