Modified j_config.xml then get error

Portal Server v. 5.0.2Tomcat v. 4.1.27 LEI modified the j_config.xml file to make our images serve via https. After saving the changes, and restarting Tomcat, when attempting to access the portal, we get notorious white page with the message: "The server has experienced an error on startup. This problem must be fixed before using the system." Any idea on how to fix this or what to look for? I can't find any clues using PTSpy. Thanks for any help!- Herbie WilsonPort of Seattle

Herbie,
Try rebooting the primary portal server. Also check the database, see if it has a full disk or other error. Make sure you are editing the .xml files with a true text editor. If all else fails reboot everything.
Sid

Similar Messages

  • Xml report getting errored out

    hi friends
    i have one custom xml report with ten parameters whenever i submiteing concurrent program with mandatory paramas it will getting succesfully completed
    without requirement out put. Again whenever i submiteed program with mandatory params and non mandatory parameters it will getting errored out .
    the error was below
    Enter Password:
    MSG-01275: Date select AND afrm.certificate_date BETWEEN :P_FROM_DATE and :P_TO_DATE
    01-OCT-11 31-DEC-11
    REP-1276: Placeholder 'CP_PARENT_NAME' references one or more non-formula columns.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1276: Placeholder 'CP_PARENT_NAME' references one or more non-formula columns.
    thanks
    chandra

    Hi Chandra,
    There might be a problem with your .rdf.
    Please check the formula column and use srw.message functionality to debug.
    And please enable Trace option while you are running the report.
    So that you can get more info about the errors.

  • Oracle sys Index rebuild then Getting error Invalid Error Ora-01410

    Oracle sys Index rebuild,
    after Getting error Invalid Error Ora-01410 in alert log file.every Insert ,update and delete.
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    Oracle sys Index rebuild list
    CTXSYS
    EXFSYS
    FLOWS_030000
    FLOWS_FILES
    MDSYS
    OLAPSYS
    ORDSYS
    OWBSYS
    SI_INFORMTN_SCHEMA
    TSMSYS
    WKSYS
    MDSYS
    After rebuild above index im getting error while inserting,update,delete table rows
    Error like 'INVALID ROWID' alert log file
    ANY ONE HELP ME TO RESOLVE THE PROBLEM
    Edited by: 927230 on May 26, 2012 8:51 PM
    Edited by: 927230 on May 26, 2012 8:53 PM

    927230 wrote:
    Oracle sys Index rebuild after Getting error Invalid Error Ora-01410
    Oracle 11.1 version
    Oracle sys Index rebuild list
    CTXSYS
    EXFSYS
    FLOWS_030000
    FLOWS_FILES
    MDSYS
    OLAPSYS
    ORDSYS
    OWBSYS
    SI_INFORMTN_SCHEMA
    TSMSYS
    WKSYS
    MDSYS
    After rebuild above index im getting error while inserting,update,delete table rows
    Error like 'INVALID ROWID'
    ANY ONE HELP ME TO RESOLVE THE PROBLEMwhich came first the error or the rebuild?
    COPY & PASTE whole session & SQL so we can see exactly what you do & how Oracle responds
    post results from following SQL below
    SELECT * FROM V$VERSION

  • Raw files (CR2) - Cannot modify IPTC Core fields, get error messages

    I really hope someone out there can help me out here because I'm at my wit's end!!!!
    I have a bunch of raw files in a folder, these are just pictures I took for a bit of general practice over Christmas.
    Now, whilst trying to modify the IPTC Core Fields (basically adding my name and my email address to the pictures), it worked fine for most of the pictures, but for some reason it will not work for the last 20. This is driving me nuts. :(
    The first picture which doesn't work was taken literally 2 seconds after the last one which does work. All pictures work perfectly well in Photoshop, I can open them, modify them, save them as jpgs... no problem. But it just won't let me change the metadata. The pencils on the IPTC Core fields are nowhere to be found, the option File>File Info appears greyed out... etc.
    The error messages I get:
    1. When clicking on any line of the IPTC Core Fields (such as "Creator") =
    i "This property cannot be modified".
    2. When clicking on the keywords tab and trying to enter keywords =
    i "The file Name.CR2 cannot store XMP metadata. No changes will occur"
    I have scoured the web for help, visited multiple forums... to no avail. It looks like other people are having the same problem but no-one seems to have a solution. I haven't done anything different to those 20 pictures, so I just can't think of a logical answer, it just doesn't make sense!!
    I am only starting to catalogue my pictures in the hope of going professional one day and this is extremely discouraging... if anyone out there can help, I'd be ever so grateful. Right now I just feel like pulling my hair out!! :'(
    OK, rant over :)
    Thanks very much for reading and thanks very, very much in advance for any suggestions/ideas!!

    I have run into the same problem. I downloaded photos in raw format ".CR2" from a Canon 40D via a compact flash card reader to my laptop. I labelled the ones I wanted green and then transferred these images via wireless transfer to my desktop. I had not checked any keywords while these were on the laptop. I used the Bridge (CS3)File/Copy to menu selection to effect the transfer. Both systems are Windows XP, SP2.
    I then tried to check a keword in my list for an image and got the error message number 2 reported by Maria Atkins above. I got the same for all images on the desktop system.
    Observations:
    -the green labelled items are correctly filtered on the desktop, but the labels on the images all show white.
    -not all images even have .xmp files associated with them. It appears to be a random thing.
    -although I have checked my preference to have double click open an image in Camera Raw in Bridge it will not do so with these images, always opening Camera Raw in Photoshop.
    -the camera exif data is correctly attached to the images, whether there is a .xmp file associated or not.
    -On my laptop I found I can check keywords and they are stored with the image with no complaints from Bridge, and whether the image has a .xmp file associated with it or not. This is after I had copied the images to the desktop. I was just checking whether the problem was with the original images or just the transferred ones. It appears to be that something was not done correctly in the transfer.
    This is not a trivial issue since it is essential for cataloging images to enable future searches. I hope someone from Adobe is paying attention and will respond with an answer.

  • JDOM: Parsing XML String, getting error

    Hello,
    I am new to this forum, so please forgive me
    if this has already been asked before. I want to
    parse an XML string. I know the JDOM parser works
    great with a file, but apparently I have been
    unsuccessful parsing an XML String. Below is how I
    initialize the parser:
    import java.io.*; //Import proper packages
    import org.jdom.*;
    import org.jdom.input.*;
    import org.jdom.output.*;
    import java.util.*;
    import java.lang.*;
    public class XMLParser{
    private Document doc = null;
    public XMLParser(String xml){
    doc = readDocument(xml);
    private Document readDocument(String xml) {
    try {
    SAXBuilder builder = new SAXBuilder();
    org.jdom.Document result = builder.build(new
    StringReader(xml));
    return result;
    } catch(JDOMException e) {
    e.printStackTrace();
    } catch(NullPointerException e) {
    e.printStackTrace();
    return null;
    } //readDocument
    The following is the error I receive:
    JDOM/xmlparser.java [81:1] cannot resolve symbol
    symbol : method build (java.io.StringReader)
    location: class org.jdom.input.SAXBuilder
    org.jdom.Document result = builder.build(new
    StringReader(filename));
    --> Arrow pointing to builder.build
    Please if someone can help me out. If JDOM does not
    have this feature, then can someone please recommend a
    parser that can parse an XML String.

    Thank you for your help, although it seems like it was JDom 9 beta. When I tried with JDOM 8 beta, everything worked fine even with the StringReader. So if anyone is having similar problems with JDom 9 then try with JDom 8.

  • Importing XML file, getting error -50

    I recently had a hard drive crash and am working on getting my music onto the new HD. After multiple attempts with various programs, I finally got a copy of the songs on the iPod made using SharePod. Now I'm trying to import the XML file it created into iTunes. When I do this, I get the error -50, unknown error has occured. I've upgraded to the latest iTunes version and I'm still getting the error. Any ideas?? It's frustrating since I FINALLY got the songs on the iPod copied, but now can't get them in to iTunes.

    hi april!
    Now I'm trying to import the XML file it created into iTunes.
    hmmm. i'm probably confused because i'm not familiar with sharepod ... but are you getting the error when you import the
    b songs,
    or just the
    b playlists?
    can you at least get the songs back, even though you can't get the XML file?
    love, b

  • Logs on and off rapidly, then gets error message

    When I open iChat AV, it logs on to and then off of iChat quickly several times. Then I receive this error message:
    Could not connect to AIM
    You have attempted to login too often in a short period of time. Wait a few minutes before trying to login again.
    This problem always occurs.
    Any idea how I can fix it?
    Thanks!

    Open your Little House icon then Library and then Preferences.
    In here drag com.apple.ichat.AIM.plist to the trash and restart iChat
    9:43 PM Sunday; January 25, 2009

  • How to access a nested child tag values in  XML Object(getting error:No Such variable)

    Hi,
    I could see the XML object data and while accessing a perticular attribute let say "SlotA"  it is showing "No such variable Error".
    I appreciate any of your  inputs or suggestions to solve this error.
    You can find the screen snapshot of the problem as part of the attachment here.
    Thanks in advance
    CSNPrasad.

    Dear Natasha,
    Thanks for your mails & cooperation as well.
    This time i  have added the trace() and can see the value.Now the problem is "can't access a property or method of a null object reference"
    Noe: This code mxml file is called at Runtime based on the data defined in the XMLSocket data.
    I need to display Remote devices like davice1,device2 device3 etc. these are added/delete at any time ,so we need to show same changes in UI at Runtime.
    I implemented Polymorphism concept to construct the device object at runtime like follows
    var device:Object;
    for each (var deviceData:XML indeviceListXML..Device)
                        device = getBatteryBay(deviceData.deviceId)
                        // If device already exists with the deviceId, update the details
                        // Else create a newdevice and add it to the container for displaying it.
                                                                                    if (device == null)
                            if (device.Type == "DEVICE1")
                                device = new Device1();
                            else if (device.Type == "DEVICE2")
                            device = new Device2();
                            else
                                device = new DefaultDevice();
                            device.id = deviceData.deviceId;
                          device.name = deviceData.devicename;
                         device.setData(deviceData);
    Here new Device1(); and new Device2() are the UIComponents and created at Runtime, upto here no problem to display, when i try to setData to the devices it is throwing error
    "can't access a property or method of a null object reference". because Device1 and Device2 has Child components like "DataIndicator" and need to set properties to these components which are not created yet.
    I appreciate any of your Input or suggestions at the earliest
    Thanks in Advance
    Regards

  • Being asked to Authorize computer, and then get Error Message

    Hi, I went to sync my ipod this morning and I got a message to authorize the computer. I haven't done any upgrades since the last time I did a sync, but I thought maybe there was a burp somewhere so I clicked authorize. I then recieved a message "We could not complete your iTunes Store request. An unknown error occurred (-42408). Try again later."
    So I did, I tried it tonight (about 9 hours later) and got the same message. I logged into my account in iTunes and that worked, so I know I have the right password. I checked and I only have 3 computers authorized to play music, so even if I did add this one on top of that I should be fine. And there didn't seem to be any issues with purchasing things from the store.
    Any ideas?

    Hello mickeygee,
    I don't have any direct answers for you, but check out this recent thread regarding this issue for users to have recently updated to iTunes 9.03. There a number of posted potential solutions. Check it out. Hope it helps.
    http://discussions.apple.com/thread.jspa?threadID=2321090&tstart=0
    B-rock

  • HT2404 Since downloading the new operating system on my iPhone 4S, I'm having trouble with my phone messaging.  I enter a number or input a number from my contacts and send my msg.  I then get error messagings showing a set of "1" are entered before my nu

    Since downloading the new operating system on my iPhone 4S, I'm having trouble with my phone messaging.  I enter a number or input a number from my contacts and send my message.  I then receive a error message stating the message can't be sent and it shows a set of "1s" were added in front of the number I entered.  Ex: 1 (1) xxx-xxx-xxxx.  Does anyone know why this is happening and how I can fix it?

    I realize this. When calling prepaid cus service it only gives you the option to input your #. If you dont the system hangs up on you. When I input my number the system doesnt recognize it and hangs up on me.

  • I am trying to load firefox but keep getting thru the process to the end and then getting error mesage saying ff cannot establish a connection to the server at en-gb etc

    download ff completed for windows xp but then error message says ff cannot connect to the server. dont know what else i can try at this point. using laptop with wireless connection and ie working fine.

    If Firefox cannot connect to any site, the problem may be a firewall blocking access. For details on that and other possible causes see [[Firefox cannot load websites but other programs can]].

  • When using Firefox -loging to Yahoo mail - see account but then get error page says i have lower resolution than 1024xx600- have new computer and set at 1600x900, cleared out past history etc but does the same - can log in w/chrome but not firefox

    I don't know what else to say

    That can happen if you zoom Yahoo mail websites.<br />
    Yahoo uses a script to check the screen dimensions and zooming a page affects the window and screen width and height settings.
    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Tried to download ios 7. Connected to i-tunes and wants to restore my phone - says its in recovery mode. No other options available. Goes near to success then always get error code 29. Have tried to re-set my security software etc.

    My iPhone is now dead. Downloaded ios 7 by wifi on the phone. It then asked me to connect to i-tunes. I-tunes says the phone must be restored. Goes a long way down the restore and then get error code 29. I have tried turning off security software and firewalls as suggested by the Apple site but no difference. Can anyone help?

    Spent hours trying everything suggested and finally this morning hit on a solution. iTunes must be run as an administrator. Even though you are logged into your PC as an administrator, using the iTunes shortcut does not make you an administrator in iTunes. I found this out by using the diagnostics in iTunes and reading through the results report.
    I am using Windows 7, so I clicked the start button and right clicked on iTunes and selected "Run as an adimistrator". The first restore attempt got the 4013 error. I then did the DFU thing, hold power and home buttons for 10 seconds, release power and continue holding home for 10 more seconds.
    iTunes gave me the restore message and I clicked it. I clicked the restore iPhone button and it started. The drivers loaded a couple of times. I got the apple logo with the progress bar and this time instead of disappearing, it started to fill in.
    End result, a successful restore to factory settings and a happy 14 year old.
    Hope this helps others.

  • Getting error while installation of SAP on Linux 64 bit

    Dear All,
    me using redhat version 5
    database 10g
    Proceded installtion through VNC. while installation of oracle 10g getting some eror at 83% details mention below.
    Error in invoking target 'ntcontab.o' of makefile
    INFO: End output from spawned process.
    INFO: -
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ntcontab.o' of makefile '/oracle/SOL/102_64/network/lib/ins_net_client.mk'. See '/oracle/oraInventory/logs/installActions2009-06-18_09-13-18AM.log' for details.
    Exception Severity: 1
    INFO: Exception handling set to prompt user with options to  Retry  Ignore
    User Choice: Retry
    INFO: The output of this make operation is also available at: ''/oracle/SOL/102_64/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO: -
    INFO:
    INFO: rm -f ntcontab.*
    INFO: (if [ "compile" = "compile" ] ; then \
              '/oracle/SOL/102_64/bin/gennttab > ntcontab.c
              gcc  -c ntcontab.c
              rm -f /'/oracle/SOL/102_64/lib/ntcontab.o
              mv ntcontab.o '/oracle/SOL/102_64/lib/
              /usr/bin/ar rv'/oracle/SOL/102_64/lib/libn11.a '/oracle/SOL/102_64/lib/ntcontab.o ; fi)
    INFO: /bin/sh:  line 2: gcc:  command not found
    INFO: mv: cannot stat `ntcontab.o'
    INFO: : No such file or directory
    INFO: /usr/bin/ar: '/oracle/SOL/102_64/lib/ntcontab.o: No such file or directory
    INFO: make: *** [ntcontab.o] Error 1
    INFO: End output from spawned process.
    INFO: -
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ntcontab.o' of makefile ''/oracle/SOL/102_64/network/lib/ins_net_client.mk'. See '/oracle/oraInventory/logs/installActions2009-06-18_09-13-18AM.log' for details.
    Exception Severity: 1
    Request you to revert as soon as possible.
    ThankYou in Advance

    Dear,
    Thanks for your replay.
    command to check gcc version :        
    RPM -qa | grep gcc
    Output of this command.
    compact-gcc-34-g77-3.4.6-4
    libgcc-4.1.2-46.el5
    comact-gcc-34-c++-3.4.6-4
    libgcc-4.1.2-46.el5
    compact-libgcc-296-2.96-138
    compact-gcc-34-3.4.6-4
    pleae suggest if any updated version of gcc i have to installed or is this OK.
    I have ignore that error and click on continue after that my installation is finished sucessfull
    i have encounter one more problem
    ogon as root
    /oracle/oraInventory/orainstRoot.sh
    /oracle/<SID>/102_64/root.sh
    [root@ram 102_64]# ./root.sh
    ./root.sh: line 12: 01777: command not found
    ./root.sh: line 13: root: command not found
    ./root.sh: line 20: 01777: command not found
    ./root.sh: line 21: root: command not found
    ./root.sh: line 63: /bin/fmputl: No such file or directory
    ./root.sh: line 64: /bin/fmputlhp: No such file or directory
    ./root.sh: line 65: 550: command not found
    ./root.sh: line 66: 4555: command not found
    ln: creating symbolic link `/rdbms/filemap' to `/opt/ORCLfmap/prot1_64': No such file or directory
    .then getting error on create database at 13 phase
    checked ora_sql_result.log
    SAPINST:  Emd of output of SQL executing program /oracle/SOL/102_64/bin/sqlplus.
    SAPINST  found errors.
    SAPINST  the current process environment may be foun din SAPINST_ORA_ENVIRONMENT.log .
    SAPINST Oracle stop logging
    REquest you to please provide solution Asap.
    Thanks
    In  Advacbe
    Anant singh

  • Added Link at messageLovInput through personalizaton and getting error

    Hi Friends,
    While creating work order in eAM, Material Requirements secon is there, there we can find Item messagelovinput field. My clients wants to check Item details while selecting the item (long desc, on hand quantity etc..). For getting this functionality developed one custom page with item details and calling that page using link at item lov.
    1) added link at results table of Item lov and given at destination URI as follows
    OA.jsp?page=/xxnwc/oracle/apps/eam/workorder/webui/XXNWCItemDetailsPG&addBreadCrumb=Y&org_id={@OrganizationId}&inv_id={@InventoryItemId}.
    Issue
    1) open Item lov click on go --> we will get item in results table --> click on item details link --> open new custom page
    2) click on quick select at item then getting error like as follos
    Error: Cannot Display Page
    You cannot complete this task because you accessed this page using the browser's navigation buttons (the browser Back button, for example).
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's
    navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    Please let me know how to resolve this issue.
    For replicating issue you can go
    Responsibility: Maintenance Super User > Work Orders tab> then go to “Material Requirements” section. > add link to Item lov
    Thanks in Advance,
    Hanimi.

    I'm a great fan of problems magically fixing themselves ... always breathe a sigh of relief if that happens during a troubleshoot.
    I was wondering about trouble with a piece of album art initially. But if that was afoot we'd expect the synch to be always dying on the same song (or songs from the same album).
    Perhaps it's just that the USB connection is getting grumpy during a *really long* sync. If that's what is going on, we could be able to make some progress by moving the music across in smaller batches.
    Switch the iPod over to manually managing content. Select a chunk of songs ... say, about 1.5 GB-worth, and copy them over.
    Does that complete successfully? If so, select another batch of about 1.5 GB, and copy them over, and so on until you've got the songs on. Once you've done that, you can switch her back to your preferred auto-sync settings.
    Any better luck getting stuff on in stages like that?

Maybe you are looking for