Opendocument.jsp path incorrect when used within Crystal

Post Author: Tilghmank
CA Forum: General
I am trying to find out how to change the Opendocument.jsp path with Crystal Reports.  The problem appears to be the "Infoview/plugin" part of the path.  I am using webelements from Crystal with the WETargetPath() function. 
undefinedhttp://mylocalname
JSP Processing Error
HTTP Error Code:   404
Error Message:
JSPG0036E: Failed to find resource /InfoView/plugin/opendoc/openDocument.jsp
Root Cause:
java.io.FileNotFoundException: JSPG0036E: Failed to find resource /InfoView/plugin/opendoc/openDocument.jsp     at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.findWrapper(JSPExtensionProcessor.java:268)     at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:250)     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java(Compiled Code))     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java(Compiled Code))     at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java(Compiled Code))     at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java(Compiled Code))     at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java(Compiled Code))     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java(Compiled Code))     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java(Compiled Code))     at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java(Compiled Code))     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java(Compiled Code))     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java(Compiled Code))     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java(Compiled Code))     at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java(Compiled Code))     at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java(Compiled Code))

Post Author: V361
CA Forum: General
You could try creating a formula, for example
WhilePrintingRecords;PageNofM
and use the formula, hopefully, CR will be able to calculate the correct page count.

Similar Messages

  • Adjusting Internet Explorer settings when used within VFP9

    I have created a form and placed and OLEControl OleClass Shell.Explorer.2 into it.
    I can using statements like 
    Thisform.HTMLViewer.Navigate(m.tcUrl)
    m.loDocument = Thisform.HTMLViewer.Object.Document
    get to show web pages and get access to properties and attributes within the web Document.
    However, I am finding that numerous web pages (not under my control) contain Scripting errors.
    When using standalone IE under the Options settings I have "Display a notification about every script error" turned off.
    However, when using IE within the VFP9 form I get an IE dialog showing me all these Script errors on the sited visited.
    Does anyone know how to turn these off within the VFP9 OleControl environment?
    Any examination of the OleControl object does not show anything that is likely to have the desired effect.
    The English Bob

    Silent is all about script errors, as it seems.
    <!doctype html>
    <html>
    <body>
    <script lang="Javascript">
    w1 = window.open("http://www.microsoft.com", "Popup", "width=800,height=300,resizable=yes");
    w1.focus(); </script>
    </body>
    </html>
    Loading this into a web browser control the Microsoft site pops up, even when setting Silent = .T.
    Even simpler alert('test'); also shows up.
    Bye, Olaf.
    Olaf Doschke - TMN Systemberatung GmbH
    http://www.tmn-systemberatung.de

  • Query take long time in fetching when used within a procedure

    The Database is : Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    Query just takes a second from toad but when used inside a procedure as a cursor it takes takes 3 to 5 minutes.
    Following is the Tkprof information when running from procedure.
    SELECT CHCLP.CLM_PRVDR_TYPE_LKPCD, CHCLP.PRVDR_LCTN_IID, TO_CHAR
    (CHCLP.MODIFIED_DATE, 'MM-dd-yyyy hh24:mi:ss') MODIFIED_DATE,
    CHCLP.PRVDR_LCTN_IDENTIFIER, CHCLP.CLM_HDR_CLM_LN_X_PVDR_LCTN_SID
    FROM
    CLM_HDR_CLM_LN_X_PRVDR_LCTN CHCLP WHERE CHCLP.CLAIM_HEADER_SID = :B1 AND
    CHCLP.CLAIM_LINE_SID IS NULL AND CHCLP.IDNTFR_TYPE_CID = 7
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 0.00 0.00 0 0 0 0
    Fetch 1 110.79 247.79 568931 576111 0 3
    total 2 110.79 247.79 568931 576111 0 3
    Misses in library cache during parse: 0
    Optimizer mode: ALL_ROWS
    Parsing user id: 93 (CMSAPP) (recursive depth: 1)
    Rows     Execution Plan
    0 SELECT STATEMENT MODE: ALL_ROWS
    0 PARTITION RANGE (SINGLE) PARTITION:KEYKEY
    0 TABLE ACCESS MODE: ANALYZED (BY LOCAL INDEX ROWID) OF
    'CLM_HDR_CLM_LN_X_PRVDR_LCTN' (TABLE) PARTITION:KEYKEY
    0 INDEX MODE: ANALYZED (RANGE SCAN) OF
    'XAK1CLM_HDR_CLM_LN_X_PRVDR_LCT' (INDEX (UNIQUE))
    PARTITION:KEYKEY
    Execution plan when running just the query from TOAD is: (it comes out in a second)
    Plan
    SELECT STATEMENT ALL_ROWSCost: 6 Bytes: 100 Cardinality: 2                
         3 PARTITION RANGE SINGLE Cost: 6 Bytes: 100 Cardinality: 2 Partition #: 1 Partitions accessed #13          
              2 TABLE ACCESS BY LOCAL INDEX ROWID TABLE CMSAPP.CLM_HDR_CLM_LN_X_PRVDR_LCTN Cost: 6 Bytes: 100 Cardinality: 2 Partition #: 2 Partitions accessed #13     
    Why would fetching take such a long time? Please let me know if you need any other information.
    Thank You.
    Edited by: spur230 on Apr 1, 2009 10:23 AM
    Edited by: spur230 on Apr 1, 2009 10:26 AM
    Edited by: spur230 on Apr 1, 2009 10:28 AM
    Edited by: spur230 on Apr 1, 2009 10:30 AM

    Query just takes a second from toad It's possible that the query starts returning rows in a second, but that's not the time required for the entire query.

  • Freeze Frame Duration Selection Is Incorrect When Using PAL Projects ?

    I have done a search of the FCE and FCP forums but can find no information. This was originally posted in the FCP forum but is equally applicable to FCE.
    Over here in Europe an apparent bug has been noticed connected with FCP 5.1 and FCE 3.5 (which is based on it) when using PAL projects.
    To begin with, the default Freeze Frame time in the User Preferences is 12 seconds yet when stills appear in the Browser they are the normal 10 seconds.
    If the duration in the Preferences is altered, the actual time of the picture in the Browser or Timeline is always five sixths of the time set.
    This curiously is the same figure you get if you compare NTSC and PAL frame rates. PAL has five sixths the number of fps as NTSC.
    So if in the preferences I set 6 seconds, I get 5 seconds in the Browser. Three seconds gives an actual time of around two and a half seconds and so on.
    I must stress that it is only FCP 5.1 and FCE 3.5 that appear to be affected.
    Earlier versions eg. FCE 1.0.1 and FCE 3.0 behave perfectly.
    We don't know the situation with FCP 6 as we have not yet had the opportunity to test it.
    You can replicate the problem by altering your Easy Setup to DV-PAL and look at the Freeze Frame Duration in the preferences.
    Then import a photo into the Browser.
    Alter the duration in the preferences and import another photo.
    I am sure you will see that there is a large discrepancy between the chosen duration and the actual.
    Is this a known problem and is there a simple way around it ?
    Ian.

    CORRECTION !
    It has been pointed out that the Freeze Frames are NOT affected by this bug - only the IMPORTED STILL PICTURES.
    Incidentally, for any PAL user whose maths is not too good (like mine), here is a table of corrections:-
    Freeze Frame Discrepancy.
    From Final Cut Pro 5.1 and Final Cut Express 3.5 onwards there is a bug that makes the chosen Freeze Frame time WHEN IMPORTING STILL PICTURES differ from the actual time when using PAL settings.
    This table tells you what time (in seconds and frames) to set your preferences in order to achieve an actual time:-
    Desired Time.......... Set Preferences
    01:00.......... 01:05
    02:00.......... 02:10
    03:00.......... 03:10
    04:00.......... 04:15
    05:00.......... 06:00
    06:00.......... 07:00
    07:00.......... 08:10
    08:00.......... 09:10
    09:00.......... 10:15
    10:00.......... 12:00
    Ian.

  • Relatiive Path problem when using JSP:include in web portlet

    Hi
    I am using Oracle Portal 9.0.2, and thus OC4J as the J2EE platform.
    I have created a JSP web portlet that is supposed to inlude a specific static html file, which name is passed to it using a portlet parameter. It works, but I had to create a symbolic link from the applicable J2EE applications's htdocs directory in order to access the content:
    /j2ee/OC4J_Portal/applications/<application>/htdocs/<portlet>/content/
    where /content/ is a symbolic link to another directory altogether.
    I can then access the content from within the portlet with a JSP include tag that looks like :
    docPath = "/htdocs/<portlet>/html/"+doc_path;
    %>
    <br>Include:
    <jsp:include page="<%=docPath%>" flush="true"/>
    I would like to access the content using the JSP include without having to use the symbolic link. Is there a way to do this. I tried using an Apache alias, but that did not work.
    Regards
    Harry

    Hi
    Thanx
    In the end we build up a static URL to the document to be included using:
    String contentLocation="content/";
    docPath = contentLocation+getAdditionalDocPath();;
    out.println("docPath="+docPath);
    String docPathAndName = portletRequest.getParameter("doc_path");
    %>
    <!--
    This java script function calls the display content page with the
    page parameter doc_path (which is in return passes it to the display
    content portlet) in order to retrieve and display specific document
    with a JSP:include tag
    -->
    <script language="JavaScript">
    function generateSectionPath(docName) {
    this.location="http://<%=portletRequest.getServerName()%>:<%=portletRequest.getServerPort()%>/pls/portal/url/page/<%=getPageGroup()%>/content?doc_path="+"<%=docPath%>"+docName;
    <script language="JavaScript">
    function generateRelativePath(docName) {
    this.location="http://<%=portletRequest.getServerName()%>:<%=portletRequest.getServerPort()%>/pls/portal/url/page/<%=getPageGroup()%>/content?doc_path="+docName;
    </script>
    <br>Include:
    <%
    if (portletRequest.getParameter("doc_path") == null) {
    out.println("Error - no doc path specified");
    } else { 
    try { %>
    <jsp:include page="<%=docPathAndName%>" flush="true"/>
    <% } catch (Exception e) {
    out.println("Error retrieving document:"+e.toString());
    } // end if
    %>
    Each link from one included HTML file to another becomes a JS function that points the browser to the portal page that includes the portlet that includes thwe JSP that has the include tag to include the html document that is to be displayed.
    The current relative path the the html document (from a predefined root in the file system that is symbolically linked to the same directory as where the including JSP lives) is stored in a session variable, and appended to the document name that is passed to the page.
    If a full document path, as opposed to just the name, is stored, that no appending is done. However, the path is stripped out and stored in a session variable.
    Ths thing is, sometimes a document name, and sometimes a path is passed to the page. Therefore the requirement to know the path when it is not available. A name only will always be passed subsequent to a request for a document with the full path specified, therefore the session variable mechanism works.
    Thanx for the input
    Harry

  • Crystal reports V8.5 Chart legend adding up incorrectly - when using negative values

    Post Author: dawnyanne
    CA Forum: Crystal Reports
    Hi
    if anyone can help me I would be extremely grateful!
    I have a pie chart with a legend. There are just two values that are showing but one of the values is a negative value and the total of the legend is adding up incorrectly. Here is how it is showing at the moment
    Cash                 -0.71
    Uk Equities     100.71
    Total              101.42
    here is how it should be
    Cash               -0.71
    UK Equities   100.71
    Total             100.00
    I can set the chart amounts to be percentage - but then it comes out as only one decimal place and I need two.
    Any help would be very much appreciated!
    kind regards
    Dawnyanne

    Hi Ryan
    The search string 'crystal net 40' (search box in top right corner, returns this KBA:
    2105208 - ER - CR .NET SDK has a Section limit set to 104 and subreport limit of 40
    SP 13 for "SAP Crystal Reports, Developer Version for Visual Studio .NET" can be downloaded here:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • JSP Compilation Error when using OC4J out of the box

    Hello.
    After installing Java jdk 1.5.0_05, setting ORACLE_HOME, setting JAVA_HOME, rebooting, and installing OC4J standalone straight out of the box, I have deployed a simple web project that consists of just one JSP. I receive the following error message:
    NOTIFICATION J2EE JSP-0008 Unable to dispatch jsp Page: oracle.jsp.provider.JspCompilationException: Errors compiling: C:\LocalApps\OC4J\j2ee\home\application-deployments\oc4j_jsp\persistence\_pages\\_Test.java<pre></pre>
    I have deployed a number of Flex2 applications without incident. What am I missing here? Another odd thing is that my organization has OAS running and it can render JSPs fine.
    Any help is appreciated thanks,
    Mike
    P.S. I have gone back and set the JSP debug switches, but they do not yeild much more info. Here is the stacktrace:
    NOTIFICATION J2EE JSP-0008 Unable to dispatch JSP Page : oracle.jsp.provider.JspCompileException: <H3>Errors compiling:C:\LocalApps\OC4J\j2ee\home\application-deployments\oc4j_jsp\oc4j_jsp\persistence\_pages\\_Test.java</H3><pre></pre>
         at oracle.jsp.app.JspJavacCompiler.compile(JspJavacCompiler.java:304)
         at oracle.jsp.runtimev2.JspPageCompiler.attemptCompilePage(JspPageCompiler.java:731)
         at oracle.jsp.runtimev2.JspPageCompiler.compileBothModes(JspPageCompiler.java:456)
         at oracle.jsp.runtimev2.JspPageCompiler.compilePage(JspPageCompiler.java:413)
         at oracle.jsp.runtimev2.JspPageInfo.compileAndLoad(JspPageInfo.java:705)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:694)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:414)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Unknown Source)

    I had the very same Problem, and I spent a lot of time on it.
    When installing Oc4j as a service using Javaservice opnesource, I had no problem, even using J.D.K 1.6:
    %JSEXE% -install %JSNAME% %JVMDIR%\jvm.dll -XX:PermSize=128m -XX:MaxPermSize=256m -Xmx1024M -Xms1024M -Djava.class.path=%OC4J_HOME%\oc4j.jar -start oracle.oc4j.loader.boot.BootStrap -params -config %OC4J_HOME%\config\server.xml -out %OC4J_HOME%\log\OC4J_service_stdout.log -err %OC4J_HOME%\log\OC4J_service_stderr.log -current %JSBINDIR% -auto -description OC4JService
    Then I wanted to install it using "ServiceMill" or "Javaservice Wrapper", becuase it has a better control on the process and I had that awfull compilation error.
    I guess it is because ServiceMills uses java.exe and javaservice the .dll to launch the oc4j, no idea.
    Anyway, thank you very much!!!!!
    Antonio

  • Xcelsius XML Connection Issue when using a Crystal created XML file

    HI Xcelsius/Crystal Gurus,
    I am running Crystal Reports 2008 version 12.2.9.698 and Xcelsius 2008 5.3.0.0 Build 12,3,0,670,
    I am attempting to create an XML file from a Crystal report which will be consumed by an Xcelsius Dashboard.  Apparently, there is something with the file that Xcelsius does not like.
    I have formatted the report exactly as Xcelsius requires and exporting via text with an xml extension to create an .xml file.  When I add an XML Connection in Xcelsius and add the appropriate names/range, etc...I am able to see the file via the Preview XML button on the Connection, but when I use a component, I am not seeing the data in the component.
    I can 'recreate' the file in NotePad by manually typing in the entries to look exactly like the file created by Crystal and set up a connection in Xcelsius to consume that file and it works beautifully.
    Does anyone have any experience with using Crystal Reports to create an XML file (not using the XML Export, but by exporting as a Text and adding an extension)?
    Is it possible that Crystal is adding hidden characters or something?  I can pull this Crystal created file into an XML editor or MS Word and it is validated as a good XML File.
    Any help is greatly appreciated!

    This article is all about setting up security on the web service. But, I just want to connect to the web service as a client using the proxy and the web service doesn't have any security set on it at this time.
    I am getting a connection timeout, even when I set the syncMaxWaitTime in the domain.xml file on the app server to a higher number (although this doesn't seem to affect the time it takes for the debugger to return).

  • Fonts Incorrect when using compressor

    When I encode my .motn file straight from Motion, the fonts show up correctly in the finished quicktime. However, I've got about 62 of these motion files that need to be batch encoded, but when they come out of Compressor, the fonts display incorrectly...as if the font is not on my machine and being substituted.
    I've checked several of the motion files and the fonts they are using are installed on my system. What would cause this to happen?

    Ok, now I'm really stumped. So I took Patrick's suggestion and reinstalled the fonts system-wide. I checked the fonts were working correctly by launching a couple of the motion files, checking the fonts, then saving them.
    I then trashed Compressor's pref files (and FinalCut's pref files just for fun). Then I repaired disk permissions and rebooted. Once back in, I launched Compressor and loaded up two of the Motion projects. After choosing the appropriate encode preset, I double checked in the preview window and the fonts were dispalying correctly. Yay! So I submitted the job and waited. I opened the final quicktime file and the fonts are INCORRECT. What in the world??
    So, to recap: fonts show up correctly in Motion, they show up correctly in the Compressor preview, they even show up correctly in the timeline of FCP. But exporting from Compressor results in the wrong font and exporting my sequence from FCP crashes my system every time. I'm so confused.

  • Appending a _ in front of the jsp class name when using weblogic.jspc

     

    http://e-docs.bea.com/wls/docs60/jsp/reference.html
              java weblogic.jspc -d /weblogic/classes -keepgenerated primero.jsp
              "rb" <[email protected]> wrote in message
              news:[email protected]...
              >
              > hi,
              >
              > i do
              >
              > java weblogic.jspc -d /weblogic/classes primero.jsp
              >
              > and it only is generated a _primero.class and do not appear
              > the .java ?
              >
              > what i do bad ?
              >
              > thanks for advance
              >
              >
              > Rodrigo Fonseca da Fonseca <[email protected]> wrote:
              > >Hi,
              > >
              > >I'm using weblogic.jspc to compile some jsp fiels. The compilation is
              > >complete and successfully, but the names of generated files .java and
              > >..class are strange.
              >
              >
              >
              > >
              > >For example, compiling a file named change_login_data.jsp, the resulting
              > >files are change95_login_95_data.java and
              > >change95_login_95_data.class. Compiling a file named buy.jsp, the
              > >resulting files are buy.java and buy.class (fine situation). Why???
              > >
              > >I'm using:
              > >
              > >java weblogic.jspc -d c:\jsp_result -classpath
              > >
              >
              >c:\weblogic\myserver\serverclasses;c:\weblogic\lib\weblogicaux.jar;c:\weblo
              gic\classes
              > >-compiler jikes.exe -J-verbose -keepgenerated -verbose
              > >change_login_data.jsp
              > >
              > >
              > >thanks
              > >Rodrigo
              > >
              > >
              > >
              > >Mark Spotswood wrote:
              > >>
              > >> The namespace for java class files is more restrictive
              > >> than for JSP files. We prepend these underscores so
              > >> that if, for example, someone names their JSP "1.jsp",
              > >> we get a class file with a legal name. We did consider
              > >> not doing this for files which started with characters
              > >> we kenw to be valid (in fact we may have put it in a
              > >> service pack), but later found that this was not sufficient
              > >> because its possible to name a jsp file something that
              > >> clashes with java keywords ("class.jsp" for example).
              > >> Rather than making the scheme even more complex,
              > >> we decided to go back to the original sheme of always
              > >> prepending the underscore.
              > >> --
              > >> mark
              > >>
              > >> Mika Moilanen wrote:
              > >>
              > >> > >>>>> "Shankar" == Shankar Roy <[email protected]> writes:
              > >> >
              > >> > Shankar> Problem seems to go away with weblogic510sp4.jar in
              compilation
              > >classpath.
              > >> > Shankar> Shankar.
              > >> >
              > >> > Shankar> Shankar Roy wrote:
              > >> >
              > >> > >> Hi,
              > >> > >> Can anyone tell why when I invoke weblogic.jspc the class file
              that
              > >is
              > >> > >> generated has a _ in front of the class name
              > >> > >>
              > >> > >> java -classpath
              > >> > >>
              >
              >/space/shankar/weblogic/lib/weblogicaux.jar:/space/shankar/weblogic/classes
              /boot:/space/shankar/weblogic/classes:/space/shankar/dev/dev/lib/activation.
              jar:/space/shankar/dev/dev/lib/classes12.zip:/space/shankar/dev/dev/lib/mail
              .jar:/space/shankar/dev/dev/lib/oroinc.jar:/usr/java/lib/classes.zip
              > >> > >> weblogic.jspc -package com.careassured.jsp -commentary login.jsp
              > >> > >>
              > >> > >> produces a class file by the name _login.class
              > >> > >>
              > >> > >> Thanks for any help pointers.
              > >> > >> Shankar.
              > >> >
              > >> > Not with WLS5.1 and weblogic510sp6.jar, we still get '_' prefixed
              > >> > classes...
              > >> >
              > >> > Actually we're suffering quite a lot because of this bug in
              > >> > weblogic.jspc. Are there any plans for fix?
              > >> >
              > >> > --
              > >> > Best Regards,
              > >> > Mika
              > >> > ----------------------------------------------------------
              > >> > [email protected] phone: +358-0-511-23587
              > >> > Nokia Networks, PO box 320, FIN-00045 NOKIA GROUP, Finland
              > >> > ----------------------------------------------------------
              >
              

  • JSP Compile Error when using dynamic ID in logic:iterate and bean:size

    Hello,
    I try to create a dynamic table with logic:iterate and bean:size tag. Dynamic means the attributes are written by scriptlet. Eg.:
    <logic:iterate id="customerBean" name="<%= formName %>"  property="<%= propertyName%>" length="<%= sRowSize%>">When I replace the id Attribute with propertyName I get compile errors, such as
    the compiler doesn't know the value at runtime:
    Unable to compile class for JSP An error occurred at line: 179 in the jsp file: /pages/formContent.jsp Generated servlet error: _newCustomer.java:1046: Missing term. java.lang.Object <%= propertyName %> = null; ^
    Whats wrong ?
    Thanks for your help

    Solution: don't use a runtime expression for the id attribute.
    The id attribute is used to declare
    - an attribute in scope
    - a scriptlet variable on the page
    These are only available for the duration of the <logic:iterate> tag
    The "id" is only used in your programming. You don't need to make it dynamic.

  • Problem with path length when using oracle drive

    Hello!
    Does anybody else experience this problem with Oracle Drive?
    When I create a deep or nested hierarchy in which the path length is longer than 250 (the limit might be 255) characters, I cannot access the deeper subpages.
    Example:"X:\INET\START1\pfadlaengentest\das istein langer ordnername mit etwa 50 zeichen\and this is another veryveryvery long\and this is another veryveryvery lon2\and this is another veryveryvery lon3\and this is another veryveryvery lon4\and this is another veryveryvery lon5".
    I can access the page "and this is another veryveryvery lon4" but not "and this is another veryveryvery lon5"
    Is this problem due to WebDAV?
    What can I do - I think it is a critical error / bug?
    Regards Joerg.

    I opened a service request and oracle support could help me.
    The problem is the windows file system: the path length cannot be longer than 256 chars.
    There's a workaround with MS-Webfolders.
    More information is available via metalink: watch out for SR-Number 5659267.992.
    PS: Thanks to Bert
    bye :-j (joerg)

  • HTML bodypart rendered incorrectly when using text/calendar bodypart

    We have a web application in which we are constructing multipart email messages and sending them via an Exchange 2003 server.
    The structure of the email message looks like this:
    multipart/mixed
      multipart/alternative
        bodypart (text/plain)
        bodypart (text/html)
        bodypart (text/calendar)
      bodypart (application/ics, base64 encoding, iCal file attachment)
    The problem is that when we include the text/calendar bodypart, any embedded images in the HTML bodypart are displayed as attachments at the bottom of the email (which appears as a meeting request) in Outlook.  Additionally, the HTML is not rendered entirely correctly.  Hyperlinks appear appropriately as does the font formatting (e.g., bold), but table formatting is ignored and so items are not lined up as they should.
    If we remove the text/calendar bodypart, the HTML displays correctly, including the inline images, but the email does not show up as a meeting request.
    Doing some digging, I saw that HTML with inline attachments should be in a multipart/related section, however, we saw no change from the original problem.
    I'll post this to the Outlook forum as well (link TBD) as I don't know where the problem officially lies.  If anyone knows if this is a bug, or has some insight as to how to get the HTML to display correctly and also have the email show as a meeting invitation, I would appreciate it.  Thanks.
    --adam

    Ah, that would explain why removing the text/calendar body part "fixed" the HTML issues.  I'll let our product planning team know.
    This, however, begs the question, why is MSFT working on the quality of HTML to RTF conversion rather than just displaying the HTML?  I'm not sure I see an added benefit of using RTF over HTML in this case.  I can't imagine that there is there some sort of limitation the rendering engine.  Do you happen to know the answer?
    -adam

  • SQL*Plus displays European chars incorrectly when using Net*8 to query remote DB

    I have two 8.1.5 DBs, one on Win2k and one on RedHat Linux 6.2. I can successfully insert and retreive Western European characters fine on each of those systems using SQL*Plus and Net*8, provided that I am connecting to the local DB. I can also insert these characters fine while using SQL*Plus and Net*8 between the systems.
    The failure shows up when I try to view (select) the Western European characters using SQL*Plus on the Win2k system while querying the data on the Linux system (via Net*8). What gets displayed is the 7-bit ASCII truncated-equivalent of the character. I have verified that the data is commited and can be viewed correctly when a query is issued from the Linux system.
    Has anyone encountered anything like this??
    Any advice would be appreciated.

    I am confused about your questions .
    I have two 8.1.5 DBs. I can successfully insert and retreive Western European characters fine on each of those systems using SQL*Plus and Net*8, provided that I am connecting to the local DB. What is local db ? Do you mean you need to use dblink to connect from one database to another ? Or do you mean local machines ?
    The failure shows up when I try to view (select) the Western European characters using SQL*Plus on the Win2k system while querying the data on the Linux system (via Net*8). Do you mean selecting data from the 8.1.5 DB on Linux from SQL*Plus on Win2K ?
    What are your db character sets ?
    What are your NLS_LANG enviroment settings ?
    Which datatypes are you using ? If NCHAR , what are your national database character sets ?

  • Path problem when use node manager to start Managed Server

    Hi, I have met a problem:
    My managed server's root directory is /usr/local/bea/cluster1/usr_projects/mydomain
    My Node Manager 's default directory is /usr/local/bea/cluster1/weblogic700/common/nodemanager
    I have some config file located under managed server's root directory and log
    file is also should be generated in managed server's root directory.
    But when I try to use node manager to startup/shutdown the Managed Server, I found
    weblogic can not find the config file if I don't move the config file from Managed
    server's root directory to node manager server's default directory. and also log
    file was created under node manager's default directory.
    It seems that managed server's default directory has been changed to node manager's
    default directory.
    What shall I do if I want Managed Server's default directory to be kept?

    Hi Lumin,
    If the weblogic version is 8.1, there is a RootDirectory field in Remote
    Start tab which should resolve your problem. Just enter the absolute
    directory pathname on the machine where you are starting your managed server
    and the current working directory of the managed server will be this
    RootDirectory. Before 8.1, the RootDirectory was used for finding the config
    file for weblogic but it was never used to change the working directory of
    the managed server created by the node manager.
    cheers,
    gaurav.
    "lumin" <[email protected]> wrote in message
    news:3eb7a4ae$[email protected]..
    >
    Hi, I have met a problem:
    My managed server's root directory is/usr/local/bea/cluster1/usr_projects/mydomain
    My Node Manager 's default directory is/usr/local/bea/cluster1/weblogic700/common/nodemanager
    >
    I have some config file located under managed server's root directory andlog
    file is also should be generated in managed server's root directory.
    But when I try to use node manager to startup/shutdown the Managed Server,I found
    weblogic can not find the config file if I don't move the config file fromManaged
    server's root directory to node manager server's default directory. andalso log
    file was created under node manager's default directory.
    It seems that managed server's default directory has been changed to nodemanager's
    default directory.
    What shall I do if I want Managed Server's default directory to be kept?

Maybe you are looking for

  • 24" iMac Screen Dim Humming

    I have recently noticed that when my iMac's screen auto dims, a faint humming noise comes from within the iMac. Is this normal?

  • Error 1723 Installing Desktop Software

    Good Day! HELP!  I cannot load the Deskstop Software 7.1 on my laptop due to a Error 1723. I have tried the Java reload with the same results. ==== I was sent a BB Z30 to replace my BB 9930, when the keyboard stopped responding.  HUGE MISTAKE! the Ca

  • Adobe Forms Interactive_OFFLINE SCENARIO_Get Image Local file/path name

    Hi, I have requirement In adobe forms interactive. Please refer on the scenario below. OFFLINE SCENARIO: 1. User Click the IMAGE FIELD --> 2. Select Image from the local drive --> 3.? (requirement to be resolve: we need to get the image filename that

  • Error out when try to change pwd from admin cossole

    hi any one can help me out please when i try to change password from admin console im geting the following error. <1292536442986> <BEA-159907> <USER admin INVOKED ON com.bea:Name=ConfigurationManager,Type=weblogic.management.mbeanservers.edit.Configu

  • ITunes library file .itl is locked

    I just got a new PC running Windows 7.  After retoring my music library from Carbonite I now receive the message, "The iTunes library file .itl is locked, on a locked disk, or you do not have write permission for this file" any time I try to open iTu