Re: [Dspace-tech] ant fresh_install fails

2014-10-22 Thread helix84
Hi Monika,

I'm not sure how you encountered it. When I recently did a
fresh_install from the master branch, I didn't encouter it.

To explain, the bi_* tables (browse index) were used by default up to
and including DSpace 3 by
BrowseCreateDAOPostgres/BrowseCreateDAOOracle. With the switch to
SolrBrowseCreateDAO in DSpace 4, these are no longer needed. A quick
look at your stacktrace reveals that the clearDatabase() method tried
to delete these methods, and part of it is testing whether they exist.
It's this test that fails because a fresh install has no reason to
create them.

So either clearDatabase() should not be called at all or the call to
testTableExistence() shouldn't produce an error, merely a no-op. I'm
pretty sure it's a bug.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread helix84
I looked at your stacktrace again and I was wrong that there's nothing
that would cause a NPE to be raised (I was looking at a wrong line).
The immediate problem must be that a column is null. This column name
should be the primary key of the bitstreamformatregistry table. As far
as I know, there have been no changes to this table between 1.8 and
3.0, as also evidenced by the postgres upgrade script. That would
indicate that some generic change, probably in the DatabaseManager or
TableRow class, broke Oracle.

To resolve the problem, check whether you have the
BitstreamFormatRegistry table created and bitstream_format_id is its
primary key.

My hunch is that this is some kind of character case problem with the
table name in DSpace code.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread helix84
The strange thing is there have been no changes between 1.8.2 and 3.0
in the classes listed in your stracktrace (apart from one insignificat
string change). And as I said, there were no changes to the table in
question.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread kamarsyed
Ok, but why it is happening ??? If you haven't changed anything in the code
 

Let me give you the details of oracle tables and columns :

Oracle DB Results :
===

SQL desc BitstreamFormatRegistry
 Name  Null?Type
 - 

 BITSTREAM_FORMAT_ID   NOT NULL NUMBER(38)
 MIMETYPE   VARCHAR2(256)
 SHORT_DESCRIPTION  VARCHAR2(128)
 DESCRIPTIONVARCHAR2(2000)
 SUPPORT_LEVEL  NUMBER(38)
 INTERNAL   NUMBER(1)


SQL select TABLE_NAME, CONSTRAINT_NAME,CONSTRAINT_TYPE from
user_constraints 
  2  where table_name ='BITSTREAMFORMATREGISTRY';

TABLE_NAME CONSTRAINT_NAMEC
-- -- -
BITSTREAMFORMATREGISTRYSYS_C009441P
BITSTREAMFORMATREGISTRYSYS_C009442U


Yes this is a primary key column .

Regards


Abbas







-
Regards

Qamar Abbas

http://qamarsyed.blogspot.com
--
View this message in context: 
http://dspace.2283337.n4.nabble.com/Ant-fresh-install-fails-tp4660499p4660524.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails with Oracle : [FATAL org.dspace.administer.RegistryLoader @ anonymous::error_loading_registries]

2012-12-17 Thread Hilton Gibson
Hi

Did you try with Ubuntu?
See: https://help.ubuntu.com/community/Oracle

Cheers

hg


On 17 December 2012 11:49, qamar syed kamars...@gmail.com wrote:

 I have tested this dspace build 3.0 with Oracle DB in different
 combinations but still no luck, but installation is done successful with
 Postgres DB.

 1. Oracle Linux 5.6 with Oracle XE/EE same error.
 2. Ret Hat Linux with Oracle XE/EE same error.
 3. Windows 2003 EE with Oracle XE/EE same error.

 If any one faced this problem and resolved it , please share their
 experience.

 Or any one tested this dspace build with Oracle without facing any problem
 please let me know.

 Regards


 Abbas


 On Sat, Dec 15, 2012 at 11:27 PM, qamar syed kamars...@gmail.com wrote:

 I have checked it thoroughly with Oracle, it's somehow not working at all
 with Oracle.

 I personally think that dspace developers didn't check it before
 releasing it will Oracle.

 Sent via GNex
 On Dec 14, 2012 6:25 PM, mErRYo merryob...@yahoo.com wrote:

 Well the code is right and according to github (weblink that helix
 provided). I think the problem is with oracle db scripts. I don't
 understand why its not working with oracle when it is working fine with
 postgre. I mean i have dspace3.0 release with postgre also and it worked
 fine. Postgre DB schema is created and values inserted fine.

 Please help. Its very urgent as my production installation got broke and
 i have timelines to meet.

 --- On Fri, 12/14/12, helix84 heli...@centrum.sk wrote:

  From: helix84 heli...@centrum.sk
  Subject: Re: Ant fresh_install fails
  To: mErRYo merryob...@yahoo.com
  Cc: hilton.gib...@gmail.com, lighton.ph...@gmail.com,
 jm...@lyncode.com, dspace-tech@lists.sourceforge.net, mw...@iupui.edu
  Date: Friday, December 14, 2012, 5:00 PM
  On Fri, Dec 14, 2012 at 12:33 PM,
  mErRYo merryob...@yahoo.com
  wrote:
[java] 2012-12-14 16:23:17,461
  FATAL org.dspace.administer.RegistryLoader @
  anonymous::error_loading_registries:
[java]
  java.lang.NullPointerException
[java] at
  org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)
 
  That's strange, there's nothing on this line that would
  cause a NPE:
 
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154
 
  What do you see there in your sources?
 
 
  Regards,
  ~~helix84
 
  Compulsory reading: DSpace Mailing List Etiquette
  https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Ant fresh_install fails with Oracle : [FATAL org.dspace.administer.RegistryLoader @ anonymous::error_loading_registries]

2012-12-17 Thread qamar syed
Hi Hilton,

No , not at all, we do not want debian builds in our production
environment. Although I have tried to installed it on Oracle 10g 10.2.0.4.0
EE, but still no luck. It not an oracle issue, its an issue with java code
because build is successful with Dspace 1.8.2 release.



Regards


Abbas

On Mon, Dec 17, 2012 at 4:09 PM, Hilton Gibson hilton.gib...@gmail.comwrote:

 Hi

 Did you try with Ubuntu?
 See: https://help.ubuntu.com/community/Oracle

 Cheers

 hg


 On 17 December 2012 11:49, qamar syed kamars...@gmail.com wrote:

 I have tested this dspace build 3.0 with Oracle DB in different
 combinations but still no luck, but installation is done successful with
 Postgres DB.

 1. Oracle Linux 5.6 with Oracle XE/EE same error.
 2. Ret Hat Linux with Oracle XE/EE same error.
 3. Windows 2003 EE with Oracle XE/EE same error.

 If any one faced this problem and resolved it , please share their
 experience.

 Or any one tested this dspace build with Oracle without facing any
 problem please let me know.

 Regards


 Abbas


 On Sat, Dec 15, 2012 at 11:27 PM, qamar syed kamars...@gmail.com wrote:

 I have checked it thoroughly with Oracle, it's somehow not working at
 all with Oracle.

 I personally think that dspace developers didn't check it before
 releasing it will Oracle.

 Sent via GNex
 On Dec 14, 2012 6:25 PM, mErRYo merryob...@yahoo.com wrote:

 Well the code is right and according to github (weblink that helix
 provided). I think the problem is with oracle db scripts. I don't
 understand why its not working with oracle when it is working fine with
 postgre. I mean i have dspace3.0 release with postgre also and it worked
 fine. Postgre DB schema is created and values inserted fine.

 Please help. Its very urgent as my production installation got broke
 and i have timelines to meet.

 --- On Fri, 12/14/12, helix84 heli...@centrum.sk wrote:

  From: helix84 heli...@centrum.sk
  Subject: Re: Ant fresh_install fails
  To: mErRYo merryob...@yahoo.com
  Cc: hilton.gib...@gmail.com, lighton.ph...@gmail.com,
 jm...@lyncode.com, dspace-tech@lists.sourceforge.net, mw...@iupui.edu
  Date: Friday, December 14, 2012, 5:00 PM
  On Fri, Dec 14, 2012 at 12:33 PM,
  mErRYo merryob...@yahoo.com
  wrote:
[java] 2012-12-14 16:23:17,461
  FATAL org.dspace.administer.RegistryLoader @
  anonymous::error_loading_registries:
[java]
  java.lang.NullPointerException
[java] at
  org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)
 
  That's strange, there's nothing on this line that would
  cause a NPE:
 
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154
 
  What do you see there in your sources?
 
 
  Regards,
  ~~helix84
 
  Compulsory reading: DSpace Mailing List Etiquette
  https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




 --
 *Hilton Gibson*
 Systems Administrator
 JS Gericke Library
 Room 1025D
 Stellenbosch University
 Private Bag X5036
 Stellenbosch
 7599
 South Africa

 Tel: +27 21 808 4100 | Cell: +27 84 646 4758
 http://library.sun.ac.za
 http://scholar.sun.ac.za
 http://ar1.sun.ac.za
 http://aj1.sun.ac.za


--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net

Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread helix84
I didn't say that nothing changed in the code, but I looked at the
classes where the immediate problem surfaced and those have not been
changed.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread qamar syed
Ok, but apart from the classes,  have you installed this new release with
oracle ??? If not then please try to install it and then tell me  .


Regards


Abbas

On Mon, Dec 17, 2012 at 4:38 PM, helix84 heli...@centrum.sk wrote:

 I didn't say that nothing changed in the code, but I looked at the
 classes where the immediate problem surfaced and those have not been
 changed.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread helix84
On Mon, Dec 17, 2012 at 12:40 PM, qamar syed kamars...@gmail.com wrote:
 Ok, but apart from the classes,  have you installed this new release with
 oracle ??? If not then please try to install it and then tell me  .

No, sorry, I'm not using Oracle. I was just trying to find the problem for you.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-17 Thread qamar syed
ok, no problem and thank you for your cooperation.

On Mon, Dec 17, 2012 at 4:42 PM, helix84 heli...@centrum.sk wrote:

 On Mon, Dec 17, 2012 at 12:40 PM, qamar syed kamars...@gmail.com wrote:
  Ok, but apart from the classes,  have you installed this new release with
  oracle ??? If not then please try to install it and then tell me  .

 No, sorry, I'm not using Oracle. I was just trying to find the problem for
 you.


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Ant fresh_install fails with Oracle : [FATAL org.dspace.administer.RegistryLoader @ anonymous::error_loading_registries]

2012-12-17 Thread qamar syed
I need help that's why I posted my problem on this forum.

Sent via GNex
On Dec 17, 2012 6:52 PM, Hilton Gibson hilton.gib...@gmail.com wrote:

 Ok. If u need help, let me know - i am part of the community.


 On 17 December 2012 13:34, qamar syed kamars...@gmail.com wrote:

 :) thanks for sharing the information, we will definitely look forward on
 this matter to use Debian versions.

 Thanks

 On Mon, Dec 17, 2012 at 4:27 PM, Hilton Gibson 
 hilton.gib...@gmail.comwrote:

 Thats very interesting.
 Why no Debian/Ubuntu?
 Is there some kind prejudice?
 See:
 http://wiki.lib.sun.ac.za/index.php/SUNScholar/Dspace/Why_Ubuntu_Server
 I have to keep taking the pro proprietary propaganda all the time.
 The internet, linux kernel and those huge online businesses based on it,
 think it is good enough.
 The more we grow proper community, the better protected we are from
 the vagrancies of proprietary software

 Regards

 hg



 On 17 December 2012 13:17, qamar syed kamars...@gmail.com wrote:

 Hi Hilton,

 No , not at all, we do not want debian builds in our production
 environment. Although I have tried to installed it on Oracle 10g 10.2.0.4.0
 EE, but still no luck. It not an oracle issue, its an issue with java code
 because build is successful with Dspace 1.8.2 release.



 Regards


 Abbas

 On Mon, Dec 17, 2012 at 4:09 PM, Hilton Gibson hilton.gib...@gmail.com
  wrote:

 Hi

 Did you try with Ubuntu?
 See: https://help.ubuntu.com/community/Oracle

 Cheers

 hg


 On 17 December 2012 11:49, qamar syed kamars...@gmail.com wrote:

 I have tested this dspace build 3.0 with Oracle DB in different
 combinations but still no luck, but installation is done successful with
 Postgres DB.

 1. Oracle Linux 5.6 with Oracle XE/EE same error.
 2. Ret Hat Linux with Oracle XE/EE same error.
 3. Windows 2003 EE with Oracle XE/EE same error.

 If any one faced this problem and resolved it , please share their
 experience.

 Or any one tested this dspace build with Oracle without facing any
 problem please let me know.

 Regards


 Abbas


 On Sat, Dec 15, 2012 at 11:27 PM, qamar syed kamars...@gmail.comwrote:

 I have checked it thoroughly with Oracle, it's somehow not working
 at all with Oracle.

 I personally think that dspace developers didn't check it before
 releasing it will Oracle.

 Sent via GNex
 On Dec 14, 2012 6:25 PM, mErRYo merryob...@yahoo.com wrote:

 Well the code is right and according to github (weblink that helix
 provided). I think the problem is with oracle db scripts. I don't
 understand why its not working with oracle when it is working fine with
 postgre. I mean i have dspace3.0 release with postgre also and it 
 worked
 fine. Postgre DB schema is created and values inserted fine.

 Please help. Its very urgent as my production installation got
 broke and i have timelines to meet.

 --- On Fri, 12/14/12, helix84 heli...@centrum.sk wrote:

  From: helix84 heli...@centrum.sk
  Subject: Re: Ant fresh_install fails
  To: mErRYo merryob...@yahoo.com
  Cc: hilton.gib...@gmail.com, lighton.ph...@gmail.com,
 jm...@lyncode.com, dspace-tech@lists.sourceforge.net,
 mw...@iupui.edu
  Date: Friday, December 14, 2012, 5:00 PM
  On Fri, Dec 14, 2012 at 12:33 PM,
  mErRYo merryob...@yahoo.com
  wrote:
[java] 2012-12-14 16:23:17,461
  FATAL org.dspace.administer.RegistryLoader @
  anonymous::error_loading_registries:
[java]
  java.lang.NullPointerException
[java] at
 
 org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)
 
  That's strange, there's nothing on this line that would
  cause a NPE:
 
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154
 
  What do you see there in your sources?
 
 
  Regards,
  ~~helix84
 
  Compulsory reading: DSpace Mailing List Etiquette
  https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add
 services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette




 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add
 services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech 

Re: [Dspace-tech] Ant fresh_install fails

2012-12-15 Thread qamar syed
I have checked it thoroughly with Oracle, it's somehow not working at all
with Oracle.

I personally think that dspace developers didn't check it before releasing
it will Oracle.

Sent via GNex
On Dec 14, 2012 6:25 PM, mErRYo merryob...@yahoo.com wrote:

 Well the code is right and according to github (weblink that helix
 provided). I think the problem is with oracle db scripts. I don't
 understand why its not working with oracle when it is working fine with
 postgre. I mean i have dspace3.0 release with postgre also and it worked
 fine. Postgre DB schema is created and values inserted fine.

 Please help. Its very urgent as my production installation got broke and i
 have timelines to meet.

 --- On Fri, 12/14/12, helix84 heli...@centrum.sk wrote:

  From: helix84 heli...@centrum.sk
  Subject: Re: Ant fresh_install fails
  To: mErRYo merryob...@yahoo.com
  Cc: hilton.gib...@gmail.com, lighton.ph...@gmail.com, jm...@lyncode.com,
 dspace-tech@lists.sourceforge.net, mw...@iupui.edu
  Date: Friday, December 14, 2012, 5:00 PM
  On Fri, Dec 14, 2012 at 12:33 PM,
  mErRYo merryob...@yahoo.com
  wrote:
[java] 2012-12-14 16:23:17,461
  FATAL org.dspace.administer.RegistryLoader @
  anonymous::error_loading_registries:
[java]
  java.lang.NullPointerException
[java] at
  org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)
 
  That's strange, there's nothing on this line that would
  cause a NPE:
 
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154
 
  What do you see there in your sources?
 
 
  Regards,
  ~~helix84
 
  Compulsory reading: DSpace Mailing List Etiquette
  https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 


 --
 LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
 Remotely access PCs and mobile devices and provide instant support
 Improve your efficiency, and focus on delivering more value-add services
 Discover what IT Professionals Know. Rescue delivers
 http://p.sf.net/sfu/logmein_12329d2d
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Ant fresh_install fails

2012-12-14 Thread helix84
On Fri, Dec 14, 2012 at 12:33 PM, mErRYo merryob...@yahoo.com wrote:
  [java] 2012-12-14 16:23:17,461 FATAL 
 org.dspace.administer.RegistryLoader @ anonymous::error_loading_registries:
  [java] java.lang.NullPointerException
  [java] at 
 org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)

That's strange, there's nothing on this line that would cause a NPE:

https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154

What do you see there in your sources?


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Ant fresh_install fails

2012-12-14 Thread mErRYo
Well the code is right and according to github (weblink that helix provided). I 
think the problem is with oracle db scripts. I don't understand why its not 
working with oracle when it is working fine with postgre. I mean i have 
dspace3.0 release with postgre also and it worked fine. Postgre DB schema is 
created and values inserted fine.

Please help. Its very urgent as my production installation got broke and i have 
timelines to meet.

--- On Fri, 12/14/12, helix84 heli...@centrum.sk wrote:

 From: helix84 heli...@centrum.sk
 Subject: Re: Ant fresh_install fails
 To: mErRYo merryob...@yahoo.com
 Cc: hilton.gib...@gmail.com, lighton.ph...@gmail.com, jm...@lyncode.com, 
 dspace-tech@lists.sourceforge.net, mw...@iupui.edu
 Date: Friday, December 14, 2012, 5:00 PM
 On Fri, Dec 14, 2012 at 12:33 PM,
 mErRYo merryob...@yahoo.com
 wrote:
       [java] 2012-12-14 16:23:17,461
 FATAL org.dspace.administer.RegistryLoader @
 anonymous::error_loading_registries:
       [java]
 java.lang.NullPointerException
       [java]     at
 org.dspace.storage.rdbms.ColumnInfo.canonicalize(ColumnInfo.java:154)
 
 That's strange, there's nothing on this line that would
 cause a NPE:
 
 https://github.com/DSpace/DSpace/blob/dspace-3_x/dspace-api/src/main/java/org/dspace/storage/rdbms/ColumnInfo.java#L154
 
 What do you see there in your sources?
 
 
 Regards,
 ~~helix84
 
 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
 

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] ant fresh_install fails

2009-10-30 Thread Jeffrey Trimble
It looks like you are using JDK1.4?  1.5.2 requires JAVA JDK 5 or  
later (Standard SDK is fine, you don't

really need J2EE).

Upgrade to Java5 or higher and your problem should go away. (Java 6 is  
what is available

on the Sun website:  http://java.sun.com/javase/downloads/index.jsp)

See if this fixes you issues.

--Jeff


Jeffrey Trimble
System LIbrarian
William F.  Maag Library
Youngstown State University
330.941.2483 (Office)
jtrim...@cc.ysu.edu
http://www.maag.ysu.edu
http://digital.maag.ysu.edu
I must not fear.  Fear is the mind-killer.
I will permit it to pass over me and through me...
--Litany against fear

On Oct 30, 2009, at 10:08 PM, Rajshekhar Pandey wrote:


Hello to all,
I am facing problem while installing dspace.
The step ant fresh_install giving following error

shek...@shekhar-laptop:~/java/dspace-1.5.2-src-release/dspace/target/ 
dspace-1.5.2-build.dir$ ant fresh_install

Buildfile: build.xml

BUILD FAILED
/home/shekhar/java/dspace-1.5.2-src-release/dspace/target/ 
dspace-1.5.2-build.dir/build.xml:88: No supported regular expression  
matcher found: java.lang.ClassNotFoundException:  
org.apache.tools.ant.util.regexp.Jdk14RegexpRegexp


Total time: 0 seconds

I have changed the dspace.dir = /home/shekhar/java/dspace only.
I cannt uderstand what is the problem.
Thanks
--
Regards,
Rajshekhar Pandey
Jr. Software Engineer
Webinito Networks.
--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart  
your
developing skills, take BlackBerry mobile applications to market and  
stay

ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech