importing xml: problem


 
Thread Tools Search this Thread
Top Forums Programming importing xml: problem
# 1  
Old 11-30-2007
importing xml: problem

I'm an absolute newbie for unix...
For my work, I have to import a xml file in our system (jsp+sql) via putty telnet.
Once i have copied the file in the right directory, I launch this command:

./thisImport -i input/thisImport/newimport.20071130.xml -l 10 -t

this is a test (as you can see), and usually it works fine,
but this time I have received this error message:


MAIN.CATCH(Throwable): org.apache.commons.cli.MissingOptionException: -d-u
STACK TRACE:
org.apache.commons.cli.MissingOptionException: -d-u
at org.apache.commons.cli.Parser.checkRequiredOptions(Parser.java:215)
at org.apache.commons.cli.Parser.parse(Parser.java:192)
at org.apache.commons.cli.Parser.parse(Parser.java:114)
at com.thisserver.abc.base.new.XmlAccountImport.main(Unknown Source)

and i don't know what it means and what i have to do...

thanks for the help!
# 2  
Old 11-30-2007
The exception means some required command line options are missing (looks like "-d", "-u" mentioned in the error). You will need to look at your program why it requires those options.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Help importing SQL DB using phpmyadmin

Hi, When I try to import the database, getting error message. No data was received to import. Either no file name was submitted or the file size exceeded the maximum size permitted by your PHP configuration. I am doing this on Windows server, I updated php.ini file and stop and... (2 Replies)
Discussion started by: samnyc
2 Replies

2. Shell Programming and Scripting

Reading XML in bash and importing in Mysql

Hi, I'm not a pro bashscript writer but I'm learning and want to learn about my mistakes. In the next script I have an error on rule 6 but I can't find what I'm doing wrong ... I daily receive a file xml.xml and have to import it in an mysql database in a few existing tables. #!/bin/bash... (2 Replies)
Discussion started by: garf0r
2 Replies

3. Programming

problem with accessing online XML file

Hi everyone, I am trying to access an online XML file, for example: <a href="http://www.rgraph.net/sample.xml" target="_blank">http://www.rgraph.net/sample.xml using HTML. <html> <body> <script type="text/javascript"> if (window.XMLHttpRequest) {// code for IE7+, Firefox,... (1 Reply)
Discussion started by: Xperia124
1 Replies

4. Shell Programming and Scripting

xml extract problem

I have looked at other responses and never was able to modify to work. data is: <?xml version="1.0"?> <note version="0.3" xmlns:link="http://beatniksoftware.com/tomboy/link" xmlns:size="http://beatniksoftware.com/tomboy/size" xmlns="http://beatniksoftware.com/tomboy"><title>recoll</title><text... (12 Replies)
Discussion started by: Klasform
12 Replies

5. Shell Programming and Scripting

Cygwin vi XML file encoding problem

Hi, I have got a zip (binary) file transferred from MacOS (thus it has additional __MACOSX directory packed inside). On extracting this zip, there are few *.xml files available. When I opened this *.xml file in vim editor using Cygwin (on windows) the editor displayed in the bottom. I tried... (4 Replies)
Discussion started by: royalibrahim
4 Replies

6. Shell Programming and Scripting

Facing problem in XML::parser module in PERL

HI, I have XML file which is having values as Spanish character (UTF-8 encoding). I am using XML::parser module but my code is not able to read those characters. I did goggling but not able to find suitable solution. Anybody please help me out. XML file having characters like: ñ I am... (1 Reply)
Discussion started by: jatanig
1 Replies

7. Shell Programming and Scripting

Perl - problem with CPAN module XML::Simple

Hi All, I am trying to run the following program #!/usr/bin/perl # use module use XML::Simple; use Data::Dumper; # create object $xml = new XML::Simple; # read XML file $data = $xml->XMLin("dump.xml"); # print output print Dumper($dump); At first i had the error mesage saying... (5 Replies)
Discussion started by: userscript
5 Replies

8. Shell Programming and Scripting

XML Copy & replace problem

I probably could have done this at one time, but, the years and no need has left my scripting skills lacking and I'm unable to work this problem out. https://www.unix.com/images/smilies/frown.gif :( Using Linux, have a great many xml files in which there may be multiple occurrence of a line of... (13 Replies)
Discussion started by: xenixuser
13 Replies

9. Shell Programming and Scripting

XML Problem

Hello, I need a script to edit a custom XML, although I know it should be fairly easy to create such a script, I'm failing miserably. The script should be able to read from a file containing the ids of one tag of the xml (<content contentid="XXX".... for example) and then remove this content. For... (5 Replies)
Discussion started by: Zarnick
5 Replies

10. Shell Programming and Scripting

Problem printing the property of xml file via shell script

Hi, I have a config.xml which cointains the tags like <CONFIG> <PROPERTY name="port" value="1111"/> <PROPERTY name="dbname" value="ABCDE"/> <PROPERTY name="connectstring" value="xyz/pwd"/> </CONFIG> This file is in some directory at UNix box. I need to write a... (4 Replies)
Discussion started by: neeto
4 Replies
Login or Register to Ask a Question