[Dspace-tech] DSpace Oas

2008-03-05 Thread luis jose miralles
Hello,

Does any one installed DSpace with OAS instead of Tomcat.?
I'm having lot of problems.

Many Thanks.



2008/3/2, Valorie Hollister [EMAIL PROTECTED]:

 DSpace Community -

 DSpace Foundation has posted a new reference on www.dspace.org for
 service providers:

 http://www.dspace.org/index.php?option=com_contenttask=viewid=548Itemid=174

 These companies/individuals have been vetted by the foundation and can
 provide assistance with repository design, development,
 installation/configuration, integration, customization, hosting,
 training and analysis.

 It is our goal to keep the information current -- please let us know
 if you find discrepancies.  We would like to expand this list of
 service providers, so if you have any recommendations of whom we
 should be talking to, let us know.

 Thank you!

 Valorie Hollister
 Community Outreach Manager
 DSpace Foundation

 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread Tim Donohue

David,

David,

Similar to what George mentioned, I've always done this at the database 
level.

I use the same basic SQL query (mentioned by George):

update collection2item set collection_id=new collection's id where
item_id=item's id;

Or, if you are moving *all* the items in one collection to another:

update collection2item set collection_id=new collection's id where
collection_id=OLD collection's id;

And then re-run the [dspace]/bin/index-all script, which will correct 
all the DSpace browsing interfaces, etc.

I hope that helps!

- Tim


George Kozak wrote:
 David:
 
 I would do this in SQL.  Here is an example of the command I use:
 
 update collection2item set collection_id=new collection's id where 
 item_id=item's id;
 
 Then I do the following:
 
 update item set owning_collection=new collection's id where 
 item_id=item's id;
 
 OR run index_all after making the changes and it would fix the owning 
 collections and communities.
 
 If you have a lot of items to move, then a PERL script could be used 
 (if you have DBD::Pg compiled for your PERL module).
 
 At 09:58 AM 3/4/2008, David Reynolds wrote:
 Dear colleagues,

 I want to move items from one collection to another in order to 
 delete the old collection but still retain the handles on the items. 
 One colleague suggested the following, but he stressed that he had 
 not tried it before:

 I would try exporting the item ( you'll get the handle ), then
 deleting the collection and then reimport the item with the handle.

 Does this sound like the right approach? I've searched the 
 documentation but have found nothing about moving items from one 
 collection to another. Thanks in advance for your advice.




 David Reynolds
 Manager of Scholarly Digital Initiatives
 Johns Hopkins University
 3400 N. Charles St.
 Baltimore, MD 21218-2683

 [EMAIL PROTECTED]
 (410) 516-7220


 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 ***
 George Kozak
 Coordinator
 Web Development and Management
 Digital Media Group
 501 Olin Library
 Cornell University
 607-255-8924
 ***
 [EMAIL PROTECTED] 
 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 

-- 


Tim Donohue
Research Programmer, Illinois Digital Environment for
Access to Learning and Scholarship (IDEALS)
135 Grainger Engineering Library
University of Illinois at Urbana-Champaign

email: [EMAIL PROTECTED]
web:   http://www.ideals.uiuc.edu
phone: (217) 333-4648
fax:   (217) 244-7764


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Error in filter-media

2008-03-05 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Oh well...we are running 1.4.2.  :-(   Any other ideas?
Thanks,
Sue

-Original Message-
From: Scott Phillips [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 05, 2008 12:50 AM
To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Error in filter-media


Ah,

Yes, these parameters only apply to DSpace 1.5 and are not available  
in previous versions.

Scott--


On Mar 4, 2008, at 8:51 PM, Thornton, Susan M. (LARC-B702)[NCI  
INFORMATION SYSTEMS] wrote:

 Hi again Scott,
 I added both of those to dspace.cfg and it didn't seem to have any
 effect - I got the same error again:

 Exception in thread main java.lang.OutOfMemoryError: Java heap space

 Are those parameters valid for DSpace 1.4.2?

 Thanks again,
 Sue



 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 7:28 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Oh, Sorry.

 The parameters go into your dspace.cfg. They are both boolean
 parameters so just add:

 pdffilter.largepdfs = true;

 or

 pdffilter.skiponmemoryexception = true;

 Then re-run your dsrun command and they will take effect.

 Scott--

 On Mar 4, 2008, at 6:13 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:

 Hi Scott,
 Thanks for the info, but can you tell me exactly where to put/
 how to format the parameters?  Do they go on the dsrun command?
 Thanks again,
 Sue

 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 6:51 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Have you tried using the pdffilter.largepdfs and
 pdffilter.skiponmemoryexception parameters?

 Turning on largepdfs will tell pdfbox to use a temporary file while
 processing the pdf instead of keeping it all in memory. It will use
 the standard java.io.tmpdir directory to store them in. In addition
 using skip memory exception will allow the process to just continue
 instead of blocking everything else.

 Scott--


 On Mar 4, 2008, at 3:12 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:


 We have recently been getting the following error in the filter-
 media cron:

 Exception in thread main java.lang.OutOfMemoryError: Java heap  
 space


 I changed -Xmx256m in the java command in dsrun to -Xmx512m
 (documentation says that's the max you can set it to) and we're
 still getting the error.  How can we get rid of this error?

 Here is the full command in our dsrun script:

 java -Xmx512m -classpath $FULLPATH $@

 We are running a production instance of DSpace 1.4.2 with postgreSQL
 7.3.4 on a Solaris 10 platform.

 Thanks in advance.
 Sue


 Sue Walker-Thornton
 ConITS Contract
 NASA Langley Research Center
 Integrated Library Systems Application Administrator/DBA
 130 Research Drive
 Hampton, VA  23666
 Office: (757) 224-4074
 Fax:(757) 224-4001
 Pager: (757) 988-2547
 Email:  [EMAIL PROTECTED]




 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.


http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/_
 __
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech




-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread James Rutherford
On Wed, Mar 05, 2008 at 04:31:16PM +, Mika Stenberg wrote:
 Ability to move items from collection to another should be added to the
 WebUI. Has this been considered in the future releases?

The functionality of CommunityFiliator (a CLI app to move communities
around) has been extended to be usable for arbitrary DSpaceObjects for
the 1.6 release. Tools for one or more web interfaces may be made
available.

Jim

 -Mika
 
  David,
 
  David,
 
  Similar to what George mentioned, I've always done this at the database
  level.
 
  I use the same basic SQL query (mentioned by George):
 
  update collection2item set collection_id=new collection's id where
  item_id=item's id;
 
  Or, if you are moving *all* the items in one collection to another:
 
  update collection2item set collection_id=new collection's id where
  collection_id=OLD collection's id;
 
  And then re-run the [dspace]/bin/index-all script, which will correct
  all the DSpace browsing interfaces, etc.
 
  I hope that helps!
 
  - Tim
 
 
  George Kozak wrote:
  David:
 
  I would do this in SQL.  Here is an example of the command I use:
 
  update collection2item set collection_id=new collection's id where
  item_id=item's id;
 
  Then I do the following:
 
  update item set owning_collection=new collection's id where
  item_id=item's id;
 
  OR run index_all after making the changes and it would fix the owning
  collections and communities.
 
  If you have a lot of items to move, then a PERL script could be used
  (if you have DBD::Pg compiled for your PERL module).
 
  At 09:58 AM 3/4/2008, David Reynolds wrote:
  Dear colleagues,
 
  I want to move items from one collection to another in order to
  delete the old collection but still retain the handles on the items.
  One colleague suggested the following, but he stressed that he had
  not tried it before:
 
  I would try exporting the item ( you'll get the handle ), then
  deleting the collection and then reimport the item with the handle.
 
  Does this sound like the right approach? I've searched the
  documentation but have found nothing about moving items from one
  collection to another. Thanks in advance for your advice.
 
 
 
 
  David Reynolds
  Manager of Scholarly Digital Initiatives
  Johns Hopkins University
  3400 N. Charles St.
  Baltimore, MD 21218-2683
 
  [EMAIL PROTECTED]
  (410) 516-7220
 
 
  -
  This SF.net email is sponsored by: Microsoft
  Defy all challenges. Microsoft(R) Visual Studio 2008.
  http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
  ***
  George Kozak
  Coordinator
  Web Development and Management
  Digital Media Group
  501 Olin Library
  Cornell University
  607-255-8924
  ***
  [EMAIL PROTECTED]
 
 
  -
  This SF.net email is sponsored by: Microsoft
  Defy all challenges. Microsoft(R) Visual Studio 2008.
  http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 
 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  RG12 1HN.
[EMAIL PROTECTED]   |  Registered No: 690597 England

The contents of this message and any attachments to it are confidential
and may be legally privileged. If you have received this message in
error, you should delete it from your system immediately and advise the
sender. To any recipient of this message within HP, unless otherwise
stated you should consider this message and attachments as HP
CONFIDENTIAL.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Error in filter-media

2008-03-05 Thread Tim Donohue
Scott (and other Developers),

I'd actually recommend that we should *backport* a fix for this issue to 
1.4.2.   I know these new options are available in 1.5.  But, from what 
I've heard (both on  off list), this OutOfMemory problem with the PDF 
filter is becoming more and more prevalent in 1.4.2 installations of DSpace.

It seems the PDFBox software (which we use w/the PDF filter) still 
hasn't fixed this issue themselves, and that's the software that is 
eating up all the server memory.  I logged the below bug with PDFBox 
back in October, but haven't received any fix/resolution from their end:

http://sourceforge.net/tracker/index.php?func=detailaid=1805929group_id=78314atid=552832

I created more of a hack way to get around this issue in our 1.4.2 
instance, but there's definitely a much more elegant way of doing so in 
the upcoming 1.5 release (with the 'pdffilter.skiponmemoryexception' option)

So, we might want to considering helping folks out and backporting a 
patch for DSpace 1.4.2 which can be installed to enable those options in 
the 1.4.2 dspace.cfg.

I believe Graham was the one to add in those new options (correct me if 
I'm wrong, Graham)??  If he doesn't already have a 1.4.2 patch and/or 
cannot find time to create one, I should be able to create one later 
this week (i.e. hopefully by Fri) for all those struggling with this 
problem.

- Tim


Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS] wrote:
 Oh well...we are running 1.4.2.  :-(   Any other ideas?
 Thanks,
 Sue
 
 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, March 05, 2008 12:50 AM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media
 
 
 Ah,
 
 Yes, these parameters only apply to DSpace 1.5 and are not available  
 in previous versions.
 
 Scott--
 
 
 On Mar 4, 2008, at 8:51 PM, Thornton, Susan M. (LARC-B702)[NCI  
 INFORMATION SYSTEMS] wrote:
 
 Hi again Scott,
 I added both of those to dspace.cfg and it didn't seem to have any
 effect - I got the same error again:

 Exception in thread main java.lang.OutOfMemoryError: Java heap space

 Are those parameters valid for DSpace 1.4.2?

 Thanks again,
 Sue



 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 7:28 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Oh, Sorry.

 The parameters go into your dspace.cfg. They are both boolean
 parameters so just add:

 pdffilter.largepdfs = true;

 or

 pdffilter.skiponmemoryexception = true;

 Then re-run your dsrun command and they will take effect.

 Scott--

 On Mar 4, 2008, at 6:13 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:

 Hi Scott,
 Thanks for the info, but can you tell me exactly where to put/
 how to format the parameters?  Do they go on the dsrun command?
 Thanks again,
 Sue

 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 6:51 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Have you tried using the pdffilter.largepdfs and
 pdffilter.skiponmemoryexception parameters?

 Turning on largepdfs will tell pdfbox to use a temporary file while
 processing the pdf instead of keeping it all in memory. It will use
 the standard java.io.tmpdir directory to store them in. In addition
 using skip memory exception will allow the process to just continue
 instead of blocking everything else.

 Scott--


 On Mar 4, 2008, at 3:12 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:


 We have recently been getting the following error in the filter-
 media cron:

 Exception in thread main java.lang.OutOfMemoryError: Java heap  
 space


 I changed -Xmx256m in the java command in dsrun to -Xmx512m
 (documentation says that's the max you can set it to) and we're
 still getting the error.  How can we get rid of this error?

 Here is the full command in our dsrun script:

 java -Xmx512m -classpath $FULLPATH $@

 We are running a production instance of DSpace 1.4.2 with postgreSQL
 7.3.4 on a Solaris 10 platform.

 Thanks in advance.
 Sue


 Sue Walker-Thornton
 ConITS Contract
 NASA Langley Research Center
 Integrated Library Systems Application Administrator/DBA
 130 Research Drive
 Hampton, VA  23666
 Office: (757) 224-4074
 Fax:(757) 224-4001
 Pager: (757) 988-2547
 Email:  [EMAIL PROTECTED]


 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.

 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/_
 __
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 

Re: [Dspace-tech] Moving items to new collection

2008-03-05 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Also don't forget to update owning_collection in the item table.
Sue

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mika
Stenberg
Sent: Wednesday, March 05, 2008 11:31 AM
To: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Moving items to new collection

Ability to move items from collection to another should be added to the 
WebUI. Has this been considered in the future releases?

-Mika

 David,
 
 David,
 
 Similar to what George mentioned, I've always done this at the
database 
 level.
 
 I use the same basic SQL query (mentioned by George):
 
 update collection2item set collection_id=new collection's id where
 item_id=item's id;
 
 Or, if you are moving *all* the items in one collection to another:
 
 update collection2item set collection_id=new collection's id where
 collection_id=OLD collection's id;
 
 And then re-run the [dspace]/bin/index-all script, which will correct 
 all the DSpace browsing interfaces, etc.
 
 I hope that helps!
 
 - Tim
 
 
 George Kozak wrote:
 David:

 I would do this in SQL.  Here is an example of the command I use:

 update collection2item set collection_id=new collection's id where 
 item_id=item's id;

 Then I do the following:

 update item set owning_collection=new collection's id where 
 item_id=item's id;

 OR run index_all after making the changes and it would fix the owning

 collections and communities.

 If you have a lot of items to move, then a PERL script could be used 
 (if you have DBD::Pg compiled for your PERL module).

 At 09:58 AM 3/4/2008, David Reynolds wrote:
 Dear colleagues,

 I want to move items from one collection to another in order to 
 delete the old collection but still retain the handles on the items.

 One colleague suggested the following, but he stressed that he had 
 not tried it before:

 I would try exporting the item ( you'll get the handle ), then
 deleting the collection and then reimport the item with the handle.

 Does this sound like the right approach? I've searched the 
 documentation but have found nothing about moving items from one 
 collection to another. Thanks in advance for your advice.




 David Reynolds
 Manager of Scholarly Digital Initiatives
 Johns Hopkins University
 3400 N. Charles St.
 Baltimore, MD 21218-2683

 [EMAIL PROTECTED]
 (410) 516-7220




-
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 ***
 George Kozak
 Coordinator
 Web Development and Management
 Digital Media Group
 501 Olin Library
 Cornell University
 607-255-8924
 ***
 [EMAIL PROTECTED] 




-
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

 



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Error in filter-media

2008-03-05 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
That would be great Scott!!
Thanks so much for your help.
Sue

-Original Message-
From: Tim Donohue [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 05, 2008 11:49 AM
To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Cc: Scott Phillips; dspace-tech@lists.sourceforge.net;
[EMAIL PROTECTED]
Subject: Re: [Dspace-tech] Error in filter-media

Scott (and other Developers),

I'd actually recommend that we should *backport* a fix for this issue to

1.4.2.   I know these new options are available in 1.5.  But, from what 
I've heard (both on  off list), this OutOfMemory problem with the PDF 
filter is becoming more and more prevalent in 1.4.2 installations of
DSpace.

It seems the PDFBox software (which we use w/the PDF filter) still 
hasn't fixed this issue themselves, and that's the software that is 
eating up all the server memory.  I logged the below bug with PDFBox 
back in October, but haven't received any fix/resolution from their end:

http://sourceforge.net/tracker/index.php?func=detailaid=1805929group_i
d=78314atid=552832

I created more of a hack way to get around this issue in our 1.4.2 
instance, but there's definitely a much more elegant way of doing so in 
the upcoming 1.5 release (with the 'pdffilter.skiponmemoryexception'
option)

So, we might want to considering helping folks out and backporting a 
patch for DSpace 1.4.2 which can be installed to enable those options in

the 1.4.2 dspace.cfg.

I believe Graham was the one to add in those new options (correct me if 
I'm wrong, Graham)??  If he doesn't already have a 1.4.2 patch and/or 
cannot find time to create one, I should be able to create one later 
this week (i.e. hopefully by Fri) for all those struggling with this 
problem.

- Tim


Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS] wrote:
 Oh well...we are running 1.4.2.  :-(   Any other ideas?
 Thanks,
 Sue
 
 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, March 05, 2008 12:50 AM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media
 
 
 Ah,
 
 Yes, these parameters only apply to DSpace 1.5 and are not available  
 in previous versions.
 
 Scott--
 
 
 On Mar 4, 2008, at 8:51 PM, Thornton, Susan M. (LARC-B702)[NCI  
 INFORMATION SYSTEMS] wrote:
 
 Hi again Scott,
 I added both of those to dspace.cfg and it didn't seem to have
any
 effect - I got the same error again:

 Exception in thread main java.lang.OutOfMemoryError: Java heap
space

 Are those parameters valid for DSpace 1.4.2?

 Thanks again,
 Sue



 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 7:28 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Oh, Sorry.

 The parameters go into your dspace.cfg. They are both boolean
 parameters so just add:

 pdffilter.largepdfs = true;

 or

 pdffilter.skiponmemoryexception = true;

 Then re-run your dsrun command and they will take effect.

 Scott--

 On Mar 4, 2008, at 6:13 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:

 Hi Scott,
 Thanks for the info, but can you tell me exactly where to put/
 how to format the parameters?  Do they go on the dsrun command?
 Thanks again,
 Sue

 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 6:51 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Have you tried using the pdffilter.largepdfs and
 pdffilter.skiponmemoryexception parameters?

 Turning on largepdfs will tell pdfbox to use a temporary file while
 processing the pdf instead of keeping it all in memory. It will use
 the standard java.io.tmpdir directory to store them in. In addition
 using skip memory exception will allow the process to just continue
 instead of blocking everything else.

 Scott--


 On Mar 4, 2008, at 3:12 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:


 We have recently been getting the following error in the filter-
 media cron:

 Exception in thread main java.lang.OutOfMemoryError: Java heap  
 space


 I changed -Xmx256m in the java command in dsrun to -Xmx512m
 (documentation says that's the max you can set it to) and we're
 still getting the error.  How can we get rid of this error?

 Here is the full command in our dsrun script:

 java -Xmx512m -classpath $FULLPATH $@

 We are running a production instance of DSpace 1.4.2 with postgreSQL
 7.3.4 on a Solaris 10 platform.

 Thanks in advance.
 Sue


 Sue Walker-Thornton
 ConITS Contract
 NASA Langley Research Center
 Integrated Library Systems Application Administrator/DBA
 130 Research Drive
 Hampton, VA  23666
 Office: (757) 224-4074
 Fax:(757) 224-4001
 Pager: (757) 988-2547
 Email:  [EMAIL PROTECTED]




Re: [Dspace-tech] Problem with scripts after PostGreSQL upgrade

2008-03-05 Thread George Kozak
Hi, Everyone...

In case anyone is wondering, I fixed my problem with PERL scripts 
after I upgraded to PostGreSQL 8.3, but discovered that the latest 
DBD::Pg Perl Module (DBD-Pg-2.2.1) doesn't work with my scripts.  It 
looks as if they changed the way that variables are addressed in the 
latest version of DBD::Pg.  After a of couple of days of messing 
around with it, I installed DBD-Pg-1.49 and everything worked fine.

***
George Kozak
Coordinator
Web Development and Management
Digital Media Group
501 Olin Library
Cornell University
607-255-8924
***
[EMAIL PROTECTED] 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Long Delay in doing Submit

2008-03-05 Thread George Kozak
Hi...

This is a follow up on my problem (at Cornell) with DSpace after we 
migrated from v. 1.3.2 to v. 1.4.2.  The problem was that if someone 
on the My DSpace Home page clicked on Start a New Submission, it 
could take several minutes for the first Submit page to appear.

What fixed my problem was upgrading from PostGreSQL 7.2.3 to 
PostGreSQL 8.3.  Our problem immediately went away.

So, if anyone is having performance problems after the upgrade to 
1.4.2, I'd suggest upgrading PostGreSQL.

***
George Kozak
Coordinator
Web Development and Management
Digital Media Group
501 Olin Library
Cornell University
607-255-8924
***
[EMAIL PROTECTED] 


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Followup: Managing custom metadata

2008-03-05 Thread Rowan Brownlee
Last December I posted a message titled Managing custom metadata / advanced 
search options, describing some thoughts and questions I had regarding 
metadata for non-DC research data collections submitted to the repository.  
 
Later I drafted a discussion document outlining options, including benefits and 
issues. Following some discussion within the Library we've decided to go with a 
general approach which will see custom metadata mapped to DC (to enable simple 
keyword search within dspace and OAI harvesting) and submission of native 
metadata as accompanying bitstreams.
 
If others are interested in this discussion, I've posted the document at...
 
http://escholarship.library.usyd.edu.au/dpa/meta.html 
http://escholarship.library.usyd.edu.au/dpa/meta.html 
 
The scope of the discussion reflects the types of data collections currently 
being offered to the repository (records from relational databases and 
accompanying digital objects stored on departmental or personal computers).
 
I'd welcome any feedback, advice or ideas reflecting how others are managing 
these issues.
 
bye
rowan
Rowan Brownlee
Digital Project Analyst
University of Sydney Library
NSW 2006 Australia
Phone: +61 2 9036 6450
Fax: +61 2 9351 3689
http://escholarship.usyd.edu.au/dpa/
 
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Error in filter-media

2008-03-05 Thread Jayan Chirayath Kurian
Hello,

Just to share that we too experienced the same issue and was resolved
after increasing -Xmx512m in dsrun and upgrading the system RAM from 4GB
to 12GB.
It would be of help.

Cheers!
Jayan

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tim
Donohue
Sent: Thursday, March 06, 2008 12:49 AM
To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Cc: dspace-tech@lists.sourceforge.net; Scott Phillips
Subject: Re: [Dspace-tech] Error in filter-media

Scott (and other Developers),

I'd actually recommend that we should *backport* a fix for this issue to

1.4.2.   I know these new options are available in 1.5.  But, from what 
I've heard (both on  off list), this OutOfMemory problem with the PDF 
filter is becoming more and more prevalent in 1.4.2 installations of
DSpace.

It seems the PDFBox software (which we use w/the PDF filter) still 
hasn't fixed this issue themselves, and that's the software that is 
eating up all the server memory.  I logged the below bug with PDFBox 
back in October, but haven't received any fix/resolution from their end:

http://sourceforge.net/tracker/index.php?func=detailaid=1805929group_i
d=78314atid=552832

I created more of a hack way to get around this issue in our 1.4.2 
instance, but there's definitely a much more elegant way of doing so in 
the upcoming 1.5 release (with the 'pdffilter.skiponmemoryexception'
option)

So, we might want to considering helping folks out and backporting a 
patch for DSpace 1.4.2 which can be installed to enable those options in

the 1.4.2 dspace.cfg.

I believe Graham was the one to add in those new options (correct me if 
I'm wrong, Graham)??  If he doesn't already have a 1.4.2 patch and/or 
cannot find time to create one, I should be able to create one later 
this week (i.e. hopefully by Fri) for all those struggling with this 
problem.

- Tim


Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS] wrote:
 Oh well...we are running 1.4.2.  :-(   Any other ideas?
 Thanks,
 Sue
 
 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, March 05, 2008 12:50 AM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media
 
 
 Ah,
 
 Yes, these parameters only apply to DSpace 1.5 and are not available  
 in previous versions.
 
 Scott--
 
 
 On Mar 4, 2008, at 8:51 PM, Thornton, Susan M. (LARC-B702)[NCI  
 INFORMATION SYSTEMS] wrote:
 
 Hi again Scott,
 I added both of those to dspace.cfg and it didn't seem to have
any
 effect - I got the same error again:

 Exception in thread main java.lang.OutOfMemoryError: Java heap
space

 Are those parameters valid for DSpace 1.4.2?

 Thanks again,
 Sue



 -Original Message-
 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 7:28 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Oh, Sorry.

 The parameters go into your dspace.cfg. They are both boolean
 parameters so just add:

 pdffilter.largepdfs = true;

 or

 pdffilter.skiponmemoryexception = true;

 Then re-run your dsrun command and they will take effect.

 Scott--

 On Mar 4, 2008, at 6:13 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:

 Hi Scott,
 Thanks for the info, but can you tell me exactly where to put/
 how to format the parameters?  Do they go on the dsrun command?
 Thanks again,
 Sue

 From: Scott Phillips [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, March 04, 2008 6:51 PM
 To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Error in filter-media


 Have you tried using the pdffilter.largepdfs and
 pdffilter.skiponmemoryexception parameters?

 Turning on largepdfs will tell pdfbox to use a temporary file while
 processing the pdf instead of keeping it all in memory. It will use
 the standard java.io.tmpdir directory to store them in. In addition
 using skip memory exception will allow the process to just continue
 instead of blocking everything else.

 Scott--


 On Mar 4, 2008, at 3:12 PM, Thornton, Susan M. (LARC-B702)[NCI
 INFORMATION SYSTEMS] wrote:


 We have recently been getting the following error in the filter-
 media cron:

 Exception in thread main java.lang.OutOfMemoryError: Java heap  
 space


 I changed -Xmx256m in the java command in dsrun to -Xmx512m
 (documentation says that's the max you can set it to) and we're
 still getting the error.  How can we get rid of this error?

 Here is the full command in our dsrun script:

 java -Xmx512m -classpath $FULLPATH $@

 We are running a production instance of DSpace 1.4.2 with postgreSQL
 7.3.4 on a Solaris 10 platform.

 Thanks in advance.
 Sue


 Sue Walker-Thornton
 ConITS Contract
 NASA Langley Research Center
 Integrated Library Systems Application 

[Dspace-tech] Computers games' repository

2008-03-05 Thread Jeane Teixeira
Hello,

I am new in this list...

I'd like to know if is possible to use the Dspace to create a computers
games' repository.

Thanks.
Jeane
2008/3/6, Jayan Chirayath Kurian [EMAIL PROTECTED]:

 Thanks Graham. It works fine with Chinese Titles.
  __
  From: Graham Triggs [mailto:[EMAIL PROTECTED]
  Sent: Thu 1/31/2008 5:28 PM
  To: Jayan Chirayath Kurian
  Cc: dspace-tech@lists.sourceforge.net
  Subject: Re: [Dspace-tech] Chinese titles
 
 
  In current development versions of DSpace, you can set the
  mail.charset
  property in your dspace.cfg to UTF-8.
 
  If you are using a released version of DSpace, then you'll need to
  edit
  org/dspace/core/Email.java and change the line:
 
  message.setText(fullMessage);
 
  to
 
  message.setText(fullMessage, UTF-8);
 
  G
 
 
 
  On Thu, 2008-01-31 at 11:30 +0800, Jayan Chirayath Kurian wrote:
   hi!
  
  
  
  
  
   For documents with Chinese titles, DSpace displays correctly the
   chinese characters in the simple item view. But in the automatic
   submission  archived email sent from the DSpace admin account, the
   chinese characters in the  title metadata are  mentioned as
  ???.
   Please suggest if there is a configuration to set up to display in
   chinese.
  
  
  
  
  
   Jayan
  
  
  
 
 
 -
   This SF.net email is sponsored by: Microsoft
   Defy all challenges. Microsoft(R) Visual Studio 2008.
   http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
   ___ DSpace-tech mailing
  list DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
  This email has been scanned by Postini.
  For more information please visit http://www.postini.com
 
 
 
 



 This e-mail is confidential and should not be used by anyone who is not
 the original intended recipient. BioMed Central Limited does not accept
 liability for any statements made which are clearly the sender's own and
 not expressly made on behalf of BioMed Central Limited. No contracts may
 be concluded on behalf of BioMed Central Limited by means of e-mail
 communication. BioMed Central Limited Registered in England and Wales
 with registered number 3680030 Registered Office Middlesex House, 34-42
 Cleveland Street, London W1T 4LB
 This email has been scanned by Postini.
 For more information please visit http://www.postini.com


 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech