WL 6.1sp2 ejbc and spaces in path

There is a known ejbc bug, that ejbc does not like directories with spaces.
Has the issue ever been addressed? Is there or will be the patch available?
Thanks

Hi.
Thanks for the additional info.
Hmm. Hard to see what the problem is. Here are a couple of suggestions in order:
1. The installation usually installs to a temporary directory as defined by
java.io.tmpdir (usually defaults to /tmp or /var/tmp on unix). Other customers have
had installations fail silently when there wasn't enough space in /tmp to hold all of
the extracted server files. You might try installing and pointing the tempdir to a
file system with more space:
java -Djava.io.tmpdir=/somedirectory -cp weblogic610sp2_generic.zip install -i console
2. It's possible that your copy of the WLS installation file is corrupted. You might
try downloading and installing again.
HTH,
Michael
Thomas Kux wrote:
Hi Michael,
take a look in the attached document.
I turned -verbose on at the java command line.
It happens with Sun's JDK 1.3.1_03 and IBM's JDK 1.3.0-13a.
I've created a user and a group weblogic. The directory /bea is owned by these.
Regards
Thomas
Michael Young <[email protected]> wrote:
Hi.
Need more info - what's the exception? Pls post the entire exception
including any related stack trace.
thx,
Michael
Thomas Kux wrote:
Installing the trial version i'm geting an exception in "main" rightafter the question for the server password in both modes (GUI and console).
Kernel Version 2.4.9-21
JDK Version 1.3.1_03
I also tried to set backward compatibility to Redhat 6.2 using LD_ASSUME_KERNELand the i386-glibc21-linux-env.sh, but had no success.
Regards
Thomas Kux--
Michael Young
Developer Relations Engineer
BEA Support
Name: bea.doc
bea.doc Type: Winword File (application/msword)
Encoding: base64--
Michael Young
Developer Relations Engineer
BEA Support

Similar Messages

  • Howto escape spaces in pathes when using rsync via ssh?

    Hi,
    I'm using rsync to sync my Addressbook's data from my PB to the cube where my iPod is connected to and syncs to that data. I've also set up ssh to connect to the cube and vice versa. Problem is, the path to the address book data contains a white space (Application Support). I escape it using a backslash on both the local and the remote path in the rsync command. It works with the local path but not with the remote one where it becames a 'real' space, so that rsync creates a new folder ~/Library/Application and copies everything over there. Any suggestions what's going on and how to solve it?
    (I remember I read something about the oddities of terminal - back when Panther came out - also scratching those kinds of issues, but don't remember where this was and yes, I've a workaround using a spaceless symlink at the cube, but I'd like to solve it within the rsync command. The symlink is just ugly).
    PowerBook 12   Mac OS X (10.4.6)  

    Hello Denis,
    Enclose the Path with double quotes and escape the whitespace with a backslash:
    with ssh, it works for me like:
    scp user@remote-host:"/Library/Application\ Support/test.nix" .
    works with rsync too this way.

  • Why should i add a dot and space to execute this oracle provided script?

    When multiple oracle databases are installed in one machine, we need to set the environment variables like ORACLE_HOME, ORACLE_SID before logging into the respective database. For this, oracle provides as script called oraenv.
    If we try to execute oraenv like
    oraenv   #without a dot and space before the filenamethe file seem to get executed but none of the env variables actually get set.
    To execute this script correctly we have to put a dot and a space before the filename like
    . oraenvWhat is difference between these two way of executing scipts?
    The orenv code
    # $Header: oraenv.sh.pp 19-jul-2001.14:02:07 jboyce Exp $ oraenv.sh.pp Copyr (c) 1991 Oracle
    # usage: . oraenv
    # This routine is used to condition a user's environment for access to
    # an ORACLE database. It will prompt for the value of the new SID unless
    # the variable ORAENV_ASK is set to NO, in which case it will use the
    # current value of ORACLE_SID.
    # The character "*" denotes a null SID.
    # NOTE:          Due to constraints of the shell in regard to environment
    # -----          variables, the command MUST be prefaced with ".". If it
    #          is not, then no permanent change in the user's environment
    #          can take place.
    case ${ORACLE_TRACE:-""} in
        T)  set -x ;;
    esac
    # Determine how to suppress newline with echo command.
    N=
    C=
    if echo "\c" | grep c >/dev/null 2>&1; then
        N='-n'
    else
        C='\c'
    fi
    # Set minimum environment variables
    # ensure that OLDHOME is non-null
    if [ ${ORACLE_HOME:-0} = 0 ]; then
        OLDHOME=$PATH
    else
        OLDHOME=$ORACLE_HOME
    fi
    case ${ORAENV_ASK:-""} in                       #ORAENV_ASK suppresses prompt when set
        NO)     NEWSID="$ORACLE_SID" ;;
        *)     case "$ORACLE_SID" in
             "")     ORASID=$LOGNAME ;;
             *)     ORASID=$ORACLE_SID ;;
         esac
         echo $N "ORACLE_SID = [$ORASID] ? $C"
         read NEWSID
         case "$NEWSID" in
             "")          ORACLE_SID="$ORASID" ;;
             *)             ORACLE_SID="$NEWSID" ;;          
         esac ;;
    esac
    export ORACLE_SID
    ORAHOME=`dbhome "$ORACLE_SID"`
    case $? in
        0)     ORACLE_HOME=$ORAHOME ;;
        *)     echo $N "ORACLE_HOME = [$ORAHOME] ? $C"
         read NEWHOME
         case "$NEWHOME" in
             "")     ORACLE_HOME=$ORAHOME ;;
             *)     ORACLE_HOME=$NEWHOME ;;
         esac ;;
    esac
    export ORACLE_HOME
    # Put new ORACLE_HOME in path and remove old one
    case "$OLDHOME" in
        "")     OLDHOME=$PATH ;;     #This makes it so that null OLDHOME can't match
    esac                    #anything in next case statement
    case "$PATH" in
        *$OLDHOME/bin*)     PATH=`echo $PATH | \
                       sed "s;$OLDHOME/bin;$ORACLE_HOME/bin;g"` ;;
        *$ORACLE_HOME/bin*)     ;;
        *:)               PATH=${PATH}$ORACLE_HOME/bin: ;;
        "")               PATH=$ORACLE_HOME/bin ;;
        *)               PATH=$PATH:$ORACLE_HOME/bin ;;
    esac
    export PATH
    # Install any "custom" code here
    # Locate "osh" and exec it if found
    ULIMIT=`LANG=C ulimit 2>/dev/null`
    if [ $? = 0 -a "$ULIMIT" != "unlimited" ] ; then
      if [ "$ULIMIT" -lt 2113674 ] ; then
        if [ -f $ORACLE_HOME/bin/osh ] ; then
         exec $ORACLE_HOME/bin/osh
        else
         for D in `echo $PATH | tr : " "`
         do
             if [ -f $D/osh ] ; then
              exec $D/osh
             fi
         done
        fi
      fi
    fi

    The dot is used to "source" a file. It is commonly used to change your environment variables without forcing you to log out and back in again for the changes to take effect. Check out "source command for Solaris 10" or something similiar for more info.

  • Capital Letters and spaces when naming files or images

    When I first started creating a web page, I was under the impression that I should only use lower case and use an underscore instead of a space. Is this still the case or have things moved on since then.
    If not, could somebody please let me know when I should use Capital Letters and spaces.
    Does it affect google ratings or any search engine ratings in any way.
    Thanks to all who have answered my previous posts. I do not know what I would have done without this forum.
    All the best to all and thanks again.
    Michael

    No change.
    Stick to A-Z, a-z, 0-9, hyphen and underscore. Avoid spaces and special characters such as ?, ! and #.
    It's a matter of differences in server operating systems. Spaces in filenames can be read differently by different servers and may lead to broken links.
    Javascript and some operating systems (e.g. Linux) are case sensitive.
    On Linux: MyPic.jpg is a different file to mypic.jpg
    In addition, Uppercase/lowercase is partly a question of consistency to avoid user error.
    Some users here have inexplicable (to them) errors because Images/image.jpg and images/image.jpg are two different paths.
    Choose a simple, logical (and legal) file naming convention (e.g. all lowercase) which you find most comfortable and stick to it at all times.

  • Spaces in path name problem

    Dear all,
    It seems that spaces in path names generally are a bit of a problem. However, I haven't found a solution. I am trying to create a file like this:
    File m_outFile = new File(m_inFile.getAbsolutePath() + "_out");The path to m_inFile has a space, so I get a FileNotFoundException. I tried surrounding the path name with quotes like this:
    File m_outFile = new File("\"" + m_inFile.getAbsolutePath() + "_out" + "\"");That didn't work either. Any ideas how to best deal with this? Thanks a lot in advance.
    Cheers,
    N.

    Thanks a lot for the replies!
    I ran some detailed tests and it turns out that the space in the path is indeed the problem, however not for the actual file creation, but rather for the XML transformation. I should have mentioned that the file that causes the problem serves as the source for a javax.xml.transform.stream.StreamResult, sorry about that.
    The actual FileNotFoundException is thrown when doing the transformation from a DOM object like this:
    DOMSource Xsource = new DOMSource(doc);
    Result dest = new StreamResult(m_outFile);
    transformer.transform(Xsource, dest);I ran some test with the following two path variants:
    m_outFile = new File(File.separator + "spacetest" + File.separator + "Test.xml");
    m_outFile = new File(File.separator + "space test" + File.separator + "Test.xml");The exception is thrown only in the second case, where the directory name has a space in it. The message reads:
    java.io.FileNotFoundException: F:\space%20test\Test.xml (The system can't find the given path)This makes sense, since apparently the space gets converted to "%20" somewhere along the way.
    So, it boils down to the question, how can I make the transformer use the correct path name? Adding quotes to the path doesn't help.
    Cheers,
    N.

  • NULL and Space value in ABAP

    Hi All,
           I like to know, is it NULL and Space value is same in ABAP, if it is not how to check null value.
    Thank you.
    Senthil

    everything is correct though some answers are not correct.
    A Database NULL value represents a field that has never been stored to database - this saving space, potentially.
    Usually all SAP tables are stored with all fields, empty fields are stored with their initial value.
    But: If a new table append is created and the newly-added fields do not have the 'initial value' marked in table definition, Oracle will just set NULL values for them.
    as mentioned: There is no NULL value to be stored in an ABAP field. The IS NULL comparison is valid only for WHERE clause in SELECT statement. WHERE field = space is different from WHERE field IS NULL. That's why you should check for both specially for appended table fields.
    If a record is selected (fulfilling another WHERE condition) into an internal table or work area, NULL values are convertted to their initial values anyway.
    Hope that sheds some light on the subject!
    regards,
    Clemens

  • NULL and SPACE

    Hello Gurus:
    I have had to use BOTH 'null' and 'space' (ofcourse I tried 'initial' too...) when selecting data from PRPS table, otherwise all the required records were not fetched. I had to do this on two different occassions. The first is a SAP provided field and the other is customer's enhancement. I have cut-paste the two code blocks. Any ideas why?
    Thanks in advance,
    Sard.
    ***********(1)**************
    select posid objnr func_area zzfunct from prps into
                    corresponding fields of table it_wbs
                              where func_area is null or
                                    func_area eq space.
    ************(2)**************
    select prps-pspnr prps-posid prps-post1
       into (wa_test1-pspnr, wa_test1-posid, wa_test1-post1,
       from prps
      where prps-posid in s_wbs and
            ...                 and
           ( prps-zzmlind is null or prps-zzmlind eq space ).
    append wa_test1 to it_test1.
    clear wa_test1.
    endselect.

    Hello Richard,
    the Requirement to check for NULL corresponds to the definition of the database (field) within the DDIC. Check the flag initialize (it has also some documentation).
    This flag is intended to be used if the definition of the db table is changed at SAP while the table already is used at customer side.
    After deploying the corresponding patch or upgrade such a changed definition may result into the need to convert all entries. For tables with many entries this would result into inacceptable downtime. So such changes are done without the initialiazation/conversion of existing entries.
    The tradeoff is the syntax you noticed.
    Kind regards
    Klaus

  • What is a  Logical and Physical file path in sap?

    what is a  Logical and Physical file path in sap?

    Hi,
    Physical file is what you see from the OS level.
    Logical file is what ABAP code can call certain functions to read/write.
    Transaction FILE would link them together. Typically the logical path ends with "<FILENAME>", and the logical file refers to the logical path.
    To extract the physical path from the logical path name
    DATA: lf_mandt TYPE sy-mandt,
            lf_opsys TYPE sy-opsys.
      lf_mandt = sy-mandt.
      lf_opsys = sy-opsys.
    To extract the physical path from the logical path name
      CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          client           = lf_mandt
          logical_filename = p_unix
          operating_system = lf_opsys
        IMPORTING
          file_name        = gwa_input
        EXCEPTIONS
          file_not_found   = 1
          OTHERS           = 2.
      IF sy-subrc EQ 0.
      Concatenating the physical path and the input unix file name
        CONCATENATE gwa_input p_file INTO gf_file .
      ENDIF.
    Reward if helpful.
    Regards,
    Ramya

  • Logical and physical file paths

    Hi,
    can anyone elobrate me  on what are logical and physical file
    paths ?

    hi,
    Follow this link
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3deb358411d1829f0000e829fbfe/frameset.htm
    File format determination (Required / optional fields and field checks).
    Logical File Path configuration through transaction 'FILE'. A new physical file path should be created on operating system level or an existing one can be used if agreed. The Basis team member should create a new file path at operating system level, if required.
    Hope this helps, Do reward.

  • No distinction between NULL and space

    No distinction between NULL and space. When you see the resultset, in PL/SQL developer, you will see that the NULL value is in yellow colour while column data having spaces is in white colour. In the new tool, there is not distinction between the two, so each time we will have to use the NVL function to determine the value in the column, which I would not like to do.

    An option in Preferences could be created, so that it was possible to choose as values NULL would be shown, as already it occurs in other tools.

  • What key(s) do i type to change language from english to other? i am writing s story in dual languages. i was told to click command and space bar together but it is not working.

    what key(s) do it type to change language from english to other? i am writing a story in dual languages. I was told to click command and space bar together but it is not working.

    Command Spacebar opens Spotlight as you have found out. If you want to change languages you need to say what app you are using to write the story in, I'm guessing you are using Pages or MS Word. If that's the case
    Pages: Open Inspector - Click the T tab - Click Language and change your language.
    MS Word: Tools Menu - Language - Choose your language.

  • I am having trouble using reverb of any kind; it does not sound natural, but rather "pixilated." Does anyone have any ideas for a solution? I have used Silververb and Space Designer and am having the same problem...

    I am using Logic Pro 9 with two MXL 990 microphones in my piano and a Rode NT1A for vocals. I have tried recording with added reverb and keeping getting not a natural reverb sound, but a rather "pixilated" one that does not sound natural. Does anyone have any ideas on how to solve this issue? I have tried using Silververb and Space Designer, and both result in the same problems. Thank you!

    This is asking for the impossible! It does not sound natural because maybe it isn't and in judging so whats your reference anyway. If you are in dire need of some natural sounding room you can go and record it yourself. But even then, the chances that it sounds like you imagined it, are very slim.
    There are very decent sounding reverberation plugins, based on artificial reverb generators or convolution-style, the last one is said to sound more 'natural' then the first one. Be it as it maybe, it really is like cooking food. You got all the ingredients for this delicious taste at hand and believe it or not to reach a satisfying result this is not enough, because if you do not mix the ingredients in the right proportion you will end up with a different dish you thought you'll get. This is exactly the same when one would mix audio, I dare say.
    So treat yourself to some good ingredients and the rest is up to you, namely: taste and experience!
    And looking at some of my past music productions I always find the same plugins for the 'ambient' task:
    Altiverb by Audio Ease when I have acoustic ensembles (classical music mostly), the Sony Oxford Reverb in studio productions, Bricasti when I have to deal with drums and MMultiBandReverb from MeldaProduction for all-round stuff. Thats the base I start from, after that I can end up with dozen Reverb plugins which basically all are doing the same thing but just in a tiny different way.

  • Diff between logical and physical file path

    Hi ,
    Could you please explain difference between logical and physical file path's and their importance in ABAP.
    Thanks and regards,
    shyla

    Hi
    The function module FILE_GET_NAME convert a logical path into its corresponding physical path.
    The advantage of using logical pathes within your applications is obivous:
    If you need to change the physical path you just adjust it within transaction FILE yet no changes are required to your application.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/25/ab3a57df3b11d189fc0000e829fbbd/frameset.htm
    The file names that you use in ABAP statements for processing files are physical names. This means that they must be syntactically correct filenames for the operating system under which your R/3 System is running. Once you have created a file from an ABAP program with a particular name and path, you can find the same file using the same name and path at operating system level.
    Since the naming conventions for files and paths differ from operating system to operating system, ABAP programs are only portable from one operating system to another if you use the tools described below.
    To make programs portable, the R/3 System has a concept of logical filenames and paths. These are linked to physical files and paths. The links are created in special tables, which you can maintain according to your own requirements. In an ABAP program, you can then use the function module FILE_GET_NAME to generate a physical filename from a logical one.
    Maintaining platform-independent filenames is part of Customizing. For a full description, choose Tools ® Business Engineer ® Customizing, followed by
    Implement. projects ® SAP Reference IMG. On the next screen, choose Basis Components System Administration ® Platform-independent File Names.
    For a more detailed description of the function module FILE_GET_NAME, enter its name on the initial screen of the Function Builder and choose Goto Documentation. On the next screen, choose Function module doc.
    Another way of maintaining platform-independent filenames is to use the Transaction FILE. The following sections provide an overview of the transaction.
    To create a logical filename, choose Logical filename definition, client-independent from the Navigation group box in Transaction FILE, then choose New entries. You define logical filenames
    You can either define a logical filename and link it to a logical path (as displayed here), or you can enter the full physical filename in the Physical file field. In the latter case, the logical filename is only valid for one operating system. The rules for entering the complete physical filename are the same as for the definition of the physical path for the logical file. To display further information and a list of reserved words, choose Help.
    If you link a logical path to a logical file, the logical file is valid for all syntax groups that have been maintained for that logical path. The filename specified under Physical file replaces the reserved word  in the physical paths that are assigned to the logical path. To make the name independent of the operating system, use names that begin with a letter, contain up to 8 letters, and do not contain special characters.
    Save your changes.

  • Firefox 3.6.11 does not respond on mouse, only Tab key and space bar

    HW: Lenovo R61i.
    OS: MS Win-XP PRO, ver 20002, SP3
    Internet Explorer is diabled in:
    Contol Panal|add/remove programs|add/remove windows components
    All other programs responds om USB mouse or the little joy-stick between G, H and B-keys.
    Removed FF, booted and reinstalled FF 3.6.11.
    Mouse works a couple of cliks - then Tab key and Space bar is the only tool.
    By the way - living in Norway, means No version og FF :)

    Getting very tired of this problem which is becoming much more frequent. I love the FF browser, but lately after I have been on line for a while, the browser stops responding to mouse clicks and I have to use the task manager to shut the program down and then reopen it to get it to work. From what I've been reading in the forums, this is not an uncommon problem. I've done all the recommended fixes and nothing works. Please fix this!!

  • Open pictures in Camera RAW and still have paths/clipping paths?

    Hello
    A big problem in Bridge is that I can not open my pictures in Camera RAW and still have my paths left. I work in a place where we get loads of product photos from many different companies and they almost always have a clipping path in it. Many of the pictures do we have to fix like colour, exposure etc and this is here Bridge comes in as the best solution to batchfix them. But now I have to take the long way through Photoshop. Is there a solution for this?, an update from Adobe or a script or something.
    Have a nice day!

    You do know that you can deconfigure Camera Raw from opening TIFFs and JPEGs, right?
    These are the settings I've chosen.  Done this way, JPEGs and TIFFs just open right into Photoshop, and their clipping paths would be intact.
    -Noel

Maybe you are looking for

  • Problem of dislplay in BEx

    Hello BWers, I created a query based on a multicube which joins two infocubes. These two infocubes have got the fields, the same records, all is the same except the characteristic Z_HIS (char 6). In the first infocube Z_HIS = '000000' for all records

  • Bootcamp will not boot windows7

    After a Mac software update and no other changes, I can no longer boot my Windows 7 partition. When windows can't boot it puts up a screen to troubleshoot and the only error found is: "System files integrity check and repair error code 0x490 Accordin

  • My iphone has developed sticky buttons with voice overide. I have tried restoring the phone to no avail. Please help!

    my iphone developed sticky buttons with voice overide. I tried to restore but that did not help. What should I do to get the phone to work again?

  • OSB Patch TYBN and U37G - ws-security interoperability

    Hi All, I am using weblogic 9.x style security with OSB 11g which will be communicating with OWSM enabled weblogic server on the server side. According to the below URL http://docs.oracle.com/cd/E17904_01/web.1111/e16098/interop_osb.htm +"Note:+ +Ens

  • Dynamic sizing of buttons

    I am working on a flex application where I want the button sizes to appear based on the size of the browser window and the resolution of the screen so I don't want to hard code the width of the buttons. <mx:Button id="submitButton" label="SQL" styleN