Submit XML and show a webpage when submission is done

Hi all,
I am doing a project where the customer needs to use a third party signing component (the form is RE off course). Other servers the customer has available is Output and Forms.
The scenario is as follows:
1. The user fills out the form in Reader (stand alone - not through browser plugin) and wants to sign - he then submits (http POST) to the signing server that responds with a URL where the user now can do the actual signing communication with the signing server.
2. The signing process completes and the user must now be notified the his/her form has been signed - this should be done by opening a receipt pdf in the Reader.
I am not sure how/if this can be done by some how letting the Reader wait for a pdf response from LC Forms or something else.
Anybody out there who has done something similar who can point me in the right direction?
Thanks in advance
Sincerely
Kim Christensen
Dafolo A/S

Hi
Have a look in my blog (in my profile). That gives a solution for displaying reports on a page without submit.
Cheers
Ben

Similar Messages

  • The webpage declined to show this webpage when WebPart Page is loaded

    I have a webpart page when I try to open that page I'm getting. The webpage declined to show this webpage.It loaded when the part was added to the page first time.But when I redeployed the WSP I'm getting this error.
    Please help me in this.
    Thanks & Regards,
    Mathi.
    With Regards, Mathi.

    Hi,
    According to your post, my understanding is that the webpage declined to show this webpage when WebPart Page was loaded.
    The problem was within the web part page. A web part was causing the page to 403. Some configuration to the web part had made the web part no longer permissible to show to the user. Instead of just not showing the web part, SharePoint declines to show the
    web part page.
    To resolve the problem, go to the Web Part Page Maintenance page for the page that is giving the 403 error:
    http://ServerName/SiteName/_layouts/spcontnt.aspx?&url=%2fSiteName%2fPages%2fPageName.aspx
    One by one disable the web parts. One of them is the problem. When it is disabled, the page will display properly to the user.
    You’d better to delete the web part and re-add it.
    There is an article for your reference, although it is about the SharePoint 2007, it still works for SharePoint 2010.
    http://dlairman.wordpress.com/2010/10/12/error-the-website-declined-to-show-this-webpage-http-403/
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • My game center won't load and shows up blank when I try to open it. I've already tried to close all the apps and restart it and it still won't work. Is their anyway to fix it without restoring it??

    My game center won't load and shows up blank when I try to open it. I've already closed all of my apps and restarted it and it still won't work. Is their anyway to fix it without restoring it and starting over??

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - sign out and the sign back into Game Center
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • Where XML and related file belong when send from FCP to Color?

    Hi(Bonjour)!
    Where XML and related file belong when send from FCP to Color?
    I want to start a fresh project and delete all previous tests.
    Michel Boissonneault

    Hi(Bonjour)!
    I messed up with preference for home directory.
    Thank you.
    Michel Boissonneault

  • How can i fix my iphone i can't update or download apps, when i try it tells me toput my credit card info and i do but when i push done it tells me my payment has been declined, but why do i have to pay to update or download free apps. How can i fix this?

    how can i fix my iphone i can't update or download apps, when i try it tells me toput my credit card info and i do but when i push done it tells me my payment has been declined, but why do i have to pay to update or download free apps. How can i fix this?

    You must contact iTunes support to get the problem resolved.
    http://www.apple.com/support/itunes/contact/
    If there is a problem with your account or payment info, you cannot
    download anything (including free apps or updates) until the matter
    is resolved.
    In countries where the iTunes Store only sells apps, the accepted payment methods are Visa, MasterCard, and American Express. Other payment types such as gift cards, store credit, monthly allowances, ClickandBuy, and PayPal are not accepted. Depending on your App Store country, prices may be listed in your local currency, US Dollars, or Euros.    http://support.apple.com/kb/HT5552

  • I cant update my software as it always prompted me ,your start up disk is full and not enough space, when i had done the deleting some of my documents and stuff that i dont need it.

    i cant update my software as it always prompted me ,your start up disk is full and not enough space, when i had done the deleting some of my documents and stuff that i dont need it.

    I use CCleaner from the AppStore to delete the 'useless' stuff. It's free and works great for me

  • I have an iPhone 3GS and I restarted it. I have crossed my language, wifi, country and everything, but suddenly when I am done with that a message comes time after time "Activation error." What can I do?

    I have an iPhone 3GS and I restarted it. I have crossed my language, wifi, country and everything, but suddenly when I am done with that and it says "activating iPhone", a message comes time after time "Activation error." What can I do?

    Most activation errors happen because a phone has been previously hacked or jailbroken.  If this is the case, we cannot help you on this forum.  You'll have to look elsewhere for assistance.

  • Draw figures from a xml and then draw anothers when I click on them

    This is what I have to do:
    I got a XML file with the info of a drawing: circles, rectangles.....
    I read the file and I draw the figures on a JPanel.
    And now what I have to do is this:
    When I click on a figure I have to recognize what figure is, for example, rectangle number 2 on the XML file. Then I have to read the XML and foud what I have to draw when I click on that figure, this info is on the XML:
    <Transition Rectangle="2" NextDraw="Rectangle 3" />
    How do I draw all these figures and keep the info I need (name and number of the figure)? And how do I manage mouse events for recognize the click on a figure for draw anothers.
    Sorry for my bad english and thanks

    I don't know the structure of your XML file.
    Anyway, I guess it's something like the following :
    shapes.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <shapes>
         <Transition Rectangle="1" NextDraw="Rectangle 2" />
         <Transition Rectangle="2" NextDraw="Rectangle 3" />
         <Transition Rectangle="3" NextDraw="Circle 1" />
         <Transition Circle="1" NextDraw="Circle 2" />
         <Transition Circle="2" NextDraw="Circle 3" />
         <Transition Circle="3" />
    </shapes>Here the java code. Plz, take a look at it and adapt it to your needs.
    XMLParserHandler.java
    import java.util.HashMap;
    import java.util.Map;
    import org.xml.sax.Attributes;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.xml.sax.helpers.DefaultHandler;
    public class XMLParserHandler extends DefaultHandler {
         Map<String, String> shapes;
         public XMLParserHandler(){
              shapes = new HashMap<String, String>();
         public void startDocument() throws SAXException {
              //System.out.println("Start Shapes Document.xml");
              shapes = new HashMap<String, String>();
         public void endDocument() throws SAXException {
              //System.out.println("End Shapes shapes.xml");
         public void startElement(String uri, String localName, String qName,
                   Attributes attributes) throws SAXException {
              //System.out.println("Start Element : " + qName);
              //display(attributes);
              if("TRANSITION".equals(qName.toUpperCase())){
                   String key = null;
                   String value = "";
                   int n = attributes.getLength();
                   String attrName;
                   for (int i = 0; i < n; i++) {
                        attrName = attributes.getQName(i);
                        if(! "NEXTDRAW".equals(attrName.toUpperCase())){
                             key = new String(attrName+" "+attributes.getValue(i));
                        }else{
                             value = new String(attributes.getValue(i));
                   if(key!=null){
                        shapes.put(key.toUpperCase(), value.toUpperCase());
         public void endElement(String uri, String localName, String qName)
                   throws SAXException {
              //System.out.println("End Element : " + qName);
         public void characters(char[] ch, int start, int length)
                   throws SAXException {
              //System.out.println(new String(ch, start, length));
         public void error(SAXParseException e) throws SAXException {
              throw e;
         public void fatalError(SAXParseException e) throws SAXException {
              throw e;
         public Map<String, String> getShapes() {
              return shapes;
         private void display(Attributes attrs){
              int n = attrs.getLength();
              for (int i = 0; i < n; i++) {
                   System.out.println("***"+attrs.getQName(i)+" = "+attrs.getValue(i));
    MyPanel.java
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Shape;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Rectangle2D;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import javax.swing.JPanel;
    public class MyPanel extends JPanel {
         static String CIRCLE = "CIRCLE";
         static String RECTANGLE = "RECTANGLE";
         public List shapeList;
         int currentIndex = 0;
         Shape currentShape;
         public MyPanel(Map shapes, String entry) {
              createShapeList(shapes, entry);
              addMouseListener(new MyMouseListener());
         private String getShapeName(String value){
              return value.split("\\s+")[0];
         private void createShapeList(Map shapes, String entry){
              shapeList = new ArrayList();
              Shape shape=null;
              String key = new String(entry);
              String value ;
              int i=0;
              do{
                   value=getShapeName(key);
                   System.out.println(value);
                   if(CIRCLE.equals(value)){
                        shape = new Ellipse2D.Double(5, 5+40*i, 20, 20);
                        System.out.println("==> added circle");
                   }else if(RECTANGLE.equals(value)){
                        shape = new Rectangle2D.Double(5, 5+40*i, 20, 20);
                        System.out.println("==> added rectangle");
                   shapeList.add(shape);
                   key = (String)shapes.get(key);
                   i++;
              }while(value!=null&&value.trim().length()>0);
              currentShape = (Shape)shapeList.get(currentIndex);
         class MyMouseListener extends MouseAdapter{
              public void mouseClicked(MouseEvent e) {
                   int x = e.getX();
                   int y = e.getY();
                   if(currentShape.contains(x, y)){
                        if(currentIndex<shapeList.size()-1){
                             currentIndex++;
                             currentShape = (Shape)shapeList.get(currentIndex);
                             repaint();
         public void paint(Graphics g) {
              Graphics2D g2 = (Graphics2D) g;
              g2.setPaint(Color.red);
              for (int i = 0; i < currentIndex+1; i++) {
                   g2.fill((Shape)shapeList.get(i));
    Main.java
    import java.io.File;
    import java.util.Map;
    import javax.swing.JFrame;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    public class Main {
         public static void main(String[] args) {
              SAXParserFactory spf = SAXParserFactory.newInstance();
              SAXParser parser;
              Map myShapes = null;
              try {
                   parser = spf.newSAXParser();
                   XMLParserHandler handler = new XMLParserHandler();
                   parser.parse(new File("shapes.xml"), handler);
                   myShapes = handler.getShapes();
                   String entry = "RECTANGLE 1";
                   //Create and set up the window.
                   JFrame frame = new JFrame("MyFrame");
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   // Create and set up the content pane.
                   MyPanel newContentPane = new MyPanel(myShapes, entry);
                   newContentPane.setOpaque(true); // content panes must be opaque
                   frame.setContentPane(newContentPane);
                   // Display the window.
                   frame.setSize(400, 400);
                   frame.setResizable(false);
                   frame.setVisible(true);
              }catch(Exception e){
                   e.printStackTrace();
    NB: as mentioned in the Main class (see main method), you should provide the main entry for your xml file : String entry = "RECTANGLE 1";Hope That Helps

  • Ipod Nano 4th or 5th generation won't recognize Itunes and shows loading constantly when I am on Nike plus

    My Ipod Nano all of a sudden won't show up on my Imac computer nor will it show up in Itunes.  I use it for running and I use the Nike + software, at the same time the recognition problem occurred when I click on the Nike + on my Ipod Nano it shows the circle and says "Loading".
    Also when I plug it in to the computer it says Connected do not unplug unless you eject, however there is no icon on my Imac to eject.
    Even when I reboot the Ipod Nano, the same thing happens...the Nike + just says loading and it doesn't get recognized by my Imac.
    Help what do I do????? I have tried rebooting several times, as well as using another mac and no luck. I even sent an email to Apple but so far no answer.  Any clue how to fix this?
    I think it has something to do with the Nike+ application, but don't know what to do.
    Thanks!

    Ipod Nano 4th or 5th generation
    Identifying iPod models
    iPod Manuals
    My Ipod Nano all of a sudden won't show up on my Imac computer nor will it show up in Itunes.
    http://support.apple.com/kb/TS1410 iPod not recognized in iTunes and Mac desktop
    I even sent an email to Apple but so far no answer.
    U.S. iPod and Mac technical support: 1-800-APL-CARE (1-800-275-2273) 

  • Does PSE13 download photos in the order they are taken on that date and show actual time when hovering over the photo as it did in PSE6?

    In my work, I need to be able to look at photos I took throughout the day at various locations and group them by the time I was there on that date to distinguish the different properties I am taking photos of.  In my previous version of PSE6, when the day's pictures were downloaded, they were downloaded to the computer in the order I took them, and if you hovered over the picture it would show the time the photo was taken.  I just need a program that will organize in that fashion.  I do not need a lot of editing options, more the organizational options.

    Hi,
    If you are happy with PSE 6, why not continue to use it?
    PSE 13 can display the images in date/time order like PSE 6 does. The time doesn't appear when you hover over a thumbnail but can be displayed below the thumbnail. The best thing is for you to download the trial version (select version 13 from the following link) and try it for 30 days to see if you like it.
    Download Photoshop Elements products | 13, 12, 11, 10
    If you use the trial, to see the date and time under each thumbnail you need to go to the View menu in the organizer and ensure that Details is checked.
    Brian

  • My Firefox out of the blue won't start and shows not responding when I left click.

    I have uninstalled and reinstalled with no luck. It still show it as not responding. I have a MAC system. I have searched and can't find a fix. Please help.
    == This happened ==
    Every time Firefox opened
    == out of the blue ==
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    This issue is probably caused by the Yahoo! Toolbar.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Armenian fonts installed and show up in Photoshop, but they don't work.

    Hi,
    I have a Mac OSX 10.6.8 running on Snow Leopard. I have Photoshop CS5. I installed about 10 different Armenian fonts (ttf file extensions) and unzipped them. I double clicked them all and installed them into my Font Book. They appear in Final Cut Pro and in Adobe Photoshop, but they do not work. I previously installed the Armeast font and that is the only font that will work in both programs. If I highlight my text and switch to any of the other Armenian fonts--ArmScript, Mshtakan, etc., it will just jump back to the default Armeast font. And the other Armenian fonts--ArmArt, ArmScool, Araratn, Arial ArmenianNew are listed as Latin characters "Sample." I really hate the default Armeast font and there are so many beautiful fonts I would rather be using. Is there any way to enable them to work in Photoshop? I have read through other threads and I couldn't find what I was looking for to answer my question.
    Thank you very much,
    m

    I have the same issue, : (
    Have you found any solution for it yet? please let me know if you did.
    Thanks

  • IPhone won't scroll and show keypad when texting

    iPhone won't scroll and show keypad when texting

    Hi! Thanks for answering but i already tried that. And still it won't scroll and show the keypad when texting. What else can i do?

  • Things and Software to avoid when authoring for DVD-V

    This one is always in the earlier, 1.X FAQ, but is so important it should be repeated here too.
    There have been so many posts along the line of "I cannot burn my DVD in Encore, but Nero works well" that I thought I should share this info with you all.
    As we know, DVD Authoring is very dependant on timing, and on not having other apps getting in the way & locking up the burners, So here is a list of software that is known to interfere with GEAR drivers. It is a raging cert that this also applies here, as all authoring apps are the same sort of thing.
    These 3rd party apps are junk software, to be quite blunt (I expect to get flamed over this, but I cannot help the truth), and should never be installed on an Authoring system.
    Anyway, here is the current list of 
    i known problem software.
    1. B's Clip: This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it. For more information, visit the B's website at http://www.bhacorp.com.
    2. Direct CD or Drag to Disk: These are applications from Easy CD Creator from Roxio. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. To remove them you need to do to Add or Remove Programs in the Control Panel. There you can select Easy CD Creator to change, not remove. Then you must click next until it gives you the option to modify. Then either Direct CD or Drag to Disk should be selected and changed to "make this option not available". Then click next and while the program may look like it is installing, it is removing those options. One thing to remember is that both Direct CD and Drag to Disk will not be installed at the same time. For more information, please visit Roxio's website at http://www.roxio.com/en/support.index.jhtml
    3. GoBack: backup software that constantly runs in the background (Terminate and Stay Ready) this needs not only to be turned off, but disabled. Unfortunately, this may cause some restore points to vanish, but it will free up a lot of hard drive space. For more information visit Symantec's web site for GoBack at http://www.symantec.com/goback/index.html 
    4. DLA: Also HP-DLA, Veritas DLA, and others. DLA stands for Disk Letter Assignment. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it.
    5. InCD: This is packet writing software that comes bundled with Ahead Nero Burning Rom. This package will load a packet-writing software that will constantly talk to your CD/DVD writer, and can cause a number of issues while trying to write a disc. Disabling this software is not enough, as a portion of this package is always running after you start windows. You will need to uninstall it in Add/Remove programs, then reboot to remove it. For more information go to Nero's website at http://www.nero.com/en/
    6. Interactual Player and PC Friendly Player: These programs are DVD software viewers that often come on DVD movie discs, and will try to install themselves everytime you watch a movie on your computer. Please make sure to NOT let these install. Both programs interfere with all DVD Authoring software and should be un-installed from Add or Remove programs in control panel when found. In some cases, you will need to uninstall and reinstall your software to restore functionality after removing one of these. For more information about both players, visit http://player.interactual.com/ 
    7. McAfee Anti-Virus: This is anti-virus software that when running, can cause errors. It needs to be disabled by right clicking on the icon in the lower right side of the task bar. Your DVD Authoring software then needs to be restarted. Whenever you are using your software, McAfee needs to be disabled to ensure unrestricted access to your drive. For more info go to McAfee's website at http://us.mcafee.com/default.asp 
    8. Norton Anti-Virus: This is anti-virus software that when running, can cause errors. It needs to be disabled by right clicking on the icon in the lower right side of the task bar and the automatic updates should be disabled. Your DVD software then needs to be restarted. Whenever you are using your software, Norton needs to be disabled to ensure unrestricted access to your drive. The Norton Website is http://www.symantec.com/ 
    9. StopZilla: StopZilla can hinder required portions of various installers, causing the software to fail. Please completely disable StopZilla, then install your software. Once our software is installed, you may safely enable it again. If you have any difficulty using your software at a later time, you may need to disable StopZilla before going to use your software. Uninstallation is not required. 
    10. MyStorageGuard: This backup software can hinder certain required files from being copied during the installation. Please disable this program before installing , and have it disabled any time you go to use your DVD Authoring software. Uninstallation is not required. 
    11. Napster 2.0: This software includes some basic burning software that can cause burning problems if it is running. You will need to close this program completely before trying to use DVD Authoring software. In some rare cases, you will need to completely uninstall this package to attain full reliability, so if disabling does not solve your issue, please try uninstalling this software, and try again. 
    12. Easy CD Creator 4.x: Due to the age of this package, it is no longer updated by the authors. There are bugs present in this older system that will cause NUMEROUS problems on your machine. Please Uninstall completely, and consider either the new 6.x version from Roxio ( http://www.roxio.com ) or Nero 6.x ( http://www.nero.com ). These packages, installed without the Packet Writing software (DirectCD/Drag to Disk/InCD), all work very well with DVD Authoring software. 
    13. Spyware and Adware - some programs can install other software that can be damaging to your Operating System. Please scan for these programs with a Spyware utility. We recommend Ad-Aware, available freely at http://www.lavasoftusa.com 
    14. Disable the Windows XP packet writing utility. To do so, go to My Computer, Right click oon your DVD burner, choose Properties. Find the "Recording" tab. Uncheck "Enable CD recording on this drive" While you are there, switch off all AutoRun options too. It means going through each option and then selecting "Take No Action" as the default option. AutoRun will "poll" the drive every few minutes to look for a new disc, and if it finds one it will try to open it. 
    15. Symantec PCAnywhere has been reported to cause problems with Encore as the awvid5.dll file it installs is a video driver designed to facilitate the transfer of screen information from one computer to another. Sadly, this causes a conflict which can cause XP to restart - or give a bluescreen if the "Automatically restart" option has been unticked, giving a PAGE_FAULT_IN_NONPAGED_AREA stop condition.
    Another crash can be reproduced by
    a) Open a project
    b) Add an MPEG file and associated WAV file as assets
    c) Link the MPEG file to a menu button by dragging
    d) Encore creates a Timeline for the MPEG file automatically
    e) Open the new Timeline
    f) Drag the MPEG's WAV file into the timeline's audio track
    g) Close the Timeline
    h) Repeat (b)-(d)
    i) When the new Timeline is double-clicked, XP restarts
    The 
    i only
    solution found so far is to uninstall PCAnywhere, then all returns to normal.
    16. It has also been found that either Efax or Winfax software installed to the system can cause the dreaded "Visual C++ Runtime Error" which will crash Encore. Microsoft support have confirmed that if you see this error, you need a hotfix KB884538, from www.microsoft.com in the support area.
    Install the hotfix, and if the error remains, check for either of these fax programs. If either are present, remove them, reboot and all should now work.
    17. Roxio Easy CD Creator - General issues.
    Firstly, when uninstalling any Roxio application it is best to do this from the "Add Remove Programs" applet in Control Panel, as usual. However - this will NOT remove all Roxio's tentacles from your system. To be sure all is definitely removed, you need to visit 
    http://www.microadvantage.net/downloads/zapper60.zip
    and run this. When you are done, you can then reboot and the evil Roxio will finally be gone.
    Another common issue with Roxio is when Nero also co-exists on the same system. The two 
    i loathe
    each other and are apparently incapable of co-existing.
    If you have noth these installed there is an additional set of stuff to go through. Remove Roxio first, then reboot, then remove Nero completely beginning by uninstalling from "Add Remove Programs" and then we also need to get rid of all the various tendrils it has also addeed to the system using the following tools:
    (You must use all 3 of Nero's Clean tools in order to do the job correctly.)
    They can all be found here:
    http://www.nero.com/us/631940828445001.htm
    1. General Clean tool
    2. Registry cleaner and driver cleaner
    3. InCD Clean tool
    When you reinstall Nero 6.6 OR Neros new 7 Ultra Edition, DO NOT install InCD OR if you do, turn it off in startup under msconfig (better to not install it) 
    18 - FindSounds Palette 
    This is a tool designed to help you find SFX on your drives, and it seems to prevent Encore from importing M2V files for some reason, and should be uninstalled if present.
    To uninstall this, do the following steps:
    Uninstall "Find Sounds Palette" (FS Palette).
    Delete the two registry key folders for "Comparisonics".
    Uninstall Encore CS3.
    Delete Registry Keys for Encore.
    Restart.
    Install Encore CS3.
    Install Encore 3.0.1 update.
    Restart.
    19 - Quicken
    It has been reported that if you back up your Quicken files to CD, then Quicken sets up your DVD burner for CD DLA through the built-in Windows burning facility.  This assignment recurs each time your system is restarted.  When this happens, Encore will see your burner as a CD burner only.  You'll have to manually disable this start-up assignment to get Encore to see your burner as a DVD burner again.
    Additionally, it is a good idea to disable Autorun for your burner, preferably from the registry. While this will not prevent anything polling the drive from the OS to try & "helpfully" check for freshly inserted media, it will prevent sneaky DRM applications from installing themselves to your system just by having the disc inserted. As well as the registry hack required, there are other methods of stopping this described at
    http://www.annoyances.org/exec/show/article03-018
    To do the registry hack, perform the following:
    * Run the Registry Editor (REGEDIT.EXE).
    * Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom.
    * Double-click the Autorun value, and type 0 for its value. (If it's not there, create it by selecting Edit -> New -> DWORD Value, and typing "Autorun" for its name.)
    * You may have to log out and then log back in for this change to take effect.
    * Note: With this solution, Windows will no longer be notified when you insert a new CD. To make sure the correct icon and title for the current CD are displayed in My Computer and Explorer, press F5 to refresh the window. 
    If you perform any of these changes, you may need to uninstall your software, then re-install to fix any damage left. If you find some of these packages, please shut down and reboot twice to ensure that the last pieces of the conflicting software are completely removed.

    You're lucky then Steve.
    Roxio is one of those apps that usually doesn't play nice with any other burning software at all.
    I use GEAR Pro Mastering Edition.
    They also do a cheaper version called GEAR Video - but be aware that this installs DivX as well - although I have to say that on one of our systems running Adobe 1.5 versions of Encore & Premiere Pro, it is causing no conflicts at all. But there have definitely been major problems with DivX codecs and EncoreDVD. Perhaps it is to do with where they come from, perhaps I just got lucky in this case.
    It might be worth a trial version though - although if you have the budget, and do a LOT of DVD, then GEAR Pro Mastering Edition is an invaluable tool I have found.

  • XML PrintSelectedInvoices completes with warning when run as child request

    Hi Friends,
    I have converted the print selected invoices to xml and it runs fine when run by itself through SRS but it fails when it is submitted as a child request ( when it gets run as a child request when Invoice import and print program is run). Here is the problem:
    1)When request is submitted, through SRS it passes fine and while submitting I find the template name,template language in theoptions button: Upon completion �Window:(UNDER LAYOUT section)
    2)BUT When request is submitted as child request it fails and while submitting this; Ifind that there is no information in the layout section in the options: Uponcompletion �Window:(UNDER LAYOUT SECTION).You will see that there is notemplate name,template language etc. and details picked in the Upon Completionwindow under OPTIONS buton in SRS.
    Also the error in the log file is as follows:
    Printing output file.
    Request ID : 41921527
    Number of copies : 1
    Printer : 11111
    Error: May not be a PDF file (continuing anyway)
    Error (0): PDF file is damaged - attempting to reconstruct xref table...
    Error: Couldn't find trailer dictionary
    Error: Couldn't read xref table
    Pasta: Error: Preprocess failed. Command=/usr/testinstance/temp/pasta13459_0.tmp /n00/common/testinstance/temp/pasta13459_1.tmp
    Pasta: Error: Preprocess or Print command failed!!!
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 1.
    Regards
    Ray

    Register the template before using it.
    Once it is registered, you can call that report as a child request.
    Regards
    Ray

Maybe you are looking for

  • Can somebody here take a look at this problm I posted re iPh3Gs & iPhto'08

    Can one of you more advanced folks take a look at problem I'm having re importing & iPhone 3Gs and tell me if you have any experience with this? I posted it in the iPhone 3GS forum (wasn't sure which to post in - here in the iPhoto'08 place or there)

  • Automatic generation of PO at GR

    Hi, I am trying to generate PO automatically at the time of GR. 1. I have marked movement type 101 as relevant for Automatic PO generation in the node "Create purchase order automatically" 2. My plant is assigned to a standard purchase organization 3

  • White fringe appears around text in exported images?

    Hey all, I'm having some problems when I export an image that has no background and antialiased text. No matter what format I save it in or in what way I save it (Save for web and devices, Save as), this white outline always comes up. However, in pho

  • Really Apple? Mails still automatically marked as read??

    Dear Apple, you have still not managed to include an option into your mail app to prevent mails from being automatically marked as "read"? I actually would have loved to switch to your app for a long time, but this point just leaves it unusable. Does

  • 8900 HELP!

    I was recently told by a BBM buddy that I was not available on BBM and wasn't receiving msg's. I didn't know what to do, so I shut the phone off and when I put it back on, I had a bunch of email msg's and missed BBM msg's. Has anyone encountered this