Executing multiple commands with sudo fails

Hi,
We're having trouble with sudo and bash.  When we want to execute multiple commands and there are spaces, the commands don't run.  Here's an example of what works:
[root@erpapp1-prod ~]# sudo -i -u oracle bash -c 'ls;pwd'
In this case, I get a listing of the files in /home/oracle followed by the current directory of /home/oracle.
Here's an example of what DOESN'T work:
[root@erpapp1-prod ~]# sudo -i -u oracle bash -c 'ls; pwd'
Notice the space before "pwd".  In this case, all I get is the listing of files in /home/oracle.
Caveat:  I'm a real beginner with Linux.  I've compared many of the files (/home/oracle/.bash_profile, /home/oracle/.bashrc, /etc/bashrc, /etc/profile) from this server to another where we don't have issues and, other than some logic being in different order, don't see much of a difference.  Again, very beginner here.
Any ideas?  Thanks!
Todd

What shows up as a space may not necessarily be a space. For instance, it could be some control character like a newline, which might interfere with the execution. For example:
$ test=`echo -e "test;\ntest"`
$ echo $test
test; test
$ echo "$test"
test;
test
Here is another example:
# test=`echo -e "ls;\npwd"`
# su - oracle -c "$test"
oradiag_oracle
/home/oracle
# su - oracle -c $test
oradiag_oracle
I cannot guess how you construct the command list. Perhaps the problem is a text files that was created under Windows and copied as binary to Linux, or a shell script using a different IFS environment variable, etc.
Personally I would use a different approach. From a security standpoint it is a bad idea to use passwords at the command prompt because every user can see them using the ps -ef  output.

Similar Messages

  • Using ProcessBuilder to execute multiple commands.

    I am having issues getting ProcessBuilder to execute multiple commands in windows.
    As an example I would like to execute "dir /w" fallowed by "java.exe some.App arg1 arg2".
    I can accomplish this from the command line by using "&".
    Example: dir /w & java.exe some.App arg1 arg2 Or: dir /w & dir /c"
    For internal commands (i.e. dir and cd) I know that commands in the array being passed to ProcessBuilder must be formatted like {"dir /w", "dir /c"}
    see post: [http://www.java-tips.org/java-se-tips/java.util/from-runtime.exec-to-processbuilder.html]
    Here is an example of one of the many things I have tried:
    {code}
    String[] commands = new String[]{"dir /w", "&", "java.exe", "some.App", "arg1", "arg2"};
    ProcessBuilder pb = new ProcessBuilder(commands);
    pb.start();
    {code}
    Any other ideas / what am I doing wrong?
    Edited by: brianjbrady on May 7, 2009 4:49 PM
    Edited by: brianjbrady on May 7, 2009 4:50 PM

    brianjbrady wrote:
    You can run dir all day long without using cmd.exe. Try it. It works for me.Perhaps you have cygwin in your path.
    How are you running dir out of interest (and don't say with a DOS window ;)
    import java.io.*;
    import java.util.Arrays;
    public class Main {
        public static void main(String... args) throws IOException {
            run("dir");
            run("dir.exe");
            run("cmd", "/c", "dir");
            run("c:\\cygwin\\bin\\dir");
        private static void run(String... command) throws IOException {
            try {
                ProcessBuilder pb = new ProcessBuilder(command);
                pb.redirectErrorStream(true);
                Process p = pb.start();
                InputStream is = p.getInputStream();
                System.out.println("\nCommand " + Arrays.asList(command) + " reported");
                int b;
                while ((b = is.read()) >= 0)
                    System.out.write(b);
                is.close();
                p.destroy();
            } catch (IOException e) {
                System.err.println("\nCommand " + Arrays.asList(command) + " reported " + e);
    }Prints
    Command [dir] reported java.io.IOException: Cannot run program "dir": CreateProcess error=2, The system cannot find the file specified
    Command [dir.exe] reported java.io.IOException: Cannot run program "dir.exe": CreateProcess error=2, The system cannot find the file specified
    Command [cmd, /c, dir] reported
    Volume in drive D is Work Disk
    Volume Serial Number is AC0B-0757
    Directory of D:\dev\scratch
    26/12/2008  22:15    <DIR>          .
    26/12/2008  22:15    <DIR>          ..
    03/09/2007  21:45    <DIR>          classes
    26/08/2008  20:14            65,280 mynamedpipe
    23/11/2008  11:37           201,354 name.ppt.txt
    24/10/2008  20:00           201,354 race.txt
    05/11/2008  23:17         6,193,334 record.csv
    08/01/2009  16:44               704 scratch.iml
    27/12/2008  12:29            21,576 scratch.ipr
    08/05/2009  20:02            53,258 scratch.iws
    28/04/2009  21:34    <DIR>          src
    07/12/2008  11:44               101 test.txt
                   8 File(s)      6,736,961 bytes
                   4 Dir(s)  32,506,023,936 bytes free
    Command [c:\cygwin\bin\dir] reported
    classes      name.ppt.txt  record.csv     scratch.ipr  src
    mynamedpipe  race.txt        scratch.iml     scratch.iws  test.txt

  • Executing multiple commands

    how to execute multiple commands through java programming .I tried with the code
    Process pro=Runtime.getRuntime().exec("cmd /c cd C:\\Symbian\\Carbide\\MyXmlParserWeb\\group\\s60_3rd");
              pro.waitFor();
              BufferedReader reader=new BufferedReader(new InputStreamReader(pro.getInputStream()));
              String line=reader.readLine();
              while(line!=null)
              System.out.println(line);
              line=reader.readLine();
              for(int i=0;i<2;i++){
                   try {
                        Thread.sleep(500);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
              Process pro4=Runtime.getRuntime().exec("bldmake clean");
              pro.waitFor();
              BufferedReader reader4=new BufferedReader(new InputStreamReader(pro4.getInputStream()));
              String line4=reader4.readLine();
              while(line4!=null)
              System.out.println(line4);
              line4=reader4.readLine();
              for(int i=0;i<2;i++){
                   try {
                        Thread.sleep(500);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
              Process pro1=Runtime.getRuntime().exec("bldmake bldfiles");
              pro1.waitFor();
              BufferedReader reader1=new BufferedReader(new InputStreamReader(pro1.getInputStream()));
              String line1=reader1.readLine();
              while(line1!=null)
              System.out.println(line1);
              line1=reader.readLine();
              for(int i=0;i<2;i++){
                   try {
                        Thread.sleep(500);
                   } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
              }

    class MainClass extends Thread {
         InputStream is;
         String type;
         OutputStream os;
         MainClass(InputStream is, String type)
         this(is, type, null);
         MainClass(InputStream is, String type, OutputStream redirect)
         this.is = is;
         this.type = type;
         this.os = redirect;
         public void run()
         try
         PrintWriter pw = null;
         if (os != null)
         pw = new PrintWriter(os);
         InputStreamReader isr = new InputStreamReader(is);
         BufferedReader br = new BufferedReader(isr);
         String line=null;
         while ( (line = br.readLine()) != null)
         if (pw != null)
         pw.println(line);
         System.out.println(type + ">" + line);
         if (pw != null)
         pw.flush();
         } catch (IOException ioe)
         ioe.printStackTrace();
         public static void main(String args[])
         if (args.length < 1)
         System.out.println("USAGE java GoodWinRedirect <outputfile>");
         System.exit(1);
         try
         FileOutputStream fos = new FileOutputStream(args[0]);
         Runtime rt = Runtime.getRuntime();
         Process proc = rt.exec("cmd.exe");
         // any error message?
         MainClass errorGobbler = new
         MainClass(proc.getErrorStream(), "ERROR");
         // any output?
         MainClass outputGobbler = new
         MainClass(proc.getInputStream(), "output", fos);
         // kick them off
         errorGobbler.start();
         outputGobbler.start();
         // any error???
         int exitVal = proc.waitFor();
         System.out.println("ExitValue: " + exitVal);
         fos.flush();
         fos.close();
         } catch (Throwable t)
         t.printStackTrace();
    i have modified the code again.but still no result.....

  • Bash function/script to execute multiple commands on same output

    Occasionally, I come across the need to pass the output of a single command to multiple others (without piping each to the next), so today, I wrote a [very] simple Bash script to accomplish the task.  Piping the output of a command to `tree' is much like piping it to `tee', except `tree' allows you to execute multiple commands on the same output, rather than only writing to log files:
    #!/bin/bash
    # tree -- pipes the output of one command to >= 1 other
    # Usage: command | tree 'command 1' 'command 2'
    doc=$( cat - )
    for arg in "$@"; do
    bash -c "${arg}" <<EOF
    ${doc}
    EOF
    done
    An example of its usage:
    $ echo -e "1 2 3\n4 5 6" | tree 'grep 1' 'grep 4' "grep 1 | tee grep.log | awk '{print \$2}'"
    1 2 3
    4 5 6
    2
    $ cat grep.log
    1 2 3
    Though not elaborate, the script gets the job done.
    Last edited by deltaecho (2009-03-10 20:34:01)

    Xyne wrote:
    You could always call it "the Ukrainian Pipe"
    (if you can't laugh at this, you either need to loosen up or make a point to follow (annual) current events)
    That was a good one

  • EXECUTE DOS COMMANDS WITH JAVA

    I'm new to java and I want to execute dos commands by java
    can someone help me by by anyway?
    like tell me the packages or methods I need
    or give me links to sites?
    thanks

    No Arguments:
    try {
            // Execute a command without arguments
            String command = "ls";
            Process child = Runtime.getRuntime().exec(command);
            // Execute a command with an argument
            command = "ls /tmp";
            child = Runtime.getRuntime().exec(command);
        } catch (IOException e) {
        }With Arguments:
    try {
            // Execute a command with an argument that contains a space
            String[] commands = new String[]{"grep", "hello world", "/tmp/f.txt"};
            commands = new String[]{"grep", "hello world", "c:\\Documents and Settings\\f.txt"};
            Process child = Runtime.getRuntime().exec(commands);
        } catch (IOException e) {
        }

  • Failing to execute multiple commands using psexec

    Trying to export hostname and disks that are in failed and predictive failure mode but psexec is failing to export hostname and predective failure disk information, it just giving failed disks information.
    psexec \\<<HOSTNAME>> cmd /c HOSTNAME^&"c:\Program Files (x86)\Compaq\Hpacucli\Bin\hpacucli.exe" ctrl all show config |find "Failed|Predictive Failure"

    As your command is written, the find is applied to the output of the entire
    psexec command, not just hpacucli.exe.  You need to escape the pipe character just as you did the ^&:
    ^|find.  Also, if you're trying to look for
    either "Failed" or "Predictive Failure" you're better off using the
    findstr command:
    ^| findstr /c:"Failed" /c:"Predictive Failure"

  • Execute cmd command with spaces

    Hi dears,
    I am trying to execute a cmd command (shell comnmand), but I got no response from the console i,e it is not executed even no errors returned.
    here is my code to be executed
    import java.io.*;
    import java.util.*;
    public class TestCommand
         public static void main(String[] args)throws IOException
              String[] cmd={"Nvdkit notify.tcl ALL hameed1 hameed2"};//command with arguments
              String[] envo={"path=;","path=C:\\Program Files\\Novadigm"};//path of the file
              //String[] cmd2={"cmd.exe","\\C","dir"};
              Runtime rt = Runtime.getRuntime();
              Process pp = rt.exec(cmd);
              //pp.waitFor();
              writeProcessOutput(pp);
         static void writeProcessOutput(Process p)throws IOException
              InputStreamReader tempReader = new InputStreamReader(new BufferedInputStream(p.getInputStream()));
              BufferedReader br = new BufferedReader(tempReader);
              while(true)
                   String line = br.readLine();
                   if(line==null)
                        break;
                   System.out.println(line);
    }     Could you please assist?
    thanx in advance
    Edited by: hameedo on Sep 21, 2008 11:51 AM

    import java.io.*;
    import java.util.*;
    public class TestCommand
         public static void main(String[] args)throws IOException
              String[] cmd={"java","-version"};
              String[] envo={"path=;","path=C:\\Program Files\\Java\\jdk1.6.0_02\\bin"};
              String[] cmd2={"cmd.exe","\\C","dir"};
              Runtime rt = Runtime.getRuntime();
              Process pp = rt.exec(cmd,envo);
              //pp.waitFor();
              writeProcessOutput(pp);
         static void writeProcessOutput(Process p)throws IOException
              InputStreamReader tempReader = new InputStreamReader(new BufferedInputStream(p.getInputStream()));
              BufferedReader br = new BufferedReader(tempReader);
              while(true)
                   String line = br.readLine();
                   if(line==null)
                        break;
                   System.out.println(line);
    }     The above code won't executed correctely.
    I am trying to get java version, but no errors no iformation were returned!
    Coudl you please assist in this issue?
    thanx all

  • Executing multiple scripts with error reporting where necessary.

    Hi,
    I'm a developer using SQL developer to create scripts for Tables / Views / Procs. I'm relatively new to Oracle, as I've been using SQL server mostly. So please bear with me.
    Now, the dev team constantly upset the dba due to subtle syntax issues between SQL Developer and SQL+. So, what we are now meant to do is test our scripts via SQL+ on the understanding that if it works with that it's good.
    However, you DBAs know that developers don't always do what they are told :).
    Hence, I have been tasked each morning to run all the scripts to make sure they are ok.
    I know I can execute multiple scrips easily like this....
    @c:\Scripts\Table1
    @c:\Scripts\Table2
    @c:\Scripts\Proc1
    @c:\Scripts\Proc2
    etc
    However, this seems to echo all the contents of the scripts in the output window. So it's a bit of a task to trawl through the output to see if there are any errors.
    What I would really like to do is as above, but rather than echoing the script contents, just provide output to say that each object (tables / views / procs) has been created correctly, or if an error occurred, output the relevant object name and the error.
    eg - If Table2 DDL has errors, output along the lines of....
    Table1 created successfully.
    Error creating Table2: <Invalid data type>
    Proc1 created successfully.
    Error creating Proc2:<Object Table2 does not exist>
    Is this possible?
    Example pretty please.
    Ultimately, I'd like to email the output automatically - however, that's a task for another day :).
    Many thanks
    DC

    I'm not sure what you mean by "echo all the contents of the scripts in the output window". If I create a script a.sql
    drop table a;
    create table a ( col1 number );
    drop table b;
    create table b ( col1 number );
    drop table c;
    -- Note the error in the definition of c
    create table c ( 123 number ); and run it in a vanilla SQL*Plus session, I get the output you appear to be looking for
    SQL> @c:\temp\a.sql
    Table dropped.
    Table created.
    Table dropped.
    Table created.
    drop table c
    ERROR at line 1:
    ORA-00942: table or view does not exist
    create table c ( 123 number )
    ERROR at line 1:
    ORA-00904: : invalid identifierAre you looking for something different? Or are you getting different results?
    Justin

  • Error when executing multiple scenarios with same ProgramID for RFC-JDBC

    Hi,
    I am working on the RFC-JDBC scenario.
    I see the following error in the dev_jrfc.trc file when I try to execute multiple scenarios which are using same program id (different communication channels).
    RfcException:
        message: Commit fault: com.sap.aii.af.rfc.afcommunication.RfcChannelMismatchException: Wrong Sender Agreement:The Sender agreement does not have channel CC_SAP_XXXXX configured for the functionmodule Z_XXXXX_SO_CREATE_CHANGE
        Return code: RFC_CLOSED(6)
        error group: 108
        key: RFC_ERROR_INTERNAL
    Can one program id be used for multiple scenarios? Or do we need to create a new ProgramId for each scenario.
    Any response will be highly appreciated.
    Thanks
    Shyam

    Hello Shyam,
    >>>>>>>>Do you think that I still need to create a new Program Id for each of these processes.
    You should not use same program ID for different RFC adapters. It is recommended by SAP (check FAQ's on RFC).
    Although technically you can use but it gives you unpredictable behaviour based on connection pool.

  • Executing Multiple Commands (Runtime Class)

    granting that Runtime class could execute a command.
    Is it possible to execute a list of commands in
    just one process, for example "cd\javasdk" followed by "dir *.java".
    Any idea to do this?
    Thnx in advance.

    Execute either a script (a batch file) containing all commands or execute the command interpreter (sh, bash, cmd.exe) and feed it through its standard input.

  • Executing multiple command lines in command prompt (windows)

    Hi,
    I am currrently using the command prompt in the windows to try to send a command to the microcontroller that is connected through TCP connection.
    I am able to use the normal cmd.exe to send the command but am unable to send all the command successfully using labview. 
    The Vi. that I am using the the system exec.vi found in labview connectivity section. 
    Basically what I want to send is "telnet A1" in the cmd.exe to establish connection to the microcontroller, followed by "FOR A1 100 GO" which will be intepreted by the microcontroller to make the necessary motion. But currently, the problem is that I can only establish connection using the system exec.vi but am unable to send the second part of the message "FOR A1 100 GO". 
    My command line i tried typing is cme.exe /K telnet A1 & FOR A1 100 GO. it seems that labview is only able to execute the first command part. Is there any other alternatives? 
    Thanks everyone for your help. 
    Solved!
    Go to Solution.

    Hi,
    Thanks for the help, the picture shows 1 of the error which state Error 56, the error occurs occasionally whenever I have used the command prompt to send a message to the microcontroller.
    Alternatively, there are times when no errors occur but my microcontroller does not move as well. It does move if I were to send the command through the cmd prompt.
    And I have attached a picture of my program as well. I am currently using Labview 2010 32bit. Thanks.
    Jh
    Attachments:
    TCP Connection.jpg ‏170 KB
    Error56.png ‏222 KB
    Picomotor_App New v3.0.vi ‏38 KB

  • Haviing double quotes show up when executing a command with a variable

    I am trying to run a command that requires double quotes to be part of it. For example:
    $adddiskname = "Harddisk5"
    "$adddiskname(No
    Signature)"
    only gives the output of
    Hardisk5 (No Signature)
     but I need it to look this when it runs:
    "Harddisk5 (No Signature)"
    Here is the command line I have now:
    $adddiskname = "Harddisk5" Start-Process-FilePath'C:\Program
    Files\Veritas\Veritas Volume Manager\vxdisk'-ArgumentList"-f","sig","$adddiskname(Not
    Signature)"-Wait
    Any help would be great.
    Thanks,

    The entire string needs to be in the Quotes, so when the command is run, it shows the (No Signature) as well.
    Example:
    "Harddisk5 (No Signature)" is the end result.
    Okay:
    $addDiskName = 'Harddisk5'
    "`"$addDiskName (No Signature)`""
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Sudo can't execute some commands[SOLVED]

    Hi Archers,
    I am using sudo and disable root account. There is some problems with sudo such as the following commands:
    #sudo echo "1234"  >/etc/rc.local
    # sudo cd /root
    I can't execute these commands with sudo, instead i have to login as root and execute the commands. So the question is how can I solve these problems?
    The Second issue is how can I give certain user the commands that they can execute. For example, user A is only allowed to use "ls" commands and not any other commands?
    Cheers
    Last edited by hungsonbk (2008-11-17 02:02:29)

    You can't use those commands because it aren't real commands, it are shell builtins and they are ran by your shell which is ran by your regular user.
    sudo echo foo > bar
    This runs the "echo" binary as root but the ">" part is handled by the shell, appropriate way to handle this:
    echo foo|sudo tee bar
    cd wont work neither, if it did you could cd to a directory you don't have permissions to and then you would be in their as regular user, unable to do anything... You should just work from outside /root or use sudo -s.
    For the user thing: man sudoers.
    Last edited by Ramses de Norre (2008-11-15 16:52:55)

  • Executing multiple SQL statements fails using ODBC

    Executing multiple SQL statements will fail with error 'ORA-00911 invalid character' when connecting to an Oracle database using ODBC driver version 8.01.07.00.
    When I use either my application or the Oracle ODBC Test client utility connecting using ODBC driver version 8.01.07.00 I can only get a single CALL statement (as shown below) to execute:
    CALL BHInsert (TO_DATE('2003.07.23 10:04:28','YYYY.MM.DD HH24:MI:SS'),'BATCH_ID','1:CLS_FRENCHVANILLA-1','
    ','Event File
    Name','\\KILLIANS\BATCHCTL\SampleDemo1\JOURNALS\1.evt','','AREA1','','','','','','1','','','','','',' ','');
    When I try to execute the following string with multiple CALL statements (as shown below) it fails with the following error being returned - ORA-00911: invalid character
    CALL BHInsert (TO_DATE('2003.07.23 10:04:28','YYYY.MM.DD HH24:MI:SS'),'BATCH_ID','1:CLS_FRENCHVANILLA-1','
    ','Event File
    Name','\\KILLIANS\BATCHCTL\SampleDemo1\JOURNALS\1.evt','','AREA1','','','','','','1','','','','','',' ','');
    CALL BHInsert (TO_DATE('2003.07.23 10:04:28','YYYY.MM.DD
    HH24:MI:SS'),'BATCH_ID','1:CLS_FRENCHVANILLA-1','Version','Recipe Header','1.0','','AREA1',' ','
    ','','','','1','','','','','',' ','');
    CALL BHInsert (TO_DATE('2003.07.23 10:04:28','YYYY.MM.DD
    HH24:MI:SS'),'BATCH_ID','1:CLS_FRENCHVANILLA-1','Version Date','Recipe Header','5/18/2001 1:28:32
    PM','','AREA1',' ',' ','','','','1','','','','','',' ','');
    CALL BHInsert (TO_DATE('2003.07.23
    10:04:28','YYYY.MM.DD HH24:MI:SS'),'BATCH_ID','1:CLS_FRENCHVANILLA-1','Author','Recipe Header','Mark
    Shepard','','AREA1',' ',' ','','','','1','','','','','',' ','');
    I've tried adding a line feed in addition to the space at the end of each call but that doesn't seem to help. Also have tried unsuccessfully to change the seperator used between each call using various valid continuation characters.
    Executing multiple CALL statements from within Oracle's SQL Worksheet connecting as the same user and password, as my application executes successfully. However when I try this from within the Oracle ODBC test client, it fails with the same ORA-00911 error that I'm seeing in my application.
    I'm currently trying the more recent ODBC drivers, however any ideas or suggestions would be greatly appreciated.

    Can you take the begin ... end block and run it using SQL*Plus?
    I can't think of any documentation that would specifically answer this question. I'm sure if you read & absorbed the ODBC Programmers Reference (2000+ pages) you'd be able to find out, but I don't know of a quick way to find out.
    You can enable SQL*Net tracing. There are a fair number of options for enabling this tracing-- http://tahiti.oracle.com has all the Oracle manuals online, which should give you enough info to configure exactly what you want.
    I would suggest, however, that you look into more performant/ scalable alternatives rather than going too far down this path. A block with lots of SQL statements with literals isn't going to make your database happy even if you get it to work.
    Justin

  • Multiple queries with 1 connection

    Can I execute multiple queries with one connection?
    //Example -
    <%
    String firstconn;
    Class.forName("org.gjt.mm.mysql.Driver");
    // create connection string
    firstconn = "jdbc:mysql://localhost/profile?user=mark&password=mstringham";
    // pass database parameters to JDBC driver
    Connection aConn = DriverManager.getConnection(firstconn);
    // query statement
    Statement firstSQLStatement = aConn.createStatement();
    String firstquery = "UPDATE auth_users SET last_log='" + rightnow + "'WHERE name='" + username + "' ";
    // get result code
    int firstSQLStatus = firstSQLStatement.executeUpdate(firstquery);
    // close connection
    firstSQLStatement.close();
    %>     
    Now, instead of building a new connection for each query, can I use the same connection info for another query?
    if so - how do you do this?
    thanks for any help.
    Mark

    Create multiple statement objects from your connection. It's a good idea to close these in a finally block after you're done with them
    Connection conn = null;
    Statement stmt1 = null;
    Statement stmt2 = null;
    try {
        conn = DriverManager.getConnection();
        stmt1 = conn.createStatement();
        // some sql here
        stmt2 = conn.createStatement();
        // some more sql here
    } finally {
        if ( stmt1 != null ) stmt1.close();
        if ( stmt2 != null ) stmt2.close();

Maybe you are looking for

  • Infoview creating non-sensical bookmarks and file names

    Thank you for any help or suggestions! I am using Crystal Reports 2008, the CMC repository, and InfoView. I am producing PDF reports, many with bookmarks based on the group tree. I have found that when I run my report off my workstation, all is fine,

  • Using XDKs XML Schema Parser

    I want to parse an XML schema(XSD file) and extract the types from it, ComplexType etc. Does anyone know to even begin this. Ive managed to parse and any XML file sucessfully returning all element types,names and values using the DOM parser but cant

  • Bge not detected in Solaris 10.

    Dear users, I just loaded Solaris 10 in a Dell Latitutde D630, yet I am unable to get network access because neither the physical NIC nor the Wireless adapter were detected. Doing a /usr/X11/bin/scanpci I determine that my station has a Broadcom NetX

  • Custom html tags with JEditorPane

    I'm trying, to use my own tags within html in the JEditorPane. An insert parses without exception but the html in the pane is missing the custom tags that I attempted to insert. I have tried to use the 'setPreservesUnknownTags' command on the html do

  • XML Bill of Materials Tutorial

    Is this a tutorial or information that will teach me how to create a bill of materials PDF similar to Ruben Hugo's Adidas PDF shown in the 3D gallery? Regards, Bill