Cannot read Java array in javascript. Please see my code

Here is the script
<webuijsf:script binding="#{temp.script2}" id="script2">
foo()
var picture = <%=getApplicationBean1().getPictureDirName()[1].toString()%>;
</webuijsf:script>
<webuijsf:body binding="#{temp.body1}" id="body1" onLoad="foo();" style="-rave-layout: grid">
Error Message
The content of the form must consist of well-formed character data or markup.
Can anyone tell me what is the problem
I would be very greatfull if anyone could help me read a java var or array in a javascript

http://forum.java.sun.com/thread.jspa?threadID=5143339&messageID=9529903#9529903
http://forum.java.sun.com/thread.jspa?threadID=5143428&messageID=9530475#9530475
http://forum.java.sun.com/thread.jspa?threadID=5143443&messageID=9530587#9530587
http://forum.java.sun.com/thread.jspa?threadID=5143467&messageID=9530764#9530764
Why are you spamming 4 threads about the same problem? Use one thread and gently use the edit button if you want to add some new information. With 4 separate threads we are missing the overview.

Similar Messages

  • Error: cannot read: *.java

    I'm having difficulty pointing javac.exe to my .java files. My console looks similar to this...
    C:\Sun\AppServer\jdk\bin>javac Example.java
    error: cannot read: Example.java
    1 error
    How can I get javac to see my file? Any help is greatly appreciated.

    Hi,
    First of all please copy your jdk1.5 source file in the root directory of C: drive. If it is in C:\MyFiles\YourFiles\jdk1.5 then change it to C:\jdk1.5. It is more scientific ( or I think so..) to have jdk in your root file.
    If you are using WindowsXP, and having these problems, then please take the following steps:
    1. Go to Control Panel
    2. Click System
    3. Now click Advanced tab.
    4. On the bottom left, there is a button called Environment Variables. Please click it.
    5. Now there are two text fields. Select -- "Path" from the System Variables text field.
    6. Now select edit. On the right side where the windows path ends, put a comma and type C:/jdk1.5/bin ( Please type full extension of your jdk exactly as it is saved in C: drive.
    It may look like this:
    ....Root%\System32\Wbem;C:\jdk1.5.0_06\bin
    7. Now Click all OKs
    8. Now open cmd prompt and compile ur program from its directory.
    9. Now Thank God and be happy!!!!
    Regards,
    Mustufa Shakir Baldiwala

  • Please see my code and helpme out pls

    //Making Circle here
    gridx=20;
    gridy=20;
    num=0;
    for (var i=0;i < 10;i++)
    for (var j=0;j < 10;j++)
    dot.duplicateMovieClip("dot"+num,num);
    mc=this["dot"+num];
    mc._x=gridx*i;
    mc._y=gridy*j;
    num++;
    dot._visible=0;
    // here i make plain circle, but problam is my all circle
    open in fornt side, i want to that all my circle in background
    //hide all selection MovieClip
    for(i=1; i<=100; i++){
    this.createEmptyMovieClip("test_mc"+i,
    this.getNextHighestDepth());
    this["test"+i]._visible = false;
    // here i make fill circle mc, all hide with this code, but
    problam is all circle come in background
    //selection area
    _root.onMouseDown = function() {
    sel = this.createEmptyMovieClip("sel", 1);
    sel.startx = _xmouse; // we need to reference these later,
    so add them as properties of the selection clip
    sel.starty = _ymouse;
    this.onEnterFrame = function() {
    with(sel){
    clear();
    lineStyle( 1, 000000, 100 );
    moveTo(sel.startx, sel.starty);
    lineTo(_xmouse, starty);
    lineTo(_xmouse, _ymouse);
    lineTo(sel.startx, _ymouse);
    lineTo(sel.startx, sel.starty);
    _root.onMouseUp = function() {
    _root.select(sel.startx,sel.starty,sel._xmouse,sel._ymouse);
    // call the selection function
    removeMovieClip(sel);
    this.onEnterFrame = undefined;
    _root.select =
    function(x1:Number,y1:Number,x2:Number,y2:Number){
    // in case you dragged the selection box from right to left
    or bottom to top, we need
    // to work out the top left and bottom right coordinates..
    var sx = Math.min(x1,x2);
    var ex = Math.max(x1,x2);
    var sy = Math.min(y1,y2);
    var ey = Math.max(y1,y2);
    for(var item in this){ // loop through all items in the
    _root
    if(typeof(this[item])=="movieclip"){ // if the current item
    is a movieclip..
    this[item]._visible = isInside(this[item],sx,sy,ex,ey);
    function
    isInside(mc:MovieClip,x1:Number,y1:Number,x2:Number,y2:Number):Boolean{
    // check whether the selection coordinates enclose the mc
    coordinates
    return (x1<=mc._x && x2>=mc._x+mc._width
    && y1<=mc._y && y2>=mc._y+mc._height);
    // here u can find selection option, selection option is
    wroking, but same problam, it work in background, & hide my all
    MC (that Plain Circle also) and highlight only which we select
    // Some brif here:
    i want to create plain circle in background, after that some
    one want to slecte that palin circle highlight that circle only
    with fill circle ( for better explaination see my fla file which is
    attach here
    Please see this
    Pls pls help me out
    thanks
    praful damania

    for better explaination pls see my fla file which is attache
    there & I have some quation about it as under
    1) here i make fill circle mc, all hide with this code, but
    problam is all circle come in background
    2) here i make fill circle mc, all hide with this code, but
    problam is all circle come in background
    3) here u can find selection option, selection option is
    wroking, but same problam, it work in background, & hide my all
    MC (that Plain Circle also) and highlight only which we select
    i want to create plain circle in background, after that some
    one want to slecte that palin circle highlight that circle only
    with fill circle
    thanks for reply
    Praful Damania

  • Access Java Array in Javascript function

    Hi, could someone please help me, I have an array that gets populated in java code and I need to see it in a javascript function.
    Here's what I have so far:
    //In java class for AvgCostChart.jsp
    private String[] month;
    public String[] getMonth()
    {//code to populate
    return month;}
    Then in my javascript onLoad function I try to access it. I know how to access the values one at a time like this.
    var month1='#{AvgCostChart.month[0]}';
    But how do I pass this to a function.
    I tried assigning to to another array to loop through the values like this:
    var myArr = new Array();
    myArr'#{AvgCostChart.month}';
    alert (myArr[0]);
    But that does not work, any one done this before.
    I've also tried saving it in the session and then accessing it but can't get that to work either.
    Any help will be greatly appreciated.

    Hi,
    Please go through the following thread:
    http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=60147
    Hope this helps
    Cheers
    Girish

  • Assign a java array to javascript array

    hi all,
    I am trying to do as below
    <%!
    String messages[]={" is mandatory","Special Characters are not allowed","characters length is more than limit(1000 characters)"};
    %>
    And then
    var errormessages=new Array();
    errormessages=<%=messages%>;
    i am getting some javascript error ....please do help to resolve this.....
    Suggesstions are appreciable
    Thanks
    Raghu

    What version of Java are you using? Have you tried the new Java Plug-In in 6u10? http://jdk6.dev.java.net/6u10ea.html
    The new Java Plug-In should handle this case correctly.

  • HOT Key choosing.Please see my code and suggest

    Hi,
    I am getting this strange behaviour.
    I have a cell renderer which displays a list in flwg format:
    1.[gif] Text
    6.[gif] Text
    I have written a small HOT KEY Funtionality.If I press HOT KEYS
    1,2 OR 3,focus goes to the concerned elements.
    But not got 4,5 or 6?
    Can anyone tell me whats wrong if poss?
    class MyListCellRenderer extends  /*JLabel*/ JPanel
    implements ListCellRenderer{
            private JLabel indexLabel;
            private JLabel imageAndText;      
            public MyListCellRenderer(){
            indexLabel = new JLabel();
            imageAndText = new JLabel();
            setLayout(new FlowLayout(FlowLayout.LEFT,3,0));
            add(indexLabel);
            add(imageAndText);
               setOpaque(true);
    public Component getListCellRendererComponent(
    JList list, Object value,int index,
    boolean isSelected, boolean cellHasFocus) {
    final JList fJList = list;
    indexLabel.setText(String.valueOf(index+1));
    imageAndText.setText(value.toString());
    if(isSelected){
       setBackground(isSelected ? Color.red : Color.yellow);
       fJList.addKeyListener(new KeyAdapter() {
               public void keyPressed(KeyEvent e) {
              int keyCode = e.getKeyCode();
                 if (keyCode >= KeyEvent.VK_1 && keyCode <=KeyEvent.VK_9) {
                        System.out.println(keyCode-KeyEvent.VK_0);
                        fJList.setSelectedIndex(keyCode-KeyEvent.VK_1);
                        setBackground(Color.red);
                 else {
                      setBackground(list.getBackground());
                      setForeground(list.getForeground());
    } // End
         

    If the other suggestions don't work for your situation, I have something else you might try:
    I'm not sure if using keyPressed with e.getKeyCode() is returning what you expect (the integer typed) to do your calculation to set the selected index on the list.
    Maybe try keyTyped with e.getKeyChar() and then if you can get that as a string, doing a parseInt on it to get an integer to do your calculation (which should be a simple -1) and then set your list index.
    1) So, say keyTyped e.getKeyChar() returns the char '1' that you store as a variable char charKeyTyped
    2)Then you use String's valueOf(charKeyTyped) and you store it as a variable String stringKeyTyped
    3)Then use Integer.parseInt(stringKeyTyped) catching the exception that may occur if it isn't an integer
    4)Now take step 3's result and do your calculation and subtracting 1 to get your selected index.
    Hope that english explanation makes sense as I wasn't up to writing actual code.

  • Re: Need help with this assignment. Please see my code and give me tips/advice.

    And your question is?
    My comment so far is:
    You need to be specific in your questions and use code tags.

    And your question is?
    My comment so far is:
    You need to be specific in your questions and use
    code tags.My comment so far is:
    Start coding...

  • Please see my code and give me idea

    Hi master;
    first i use F2-key event and put only this code
    go_block(‘emp’);
    Execute_query;
    but system give me this error FRM-41008 then i use
    on-error event but no result
    Sir I use this code on-error event
    DECLARE errnum NUMBER := ERROR_CODE;
    errtxt VARCHAR2(80) := ERROR_TEXT;
    errtyp VARCHAR2(3) := ERROR_TYPE;
    BEGIN IF errtyp=’FRM’ and errnum = 41008 THEN
    go_block(‘emp’);
    Execute_query;
    END IF;
    END;
    sir give me idea
    Aamir

    Aamir, you asked this same question in the thread below, and I provided an answer.
    how use F2-key

  • HT3775 I have a video file that is under quick play .mov and my macbook is telling me that it cannot read the file?

    I am trying to record something on my desktop and I recorded it with an application called iscreen recorder lite. I downloaded it off of the application store thinking it would save under a file my computer would recognize. When I tried to play the recording back again, my computer tells me it cannot read the file and I should see if the formatting is right. I checked and the file is under .mov which should be supported by mac. Please help!

    I have this exact same problem, only on Snow Leopard. What's the right answer?
    Thanks, Mark

  • The system cannot read from the specified device

    What do I do? ive tried on two computers and it says it on both computers when im trying to install! ive looked at all the troubleshooting pages and it doesnt say anything... my computer says the ipod is connected but when i try to install itunes it says that it cannot read from the specified device please help

    hi parkep!
    are you getting an error message number with that error message? if so, what is it?
    are you installing from the CD, or are you using installers downloaded from the Apple website?
    iTunes 6.0.4.2 Installer
    Ipod Updater Installer
    love, b

  • Please check the Code snippet and detail the difference

    Please go through the two code snippets given below...
    Can some one please let me know if using generics is a better way to denote the signature and if yes, why is it so?
    Thank you
    Two classes:
    class SimpleStr {
         String name = "SimpleStr";
         public SimpleStr(String name) {
              this.name = name;
         public String getName() {
              return this.name;
         public String toString() {
              return getName();
    class MySimpleStr extends SimpleStr {
         String name = "MySimpleStr";
         public MySimpleStr(String name) {
              super(name);
              this.name = name;
         public String getName() {
              return this.name;
         public String toString() {
              return getName();
    Code Snippet 1:
    class AnotherSimpleStr {
         public <S extends SimpleStr>S getInfo() {
              return (S)new MySimpleStr("val3");
    Code Snippet 2:
    class AnotherSimpleStr {
         public SimpleStr getInfo() {
              return new MySimpleStr("val3");
    }

    Also, please see the code below, the getInfo() method is not taking care of Type safety right??!!!!
    class AnotherSimpleStr {
         public <S extends SimpleStr>S getInfo() {
              return (S)new Object();
         public <S extends SimpleStr>S getInfoAgain(Class<S> cls) {
              return (S)new MySimpleStr("Val");
    }

  • I recently purchased a Mac 0S X 10.6.6 which was an upgrade from the Mac OS 1.4.1.1  I downloaded the adobe ph otoshop CS2 which I had on my old computer and now it cannot read my NEF files.  Which is a RAW file from my Nikon.  Can anyone help...please?

    I recently purchased a Mac OS X 10.6.6 which was an upgrade from my Mac OS version 10.4.1.1  I downloaded the Adobe Photoshop CS2 which I had on my old computer and now it cannot read my NEF files which is a RAW file from my Nikon D200.  I did not have this problem on my old Mac.  I always shoot RAW and can't open any photos.  Can anyone help me PLEASE?!? 

    Do you have access to another Mac to see if the disk can be read by it?  If it can't then you're pretty sure it's the disk. If it can then there may be issues with your optical drive which might be cleared up by using a cleaning disk on it, one that uses dry brushes (no liquid).
    If you have access to another Mac and it can read the iWork disk make a disk image of it so you can move the disk image to your iMac and install from the disk image.
    OT

  • Error: cannot read: OurFirstProgram.java

    Went through all help to no avail. New to Java. Using Windows 2000. Attempting to compile OurFirstProgram.java using MSDOS prompt. Receiving error: cannot read: OurFirstProgram. File saved as .java in C:\j2sdk1.4.1_01\bin\. javac also in same dir.
    From MSDOS tried many variations: c:\>j2sdk1.4.1_01\bin\javac -source 1.4 OurFirstProgram.java
    Please advise, thanks.

    Resolved using simple calculation class:
    created seperate directory from j2sdk1.4.1_01 labeled "Fruit" in which Fruit.java file exists.
    In MS-DOS from command line, used:
    c:\>cd Fruit
    C:\Fruit> javac Fruit.java
    By identifying the path of where the actual .java file resided, I was able to read and complie the file creating the .class file in the same dir.

  • Compiling message "cannot read" (new to java)

    Sorry about yet another question on compiling. I'm new to java. I've read alot of the threads on this, but my HelloJava.java won't compile.
    I'm working on w2k. I've set my path to
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;c:\j2sdk1.4.0\bin
    using the environment variables in the system properties box.
    This seems to work fine.
    but I keep getting the "cannot read" when compiling.
    I've created a classpath variable in the environment variables
    CLASSPATH = .;C:\src
    and my java file is definately .java not .java.txt and it's in the src folder on my c drive.
    Do I need to set classpath? Also I've put my HelloJava.java file in the same folder as my javac and it still won't compile. What am I doing wrong?
    By the way, the HelloJava file came from the book "Learning Java".
    thanks in advance.

    OK -
    If you place your .java files in C:\src, to compile you must either
    1. Go to (change the current directory to, using cd command) c:\src and then enter "javac ...."
    or
    2 From any directory enter "javac C:\src\...."
    Classpath is used by javac and java, but not in this way.
    Read here for the full story:
    The Path is a set of pointers that Windows uses to locate programs that you execute, like javac.exe and java.exe. This setting is explained here:
    http://java.sun.com/j2se/1.4/install-windows.html
    Scroll down to: 5. Update the PATH variable
    The CLASSPATH is another set of pointers that is used by Java to find the files that you create and want compiled and/or run. This setting is explained here:
    Setting the Classpath:
    http://java.sun.com/j2se/1.4/docs/tooldocs/windows/classpath.html
    [NOTE: always start your classpath with ".;" which means the current directory. See my classpath, below]
    How Classes are Found:
    http://java.sun.com/j2se/1.4/docs/tooldocs/findingclasses.html

  • Cannot read MAC address when Installing the Java workplace

    Hi All,
         While installing the Java Workplace for 2004s, following error happened:
    ERROR 2008-03-25 11:50:53
    CJS-30059  Java EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile umconfigurator.log: 'Mar 25, 2008 11:50:49... Info: UME configurator (com.sap.security.tools.UMConfiguratorLoad) called for action "setup"PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.pathjava.text.ParseException: cannot read MAC address from [
    Windows IP Configuration
            Host Name . . . . . . . . . . . . : IDSMYN
            Primary Dns Suffix  . . . . . . . :
            Node Type . . . . . . . . . . . . : Hybrid
            IP Routing Enabled. . . . . . . . : No
            WINS Proxy Enabled. . . . . . . . : No
    Ethernet adapter ] using ipconfig /all     at com.sap.bc.krn.perf.PerfTimes.windowsParseMacAddress(PerfTimes.java:1173)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:289)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:260)     at com.sap.tc.logging.UID.getnodeaddress(UID.java:303)     at com.sap.tc.logging.UID.<clinit>(UID.java:59)     at com.sap.tc.logging.GUId.toString(GUId.java:46)     at java.lang.String.valueOf(String.java:2131)     at java.lang.StringBuffer.append(StringBuffer.java:370)     at com.sap.tc.logging.ListFormatter.format(ListFormatter.java:215)     at com.sap.tc.logging.Log.writeInt(Log.java:864)     at com.sap.tc.logging.Log.writeInternalByAPI(Log.java:930)     at com.sap.tc.logging.LogController.writeToLogs(LogController.java:3160)     at com.sap.tc.logging.LogController.messageInternal(LogController.java:2280)     at com.sap.tc.logging.LogController.logInt(LogController.java:2477)     at com.sap.tc.logging.LogController.logInt(LogController.java:2432)     at com.sap.tc.logging.LogController.logIntByAPI(LogController.java:2231)     at com.sap.tc.logging.APILogger.instrumentIntByAPI(APILogger.java:59)     at com.sap.tc.logging.LogController.addLog(LogController.java:1320)     at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:1119)     at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:60)     at com.sap.security.tools.UMConfigModel.<init>(UMConfigModel.java:79)     at com.sap.security.tools.UMConfiguratorLoad.main(UMConfiguratorLoad.java:179)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)***************************************************************                                                         **** getMacAddress() failed                                  ****                                                         **** trying to get mac address from                          **** file C:\Program Files\sapinst_instdir\NW04S\SYSTEM\DEVWP\MAXDB\MAC_ADDRESS**                                                         **************************************************************Exception : CreateProcess: cat MAC_ADDRESS error=2**************************************************************                                                         **** getMacAddress() failed                                  ****                                                         **** failed to get mac address with Runtime.getRuntime().exec( cat MAC_ADDRESS )**                                                         **************************************************************java.text.ParseException: cannot read MAC address for IDSMYN from [] using cat MAC_ADDRESS     at com.sap.bc.krn.perf.PerfTimes.voidParseMacAddress(PerfTimes.java:1326)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:571)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:260)     at com.sap.tc.logging.UID.getnodeaddress(UID.java:303)     at com.sap.tc.logging.UID.<clinit>(UID.java:59)     at com.sap.tc.logging.GUId.toString(GUId.java:46)     at java.lang.String.valueOf(String.java:2131)     at java.lang.StringBuffer.append(StringBuffer.java:370)     at com.sap.tc.logging.ListFormatter.format(ListFormatter.java:215)     at com.sap.tc.logging.Log.writeInt(Log.java:864)     at com.sap.tc.logging.Log.writeInternalByAPI(Log.java:930)     at com.sap.tc.logging.LogController.writeToLogs(LogController.java:3160)     at com.sap.tc.logging.LogController.messageInternal(LogController.java:2280)     at com.sap.tc.logging.LogController.logInt(LogController.java:2477)     at com.sap.tc.logging.LogController.logInt(LogController.java:2432)     at com.sap.tc.logging.LogController.logIntByAPI(LogController.java:2231)     at com.sap.tc.logging.APILogger.instrumentIntByAPI(APILogger.java:59)     at com.sap.tc.logging.LogController.addLog(LogController.java:1320)     at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:1119)     at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:60)     at com.sap.security.tools.UMConfigModel.<init>(UMConfigModel.java:79)     at com.sap.security.tools.UMConfiguratorLoad.main(UMConfiguratorLoad.java:179)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)**************************************************************                                                         **** Suggested workaround:                                   ****                                                         **** create file C:\Program Files\sapinst_instdir\NW04S\SYSTEM\DEVWP\MAXDB\MAC_ADDRESS** with hostname and mac address in the following format:  **** IDSMYN xx:xx:xx:xx:xx:xx**                                                         ***************************************************************java.text.ParseException: cannot read MAC address from [
    Windows IP Configuration
            Host Name . . . . . . . . . . . . : IDSMYN
            Primary Dns Suffix  . . . . . . . :
            Node Type . . . . . . . . . . . . : Hybrid
            IP Routing Enabled. . . . . . . . : No
            WINS Proxy Enabled. . . . . . . . : No
    Ethernet adapter ] using ipconfig /all     at com.sap.bc.krn.perf.PerfTimes.windowsParseMacAddress(PerfTimes.java:1173)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:289)     at com.sap.bc.krn.perf.PerfTimes.getMacAddress(PerfTimes.java:260)     at com.sap.tc.logging.UID.getnodeaddress(UID.java:303)     at com.sap.tc.logging.UID.<clinit>(UID.java:59)     at com.sap.tc.logging.GUId.toString(GUId.java:46)     at java.lang.String.valueOf(String.java:2131)     at java.lang.StringBuffer.append(StringBuffer.java:370)     at com.sap.tc.logging.ListFormatter.format(ListFormatter.java:215)     at com.sap.tc.logging.Log.writeInt(Log.java:864)     at com.sap.tc.logging.Log.writeInternalByAPI(Log.java:930)     at com.sap.tc.logging.LogController.writeToLogs(LogController.java:3160)     at com.sap.tc.logging.LogController.messageInternal(LogController.java:2280)     at com.sap.tc.logging.LogController.logInt(LogController.java:2477)     at com.sap.tc.logging.LogController.logInt(LogController.java:2432)     at com.sap.tc.logging.LogController.logIntByAPI(LogController.java:2231)     at com.sap.tc.logging.APILogger.instrumentIntByAPI(APILogger.java:59)     at com.sap.tc.logging.LogController.addLog(LogController.java:1320)     at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:1119)     at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)     at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:60)     at com.sap.security.tools.UMConfigModel.<init>(UMConfigModel.java:79)     at com.sap.security.tools.UMConfiguratorLoad.main(UMConfiguratorLoad.java:179)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:324)     at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)Mar 25, 2008 11:50:53... Info: Using SID "J11" for secure storageMar 25, 2008 11:50:53... Info: Created group entry in secure storage: Group "Administrators", roles "Administrator"Mar 25, 2008 11:50:53... Info: Created group entry in secure storage: Group "Guests", roles ""Mar 25, 2008 11:50:53... Info: Created user entry in secure storage: User "Administrator", password set, parent groups "Administrators", locked "false", roles ""Mar 25, 2008 11:50:53... Info: Created user entry in secure storage: User "Guest", password not set, parent groups "Guests", locked "true", roles ""Mar 25, 2008 11:50:53... Info: Inserted administrator user data into secure storage: "Administrator"Mar 25, 2008 11:50:53... Info: Setting UME property "ume.login.guest_user.uniqueids" to "Guest"Mar 25, 2008 11:50:53... Info: Setting UME property "ume.persistence.data_source_configuration" to "dataSourceConfiguration_database_only.xml"Mar 25, 2008 11:50:53... Warning: UME property "ume.authenticationFactory" shall be set, but does not existMar 25, 2008 11:50:53... Info: Setting UME property "ume.logonAuthenticationFactory" to "com.sap.security.core.logon.imp.SAPJ2EEAuthenticator"Mar 25, 2008 11:50:53... Info: Setting UME property "ume.login.context" to "ticket"Mar 25, 2008 11:50:53... Info: Setting UME property "ume.login.context.default" to "ticket"Mar 25, 2008 11:50:53... Info: Setting UME property "login.ticket_keyalias" to "SAPLogonTicketKeypair"Mar 25, 2008 11:50:53... Info: Setting UME property "login.ticket_keystore" to "TicketKeystore"Mar 25, 2008 11:50:53... Info: Setting UME property "login.ticket_lifetime" to "8"Mar 25, 2008 11:50:53... Info: Setting UME property "ume.superadmin.activated" to "FALSE"Mar 25, 2008 11:50:53... Info: Set role references for jndi_all_operations in path "security/configurations/service.naming/security/roles/UME User Store/jndi_all_operations"Mar 25, 2008 11:50:53... Info: Set role references for jndi_get_initial_context in path "security/configurations/service.naming/security/roles/UME User Store/jndi_get_initial_context"Mar 25, 2008 11:50:53... Info: Set role references for telnet in path "security/configurations/service.telnet/security/roles/UME User Store/telnet_login"Mar 25, 2008 11:50:53... Info: Added group "Administrators" to path "security/roles/UME User Store/administrators/groups"Mar 25, 2008 11:50:53... Info: Added group "Guests" to path "security/roles/UME User Store/guests/groups"Mar 25, 2008 11:50:53... Info: Added group "Everyone" to path "security/roles/UME User Store/all/groups"Mar 25, 2008 11:50:53... Info: Changing JMS username in path "jms_provider/DEFAULT/default/conn_factories/XATopicConnectionFactory" to "Administrator"Mar 25, 2008 11:50:53... Info: Changing JMS username in path "jms_provider/DEFAULT/default/conn_factories/QueueConnectionFactory" to "Administrator"Mar 25, 2008 11:50:53... Info: Changing JMS username in path "jms_provider/DEFAULT/default/conn_factories/TopicConnectionFactory" to "Administrator"Mar 25, 2008 11:50:53... Info: Changing JMS username in path "jms_provider/DEFAULT/default/conn_factories/XAQueueConnectionFactory" to "Administrator"Mar 25, 2008 11:50:53... Info: Operation executed successfullyMar 25, 2008 11:50:53... Info: Committed changes to configuration managerMar 25, 2008 11:50:53... Info: Leaving with return code 0'.
    Anyone knows how to solve it?
    Thanks in advance.
    YiNing

    Posting this in the Netweaver Administrator section may yield better results.

Maybe you are looking for

  • How to publish pages made in third party software

    On my "homepage" websites I can upload html pages created by third party software (Adobe GoLive CS2 in my case) onto my .Mac sites. I can't find anything in iWeb about publishing custom-made webpages in iWeb and/or on the iWeb. Is this possible with

  • I can't get rid of firmware for WRT54RS flashed on WRT54GL router

    Today I tried (unsuccesfull) to reset my router back to factory default. Unfortunately I found that the IP address did not reset to factory default. But I still can ping the device. So I checked the firmware by logging into the device. B.t.w the admi

  • Reuse Task flows without Page fragment

    Hello, I ve seen some examples with task flows being resued inside regions and using page fragments. However , my requirement is little different and would like some inputs on this. I have an authentication module to be used in different ADF applicat

  • Getting ICM_HTTP_CONNECTION_FAILED  message in SM59.....?????

    Hi,   I have set all the SSL and ICM related parameters in the instance profile. I have activated the HTTPS on 18040 port. also i have installed the SSL ceertificate in strust. but im still getting the ICM_HTTP_CONNECTION_FAILED when trying to test t

  • Adobe Illustrator CS6 crashes when I select or move an object

    I can open Adobe Illustrator fine, but as soon as I select an object, before I release, the software crashes; if I'm lucky I can move the object, but before I release it, the software crashes. Adobe Creative Cloud iMac OSX 10.8.4 and I am using a Wac