Pro*C compile/runtime errors w/ XMLTYPE

On an Oracle 9iR2 NT machine (Pro*C/C++: Release 9.2.0.1.0)...
1. The following SQL works without error from SQL*Plus:
     DECLARE
     xml_clob CLOB;
     file_name VARCHAR2(200);
     BEGIN
     file_name := 'rsand.xml';
     xml_clob := f_get_xml_document(file_name);
     insert into RCTXMLD values(file_name, XMLTYPE(xml_clob));
     END;
     select extractValue(RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]/@EntityId')
     from rctxmld
     where rctxmld_docname = 'rsand.xml'
     SELECT existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
     SELECT existsNode (RCTXMLD_XMLDOC,'/CommonRecord/ReportingSchl[1]/AttendingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
     SELECT XMLTYPE.existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
2. The following SQL compiles and works without error from Pro*C:
EXEC SQL DECLARE REPORTING_SCHOOL CURSOR FOR
SELECT XMLTYPE.existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
FROM RCTXMLD
WHERE RCTXMLD_DOCNAME = :file_name_parm;
Note: This only compiles when existsNode is prefixed by "XMLTYPE."
3. The following SQL generates runtime errors from Pro*C:
static void ins_xml_doc(void)
#ifdef SCT_DEBUG
printf("Executing ins_xml_doc\n");
fflush(stdout);
#endif
EXEC SQL EXECUTE
DECLARE
xml_clob CLOB;
BEGIN
xml_clob := f_get_xml_document(:file_name_parm);
INSERT into RCTXMLD VALUES (:file_name_parm, XMLTYPE(xml_clob));
END;
END-EXEC;
POSTORA;
Run Sequence Number....................................:
Processing C:\TEMP\jobsub\finaid\rsand.xml...
Connected.
ORA-22288: file or LOB operation FILEOPEN failed
The process cannot access the file because
it is being used by another process
ORA-06512: at "SYS.DBMS_LOB", line 672
ORA-06512: at "FAISMGR.F_GETñ
WRN-ORACERR: Error occurred in file "d:\banner\finaid\c\rerim04.pc" at line 1318
WRN-ERRSTMT: Following statement was last statement parsed:
declare xml_clob CLOB ; BEGIN xml_clob := f_get_xml_document ( :file_n
Unable to initialize device default
4. The following SQL generates compile errors from Pro*C:
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]/@EntityId')
INTO :ReportingSchlEntityId
FROM RCTXMLD
WHERE RCTXMLD_DOCNAME = :file_name_parm;
POSTORA;
Processing rerim04, type pc...
Pro*C/C++: Release 9.2.0.1.0 - Production on Thu Feb 6 08:59:46 2003
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
System default option values taken from: D:\oracle\ora92\precomp\admin\pcscfg.cfg
Error at line 1887, column 5 in file d:\banner\finaid\c\rerim04.pc
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PLS-S-00302, component 'EXTRACTVALUE' must be declared
Error at line 1887, column 5 in file d:\banner\finaid\c\rerim04.pc
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PLS-S-00000, SQL Statement ignored
Semantic error at line 1887, column 5, file d:\banner\finaid\c\rerim04.pc:
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PCC-S-02346, PL/SQL found semantic errors
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
rerim04.c
fatal error C1083: Cannot open source file: 'C:\TEMP\rerim04.c': No such file or directory

On an Oracle 9iR2 NT machine (Pro*C/C++: Release 9.2.0.1.0)...
1. The following SQL works without error from SQL*Plus:
     DECLARE
     xml_clob CLOB;
     file_name VARCHAR2(200);
     BEGIN
     file_name := 'rsand.xml';
     xml_clob := f_get_xml_document(file_name);
     insert into RCTXMLD values(file_name, XMLTYPE(xml_clob));
     END;
     select extractValue(RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]/@EntityId')
     from rctxmld
     where rctxmld_docname = 'rsand.xml'
     SELECT existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
     SELECT existsNode (RCTXMLD_XMLDOC,'/CommonRecord/ReportingSchl[1]/AttendingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
     SELECT XMLTYPE.existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
     FROM RCTXMLD
     WHERE RCTXMLD_DOCNAME = 'rsand.xml'
2. The following SQL compiles and works without error from Pro*C:
EXEC SQL DECLARE REPORTING_SCHOOL CURSOR FOR
SELECT XMLTYPE.existsNode (RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]')
FROM RCTXMLD
WHERE RCTXMLD_DOCNAME = :file_name_parm;
Note: This only compiles when existsNode is prefixed by "XMLTYPE."
3. The following SQL generates runtime errors from Pro*C:
static void ins_xml_doc(void)
#ifdef SCT_DEBUG
printf("Executing ins_xml_doc\n");
fflush(stdout);
#endif
EXEC SQL EXECUTE
DECLARE
xml_clob CLOB;
BEGIN
xml_clob := f_get_xml_document(:file_name_parm);
INSERT into RCTXMLD VALUES (:file_name_parm, XMLTYPE(xml_clob));
END;
END-EXEC;
POSTORA;
Run Sequence Number....................................:
Processing C:\TEMP\jobsub\finaid\rsand.xml...
Connected.
ORA-22288: file or LOB operation FILEOPEN failed
The process cannot access the file because
it is being used by another process
ORA-06512: at "SYS.DBMS_LOB", line 672
ORA-06512: at "FAISMGR.F_GETñ
WRN-ORACERR: Error occurred in file "d:\banner\finaid\c\rerim04.pc" at line 1318
WRN-ERRSTMT: Following statement was last statement parsed:
declare xml_clob CLOB ; BEGIN xml_clob := f_get_xml_document ( :file_n
Unable to initialize device default
4. The following SQL generates compile errors from Pro*C:
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC, '/CommonRecord/ReportingSchl[1]/@EntityId')
INTO :ReportingSchlEntityId
FROM RCTXMLD
WHERE RCTXMLD_DOCNAME = :file_name_parm;
POSTORA;
Processing rerim04, type pc...
Pro*C/C++: Release 9.2.0.1.0 - Production on Thu Feb 6 08:59:46 2003
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
System default option values taken from: D:\oracle\ora92\precomp\admin\pcscfg.cfg
Error at line 1887, column 5 in file d:\banner\finaid\c\rerim04.pc
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PLS-S-00302, component 'EXTRACTVALUE' must be declared
Error at line 1887, column 5 in file d:\banner\finaid\c\rerim04.pc
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PLS-S-00000, SQL Statement ignored
Semantic error at line 1887, column 5, file d:\banner\finaid\c\rerim04.pc:
EXEC SQL SELECT XMLTYPE.extractValue(RCTXMLD_XMLDOC,
....1
PCC-S-02346, PL/SQL found semantic errors
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8168 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.
rerim04.c
fatal error C1083: Cannot open source file: 'C:\TEMP\rerim04.c': No such file or directory

Similar Messages

  • Acrobat v9 Pro and Standard Runtime Error!

    My company recently got in the CD's from Adobe for Acrobat 9 Professional and Acrobat 9 Standard.
    I installed Acrobat 9 Pro on one of our systems. The system got a runtime error every time Adobe Acrobat started citing "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe This application has requested the Runtime to terminate it in an unusal way. Please contact the application's support team for more information."
    Initially, I thought it was an issue with that system. So, I installed Acrobat Standard on two other systems. Both units get the same error.
    Of the 3 units 2 are identical IBM workstations with some different software installed. 1 is an HP system. The OS is a fairly clean Windows XP SP2 otherwise very stable installation.
    I searched Adobe forums and here but haven't come across much version 9 questions/comments.
    Initially, I was going to fully uninstall Acrobat and try the installation again. However, now that 2 other systems are getting the same error, I feel it would be a waste of time.
    Any ideas on what to look for to resolve this issue?
    Previous version was the latest v8 which 9 uninstalled.
    Thanks in advance!
    -Dean
    EDIT: I did come across this for version 8 and tried the same fix with 9, but to no effect:
    ================================================================================
    C++ Runtime error after launching Acrobat or Adobe Reader 8 on Windows
    Issue
    When you launch Adobe Acrobat 8 Standard, Professional, or Adobe Reader 8 on Windows, an error occurs:
    Runtime Error!
    Program: C:\Program Files\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe
    This application has requested the Runtime to terminate in an unusual way. Please contact the application's support team for more information.
    Solution
    Disable the Updater.api plug-in.
    Navigate to where Acrobat or Adobe Reader is installed, usually
    C:\Program Files\Adobe\Acrobat 8.0\Acrobat\plug_ins
    or C:\Program Files\Adobe\Reader 8.0\Reader\plug_ins
    Rename the Updater.api plug-in to Updater.api.old
    Relaunch Acrobat or Reader.

    So here is the flaw... Since i dont see many people saying WHAT the flaw is.
    ==== THIS IS WITH ROAMING PROFILE CRASHES! ====
    Adobe's program iterates the network path from left to right, skipping the first word: \\Server\Folder1\Folder2\Folder3\APPLICATION DATA as it searches a user's profile for the APPLICATION DATA folder.
    So starting at FOLDER1 it checks to see if it can "create" a folder. It doesnt do it, but it tries to check its access. If your not in the users profile at this point, the program MOST LIKELY cannot because its a directory NOT owned by the user. THe previous folders is something you wouldn't give NORMAL users access to.
    After the program FAILS to "create" its folder because it cannot -
    The program Crashes:
    *R6025 - Pure Virtual function call
    * The exception unknown software exception (0x40000015) occurred in the application at location 0x2e80f5e3
    * C++ runtime error
    * WINDOWS NAME Collision error.
    === ITS ALL OF THESE! Same error, different points in the crashing ===
    Solution?
    I create a network drive DIRECTLY to the profile, then I update the registery to make that the WINDOWS APPDATA path. ALL of this is done on the user logon scripts. So it was just "solved" one day, except for a new drive letter appearing.
    (Added to login script)
    net use l: \\SERVER\USER PROFILE TREE\USER PROFILE
    REG ADD "HKEY_CURRENT_USER\software\Microsoft\windows\CurrentVersion\Explorer\User Shell Folders" /v AppData /t REG_EXPAND_SZ /d "l:\Application Data" /f
    For our work we use: \\SERVER\USER PROFILE TREE\%USERNAME%\%COMPUTERNAME% - so each user has SEPERATE data per computer they are on.
    ADOBE - PLEASE update your code so it doesnt iterate like this! If it does RESUME on error, to see if its recoverable before the END of the interation. These are simple mistakes...
    THIS will also fix the SIMILAR / SAME(?) BUG in ROXIO products.

  • Runtime Error  - Program-iles (86)Adobe\Premiere Pro 1.5\Adobe Premiere Pro.exe

    I have Adobe Video Collection V2.6. (Adobe Premiere Pro 1.5).
    All of the collection will load on my system except Adobe Premier Pro.
    My system is:
    Dell Precision 670 Work Station
    Intel Xeon CPU 3.2GHz
    3.19 GHz, 2.00 GB of RAM
    MS Windows XP
    Professional x64 Edition
    Version 2003
    Service pack 2, v.4566
    When I try to load Adobe Premiere Pro I am presented with the follow statement:
    Runtime Error
    Program…iles (86)Adobe\Premiere Pro 1.5\Adobe Premiere Pro.exe
    Question: How do I correct the Adobe Premiere Pro 1.5 Runtime Error? Any help would be appreciated.
    Thank you.
    NotAPro

    Bill and Harm,
    I spent 16 hours yesterday blending everything from Microsoft and Dell that
    I could find relating to my problem. During all of this I lost all sound,
    including playback and record on Adobe Audition 3 on another partition.  I
    worked until midnight last night and came back to my computer this morning
    at 2:00 AM to continue. When I turned on the computer and checked, all of
    the icons for the CD & DVD units, internet phone were in place and
    everything worked. Adobe Audition now records and plays back...just like old
    times. I have no idea which of the changes I made corrected my problem but
    the problem is solved. Just wanted you gentlemen to know.  It is reassuring
    to know that there are folks “out there” a novice can count on. I will now
    add the 8 GB of RAM but will not move to Windows 7 as yet. Thanks again for
    your help.
    Tom

  • Adobe Acrobat 9.0 Pro crashes at start up: Runtime Error-please help

    I have Adobe CS4 installed on my Windows 7 PC. In addition, I have Adobe Reader XI and InDesign 6 installed. If I remember correctly, after I installed Adobe Reader XI, I uninstalled the version of the Reader which came with CS4.
    So here’s my problem: When I try to download a PDF that has been sent to me in an email or open one that already exists on my computer, this happens:
    Runtime Error!
    Program: C…
    The application has requested the Runtime to terminate it in an unusual way.
    When I click OK, I get this:
    Adobe Acrobat 9.0 has stopped working.
    If I try to Adobe Acrobat 9.0 Pro from my start menu, the same thing happens.
    This makes no sense to me because
    I don’t have the knowledge to figure this out. I have no idea what Runtime is.
    Prior to a computer meltdown a couple of months ago and a complete reinstallation of everything, these very same programs all worked just fine.
    I don’t understand why, when I try to open an emailed PDF, they don’t automatically open in Adobe Reader XI rather than Adobe Acrobat. Isn’t the general idea that people be able to open and view sent PDFs which they have been sent, which is what the Reader is for, and not usually edit them, which is what Adobe Acrobat is for?
    If, instead of trying to open the emailed PDFs, I save them to my computer, I can launch Adobe Reader XI and open them from within that program without any problem. That’s OK if I just need to view the PDF, but I need to be able to edit PDFs too, so I must get Adobe Acrobat 9.0 to work.
    Would reinstalling Adobe Acrobat 9.0 Pro help? Is there a way to reinstall that program only from the installation disks or would have to reinstall CS4 entirely?
    I cannot open Adobe Acrobat 9.0 at all, so any solutions which must be done with the program open are not possible.
    I would really appreciate some help.

    SOLVED!
    Resetting Internet Explorer didn't work, Reinstalling Acrobat 9.0 Pro didn't work, but changing a registry key did.
    Here's where I found the solution:
    Microsoft Visual C++ Runtime Library error opening PDF files - Microsoft Community
    Here is the relevant post, but before you try it, read my note below:
    Hi,
    This is known issue with Acrobat for several versions now, Adobe's current fix is just to update their software: http://kb2.adobe.com/cps/404/kb404597.html
    The problem is with the application data being misdirected.
    "The affected user has a redirected Application Data folder and as a result the network path containing the Application Data uses a UNC path that begins with \\. This UNC path causes Acrobat 9.0 or Adobe Reader 9.0 to incorrectly parse the Application Data path and give the error message."
    A potential Solution would be to go into the registry. Left Click type "regedit" and right click and run the program with "run as administrator". Go to Hkey_Current_User\Software\Microsoft\Windows\Current Version\Explorer\User Shell Folders and make sure see where "AppData" is pointing. If it is pointing to "%UserProfile%/Application Data" change it to point to "%UserProfile%/AppData/Roaming".
    BUT, be careful about one thing: This poster seems to have accidentally used forward slashes when he should have use back slashes. Look at the very last line of his post where he advises "If it is pointing to "%UserProfile%/Application Data" change it to point to "%UserProfile%/AppData/Roaming". You'll find, or at least I did, that this key has a back slash, not a forward slash, so changing what I found: "%UserProfile%\Application Data" to "%UserProfile%\AppData\Roaming" worked and now Acrobat 9.0 works fine.

  • Runtime error 429, activeX component cant create object while using netbet pro on windows 7 & 8.1 HELP!!!

    runtime error 429, activeX component cant create object while using netbet pro
    does anyone know what I could do to fix this problem??? netbet pro was't available for a while then it's back but has yet to run

    What's netbet pro?
    I'd recommend asking questions about third party applications in the vendor's forum, not a Microsoft forum meant for admin scripting.
    EDIT: Ah, some gambling website...
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Acrobat 9.0 Pro runtime error

    Hello!
    I just installed the brandnew Adobe 9.0 Pro. I can open it but after 3 seconds a runtime error appears: "Program C:\program files\adobe\acrobat9.0\acrobat.exe. This application has requested the runtime to terminate it in an unsusal way."
    I have called the support line, but they couldn't help me further. Also I have browsed the forum here and tried to rename the updater.dll without success. I have a small business server with XP Professional. It seems that the local user (not the user of the network) can work with the program. As soon as I log on with a network user, the above error occurs.
    Maybe someone has the same problem. Any help appreciated!
    Cheers

    We had also the same problem !
    From the Adobe support we just got this message meaning that this is not supported in ADS domains, just local accounts and we just can use Adobe Open Options (see below, in german)
    If someone has a solution for this problem, please let me know!
    Best regards
    Heiko Steindl
    Vielen Dank für die Anfrage.
    Bei der Produktpalette des Adobe Acrobat handelt es sich um
    Softwareprodukte, die für den Gebrauch auf lokal gesteuerten Benutzerkon
    ten konzipiert wurde. Daher kann es bei Netzwerkkonten (z. Bsp. Domainumgebungen) zu Problemen der Rechteverlinkung etc. kommen.
    Aus diesem Grund gibt es für den Acrobat die Möglichkeit, über die
    sogenannte Adobe Open Options (kurz AOO) auf eine Terminalserver- oder
    Citrix-Umgebung auszuweichen. Für nähere Informationen diesbezüglich
    wenden Sie sich bitte an unsere Kollegen aus der AOO Abteilung unter der
    Rufnummer 01795 - 647 84 Telefonmenü-Nummer 3.
    Bei eventuellen Rückfragen stehen wir ihnen gerne zur Verfügung.
    Mit freundlichen Grüßen
    Andreas Güschkat
    Adobe Technical Support

  • Adobe Acrobat 9 Pro runtime Error!

    I have an issues with Adobe Acrobat 9 Pro runtime Error!
    Reader 9.0 AcroRd32.exe caused Microsoft Visual C++ Runtime Library error.....etc
    on window xp 32bit with Service Pack3!
    Could anyone please help.

    Was it running in the past? Also, Reader and Acrobat are different products and you mentioned them as though you think they are the same. If you can open the package, select Help>Repair. Follow up with Help>Updates.

  • Runtime Error in Acrobat X Pro

    After installing Acrobat X Pro on my Windows 7 based PC, when I tried to open the program, received the following message:
    An internal error has occurred.
    After clicking "OK," the following message appeared:
    Runtime Error!
    Program C:\.....
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I have uninstalled and reinstalled Acrobat X Pro 3 times and get the same error.
    Please help!

    Hi,
    Please follow the suggestions provided here : http://helpx.adobe.com/acrobat/kb/runtime-error-roaming-profile-workflows.html

  • Runtime error in preview pdf tab for formdesigner.exe in acrobat pro x

    when we click on the preview pdf tab in the livecycle designer for acrobat pro 10.0.2, we receive a runtime error for formdesigner.exe. This has happened on 2 different machines we tested on. Please advise.

    Hi,
    Please follow the suggestions provided here : http://helpx.adobe.com/acrobat/kb/runtime-error-roaming-profile-workflows.html

  • Adobe Pro 8 Runtime Error

    This has been hit on in other threads, but I still have not found an answer to my issue.  Whenever I run Adobe Acrobat 8 Pro from the Start menu, or double click on a .pdf file I get the Microsoft Visual C++ Runtime Library Error, runtime Error.  This is on a standalone laptop with the following software loaded:  Windows XP SP3, Office 2007, Visual Studio 2005, SQL Server Express 2005, and MySQL.  I mention these because I have seen these packages mentioned in other posts.  Since it is a standalone laptop, no roaming profiles.  The main issue is that Acrobat Pro 8 runs in the administrator account, and other user accounts.  It will not run in my account.  I have read that creating a new account and trying it shows it to be a user issue and not a system wide issue, but I could not find anything about how to repair a damaged user account.  Also, from my account if I use "run as" and any other account on the system, it works.  This is OK to run the program, but this is not available to double click on a .pdf file.  Any help on what to delete, move, rename, etc in the damaged account would be greatly appreciated.
    Thanks,

    OK, I did some more reading, and after systematically renaming the plugins, I
    found that the file ADTACROBAT.api was my problem.  I added a .old to the file and now Acrobat works!
    Not sure what it is, but I really hope it's not important.

  • Office Jet Pro L7580 Runtime error when re-installing drivers

    My Dell Latitude with Windows 7 (32 Bit) stopped talking to my Office Jet Pro L7580 a month or two ago, and I finally had time to try to troubleshoot it. I don't have any idea what may have changed to make it stop. After trying to reinstall it without success,  I uninstalled the driver/app using the Windows uninstall and uninstalled the printer using the control panel. I then downloaded OJPRO7X00_FULL_14.exe and ran it. It extracts correctly, but then comes up with the message: Microsoft Visual C++ Runtime Library,  Runtime Error: Program: C:\USERS\WA... This application has requested the runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I have several other drivers for other printers on the machine for use at my workplace, and they work fine, and this and earlier versions of this HP driver/app working fine for a couple of years. I've seen others on the forum that have had this error, but not in this situation.
    I'm stuck at this point. Any help would be appreciated.

    If you have not tried the above steps yet, then I have an alternative.  Try reverting back to an old save point prior to the date you lost your scanning abilities.  
    I have seen a runtime error on Windows 8 where the OS was refreshed and that fixed the issue.  In Windows 7, refresh is like reverting back to an old save point.  You can also choose to upgrade your Windows 7 OS to Windows 7 OS (that is not an error in typing).  This restores the important original settings prior to the possibility that perhaps a Windows update to C++ is what caused this.
    You also have the option of using a recovery CD as well.  The link(s) below may also be helpful.
    --Backup and Restore--
    --How to Use System Restore--
    Let me know if these are also options.  Since you have a lot of HP printers, yes my steps above would cause you to have to re-install the software to every last one of them.  I want to make this as easy as possible for you but if the above suggestions do not work, it may have to be done.  Keep me posted though. I hope this works!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • NWDI - Runtime error while compiling JSPs (PAR DC)

    Hello
    I am creating a PAR DC that needs to use some in house developed
    ValueObjects (accessed through a J2EE server library).
    Though my developed JSPDynPage is able to access the ValueObjects, when I try to use it in a JSP, I get a runtime compilation error.
    According to my understanding, setting the PrivateSharingReference helps the controller (jspdynpage) find the classes it needs at runtime,
    But the JSP Compiler does not have access to those classes.
    Can anyone suggest a solution that does not include copying jar files
    manually?
    I have an open CSN about this, but no answer there yet...
    <a href="https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smp_custmsg/main.do?event=LOAD&smpsrv=h">CSN 0120025231 0001708061 2005</a>

    <a href="https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/smp_custmsg/main.do?event=LOAD&smpsrv=h">updated link to CSN 0120025231 0001708061 2005</a>
    full stack trace:
    Exception ID:10:40_27/12/05_0011_2189050
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Resource
    Component : pcd:portal_content/zachrefs/com.checkpoint.ReferencingIview
    Component class : com.cp.test.references.ReferencingIview
    User : Administrator
                at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:444)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
                at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
                at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
                at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
                at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
                at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
                at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
                at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
                at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
                at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
                at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: PortalComponentException
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:127)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:279)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:129)
                at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
                at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
                ... 38 more
    Caused by: com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error in executing a process for compilation, D:/usr/sap/ZAK/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/appl.test2.runtimereferencingpar/work/pagelet/_sapportalsjsp_referencingiview.java:18: package com.cp.test2.references.vo does not exist
    import com.cp.test2.references.vo.IMyValueObject;
                                      ^
    1 error
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.launchCompilerProcess(J2eeCompiler_6_30.java:562)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compileExternal(J2eeCompiler_6_30.java:370)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compile(J2eeCompiler_6_30.java:672)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2143)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:122)
                ... 43 more
    >>> JSPCompiler >>> error  [email protected]a27
    [EXCEPTION]
    com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error in executing a process for compilation, D:/usr/sap/ZAK/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/appl.test2.runtimereferencingpar/work/pagelet/_sapportalsjsp_referencingiview.java:18: package com.cp.test2.references.vo does not exist
    import com.cp.test2.references.vo.IMyValueObject;
                                      ^
    1 error
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.launchCompilerProcess(J2eeCompiler_6_30.java:562)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compileExternal(J2eeCompiler_6_30.java:370)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compile(J2eeCompiler_6_30.java:672)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2143)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:122)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:279)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:129)
                at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
                at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
                at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
                at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
                at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
                at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
                at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
                at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
                at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
                at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
                at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
                at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    >>> JSPCompiler >>> ERROR in Compiling :JSPFileInfo :29823520
    JSP File : D:usrsap AKJC00j2eeclusterserver0appssap.comirjservlet_jspirj
    ootWEB-INFportalportalappsappl.test2.runtimereferencingparpageletReferencingIview.jsp
    Class Name: sapportalsjspReferencingIview
    Java File : D:usrsap AKJC00j2eeclusterserver0appssap.comirjservlet_jspirj
    ootWEB-INFportalportalappsappl.test2.runtimereferencingparworkpagelet\_sapportalsjsp_ReferencingIview.java
    Package Name : pagelet
    Class File : D:usrsap AKJC00j2eeclusterserver0appssap.comirjservlet_jspirj
    ootWEB-INFportalportalappsappl.test2.runtimereferencingparworkpagelet\_sapportalsjsp_ReferencingIview.class
    Is out dated : false [email protected]a27
    [EXCEPTION]
    com.sapportals.portal.prt.servlets_jsp.server.compiler.CompilingException: Error in executing a process for compilation, D:/usr/sap/ZAK/JC00/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/web-inf/portal/portalapps/appl.test2.runtimereferencingpar/work/pagelet/_sapportalsjsp_referencingiview.java:18: package com.cp.test2.references.vo does not exist
    import com.cp.test2.references.vo.IMyValueObject;
                                      ^
    1 error
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.launchCompilerProcess(J2eeCompiler_6_30.java:562)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compileExternal(J2eeCompiler_6_30.java:370)
                at com.sapportals.portal.prt.servlets_jsp.server.compiler.impl.J2eeCompiler_6_30.compile(J2eeCompiler_6_30.java:672)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPParser.parse(JSPParser.java:2143)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.compile(JSPCompiler.java:76)
                at com.sapportals.portal.prt.servlets_jsp.server.jsp.JSPCompiler.run(JSPCompiler.java:122)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.compileJSP(JSPComponentItem.java:279)
                at com.sapportals.portal.prt.core.broker.JSPComponentItem.getComponentInstance(JSPComponentItem.java:129)
                at com.sapportals.portal.prt.core.broker.PortalComponentItemFacade.service(PortalComponentItemFacade.java:355)
                at com.sapportals.portal.prt.core.broker.PortalComponentItem.service(PortalComponentItem.java:934)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:435)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:527)
                at com.sapportals.portal.prt.component.AbstractComponentResponse.include(AbstractComponentResponse.java:89)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:232)
                at com.sapportals.portal.htmlb.page.JSPDynPage.doOutput(JSPDynPage.java:76)
                at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:129)
                at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
                at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
                at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
                at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
                at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
                at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
                at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:232)
                at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:153)
                at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
                at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
                at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
                at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
                at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
                at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                at java.security.AccessController.doPrivileged(Native Method)
                at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)

  • How do you fix a "compiler file error" in DVD Studio Pro?

    I've tried to burn a DVD from a project file in DVD Studio Pro a couple times now and get a "Compiler File Error" each time. What does it mean and how do I fix it?
    Thanks.

    where are you assests from? did you use compressor to create a mpeg2 and dolby audio file? did you export self contained and bring into compressor? or a reference movie? What were your orginal seq settings? More details.

  • HP Quick Test Pro v11 "Visual C++ Runtime Error" when launched

    Good Afternoon,
    A user is having trouble with Quick Test Pro. It crashed and gave the error message.
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\Program Files\HP\QuickTest Professional\bin\QTPro.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information.
    When I uninstall the app and reinstall it, the same error message appears. Any ideas on how to fix this? Thanks.
    System
    Windows XP SP3
    Intel Core 2 Duo 3Ghz
    2 GB RAM

    I have the same error. I have installed QTP 11.
    I have tried the following options but no luck
    With Admin Rights on the machine.
    1) uninstall and re-install
    2) Reinstalled Microsoft Visual C++ Runtime Library
    My operating system is: Windows 7 Enterprise Service pack 1
    Please help asap, thank you

  • Runtime Error R6025 while creating text in Premiere Pro CS6

    I've looked at a number of posts on this, it seems to pop up for different reasons.
    For me, it only seems to happen, and happen inconsistently but often, when I am creating or editing text in Premiere Pro CS6
    "Microsoft Visual C++ Runtime Library
    Runtime error!
    Program: C:\Progra...
    R6025
    - pure virtual function call"
    I'm am self taught on both the PC and Premiere, and by that I mean I can get around okay, but am in no way an expert in either; so when other posts start talking coding, ain't nobody got time for that.
    I'm on a new Asus G750J
    Windows 8.1, 64-bit
    Intel Core i7-4700HQ CPU @ 2.40GHz
    (Unrelated note... why is this computer not doing GPU accerlation?)

    A search on Google leads me to guess that your registry is messed up, see this link:
    http://www.microsoftvisualcruntimelibrary.com/r6025-pure-virtual-function-call.php?tid=080 38&gclid=CJff9eXtmZoCFQJN5Qodo3H49A
    Try a registry cleaner and see what happens.

Maybe you are looking for