[Dspace-tech] Not authorized to use Feedback form

2010-06-15 Thread Trude Eikebrokk
I recently discovered that our DSpace installation is having issues with 
the Feedback form. Seems the problem appeared after upgrading to DSpace 
1.6.0.

No-one is apparently authorized to use Feedback - not even me as 
administrator!

The Dspace log is only telling me: 
authorize_error:org.dspace.authorize.AuthorizeException.

Has anyone seen this kind behaviour before? Any solutions would be 
appreciated!

Best regards,
Trude Eikebrokk
Oslo University College
trude.eikebr...@hio.no



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Not authorized to use Feedback form

2010-06-15 Thread Claudia Jürgen

Hello Trude,

check your dspace.hostname in the dspace.cfg (for the xmlui there is an 
additional mail.allowed.referrers to be checked).


In order to prevent spamming the referer of the feedback request ist 
checked against it.


Hope that helps

Claudia Jürgen


Am 15.06.2010 14:32, schrieb Trude Eikebrokk:

I recently discovered that our DSpace installation is having issues with
the Feedback form. Seems the problem appeared after upgrading to DSpace
1.6.0.

No-one is apparently authorized to use Feedback - not even me as
administrator!

The Dspace log is only telling me:
authorize_error:org.dspace.authorize.AuthorizeException.

Has anyone seen this kind behaviour before? Any solutions would be
appreciated!

Best regards,
Trude Eikebrokk
Oslo University College
trude.eikebr...@hio.no



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
lucky parental unit.  See the prize list and enter to win:
http://p.sf.net/sfu/thinkgeek-promo
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
attachment: Claudia_Juergen.vcf--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] DSpace and large video files

2010-06-15 Thread Jizba, Richard
Hello,

I have been asked about using DSpace to manage a collection of large
video files. The people like all the functionality DSpace provides for
Collection Administration, but I'm not sure how it would handle such a
collection. I know there has been discussion of this in the past, but is
there a consensus or 'best practice' for using DSpace with a collection
of large video files? Can DSpace work with a streaming video server?

Richard Jizba
Creighton University



--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] upgrading to 1.6: database version question

2010-06-15 Thread Harish Maringanti
Thanks Mark for your suggestions. I'm planning to upgrade the database in
test  see how it works. Will report back when done..

Thanks,
Harish

On Mon, Jun 14, 2010 at 9:06 AM, Mark H. Wood mw...@iupui.edu wrote:

 On Fri, Jun 11, 2010 at 02:49:07PM -0500, Harish Maringanti wrote:
  I'm trying to upgrade our test dspace instance from 1.5.2 to 1.6  am
 having
  some issues. Wanted to check if these had anything to do with the
 versions
  we are using - postgresql 7.4.6  tomcat 5.0.28.

 Those are both very old releases.  Tomcat 5.0 is no longer supported
 by the Tomcat maintainers, and the current release is 6.0.26 (which
 runs DSpace very well).  I'm not sure whether PostgreSQL 7.x is
 supported by its maintainers or not, but 8.4 is current (and serves
 DSpace well) and 9.0 is in beta.  May I suggest at least Tomcat 5.5
 and PostgreSQL 8.1.

  When I ran the database schema script I got these errors:
  ---
  psql: database_schema_15-16.sql:56: ERROR: adding columns with defaults
 is
  not implemented
  HINT: Add the column, then use ALTER TABLE SET DEFAULT
  

 It looks as though 7.x did not completely execute the schema update.
 This will cause problems later...

  I proceeded with the upgrade anyway (test) and encountered the following
  error in the tomcat logs:
  
  StandardWrapperValve[handle]: Servlet.service() for servlet handle threw
  exception
  java.lang.IllegalArgumentException: No such column confidence
  at
 org.dspace.storage.rdbms.TableRow.getIntColumn(TableRow.java:157)
  at org.dspace.content.Item.init(Item.java:179)
  at org.dspace.content.Item.find(Item.java:248)
 
 --

 ...as you can see.

  Looks like the 2nd error is related to the database error reported
  above..did the db schema upgrade script throw an error because of the
  postgresql version ? Any advise is much appreciated.

 I believe you are correct.

 I hope you have a backup of your database.  Simplest would be to
 upgrade PostgreSQL to 8.x, restore the backup, dump a separate new
 backup using 8.x (in case anything else goes wrong), and try the
 schema upgrade again.  (If you're able to install 8.x alongside 7.x,
 you can use 8.x tools to dump from the 7.x server, and I believe this
 is recommended for Pg upgrades.  But first you need to recover the
 un-upgraded database.)

 As an UNTESTED workaround, you might instead try restoring your backup
 and then splitting line 56 of database_schema_15-16.sql:

  ALTER TABLE MetadataValue ADD confidence INTEGER DEFAULT -1;

 to:

  ALTER TABLE MetadataValue ADD confidence INTEGER;
  ALTER TABLE MetadataValue ALTER COLUMN confidence SET DEFAULT -1;

 and rerunning the schema upgrade.  There may be other usages in the
 script which don't work in 7.x.  I don't have a 7.x to test with.  If
 you can upgrade PostgreSQL, I would do that instead.



 The 1.6.1 documentation does still treat Pg 7.3 and 7.4.  It looks as
 though we need to either note that 7.x is no longer usable and remove
 the 7.x instructions, or rework the schema upgrade script.  The 7.4
 documentation says both that ALTER TABLE ADD COLUMN uses the same
 syntax as CREATE TABLE (which supports DEFAULT) and, much later, that
 DEFAULT is not supported.  It appears that the latter is correct.
 Considering the age of 7.x I would suggest leaving it behind at the
 next opportunity, whatever might be done with the schema upgrade
 script in the meantime.

 --
 Mark H. Wood, Lead System Programmer   mw...@iupui.edu
 Balance your desire for bells and whistles with the reality that only a
 little more than 2 percent of world population has broadband.
-- Ledford and Tyler, _Google Analytics 2.0_


 --
 ThinkGeek and WIRED's GeekDad team up for the Ultimate
 GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the
 lucky parental unit.  See the prize list and enter to win:
 http://p.sf.net/sfu/thinkgeek-promo
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Dspace smtp issues??

2010-06-15 Thread Heh, Gregory
Hello,

 

RHEL 5

Dspace 1.5

postgresql

 

I get the following error message when trying to register a user.  This
message is also very similar to what I get when clicking the Feedback
link.  Can anyone point me in the right direction?  I've looked into
changing the smtp configuration in dspace.cfg but nothing I do seems to
make a difference.  Do I need to restart the server after making changes
to dspace.cfg? or just restart Tomcat?

 

Thanks for any help.

 

2010-06-15 17:14:50,280 INFO
org.dspace.app.webui.servlet.RegisterServlet @
anonymous:session_id=5ABDD79E63C8CF55C8A2225AD7D09F74:ip_addr=216.183.18
5.5$

javax.mail.MessagingException: 501 5.0.0 HELO requires domain address

 

at
com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:1363)

at com.sun.mail.smtp.SMTPTransport.helo(SMTPTransport.java:838)

at
com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:375)

at javax.mail.Service.connect(Service.java:275)

at javax.mail.Service.connect(Service.java:156)

at javax.mail.Service.connect(Service.java:105)

at javax.mail.Transport.send0(Transport.java:168)

at javax.mail.Transport.send(Transport.java:98)

at org.dspace.core.Email.send(Email.java:362)

at
org.dspace.eperson.AccountManager.sendEmail(AccountManager.java:296)

at
org.dspace.eperson.AccountManager.sendInfo(AccountManager.java:256)

at
org.dspace.eperson.AccountManager.sendRegistrationInfo(AccountManager.ja
va:101)

at
org.dspace.app.webui.servlet.RegisterServlet.processEnterEmail(RegisterS
ervlet.java:287)

at
org.dspace.app.webui.servlet.RegisterServlet.doDSPost(RegisterServlet.ja
va:202)

at
org.dspace.app.webui.servlet.DSpaceServlet.processRequest(DSpaceServlet.
java:147)

at
org.dspace.app.webui.servlet.DSpaceServlet.doPost(DSpaceServlet.java:105
)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tionFilterChain.java:290)

at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erChain.java:206)

at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.java:233)

at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.java:191)

at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:128)

at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:102)

at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
java:109)

at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:2
93)

at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:84
9)

at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(
Http11Protocol.java:583)

at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)

at java.lang.Thread.run(Thread.java:619)

 

Greg


This email message and any files transmitted with it are intended only for the 
use of the individual or entity to which it is addressed and may contain 
information that is privileged, confidential, and exempt from disclosure under 
applicable law.  Any use, distribution, copying or disclosure by anyone other 
than the intended individual or entity is prohibited without prior approval.  
If you have received this information in error, please notify the sender 
immediately.

--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Using SWORD

2010-06-15 Thread Stuart Lewis
Hi Ahmda,

 Can anyone provide me a solid reference on how to make applicants communicate 
 with DSPACE using SWORD? Is there any other tool through which my 
 application, deployed on a separate server from that of DSPACE, can 
 communicate with DSPACE (webservices …)?

The following links might help:

 - The SWORD website: http://swordapp.org/
 - The current SWORD specification: 
http://swordapp.org/docs/sword-profile-1.3.html
 - A PHP library to interact with SWORD: 
http://github.com/stuartlewis/swordapp-php-library
 - A Java library to interact with SWORD: 
http://sword-app.svn.sourceforge.net/viewvc/sword-app/java-common/trunk/src/main/java/org/purl/sword/client/

The setting you'll need for your server is:

 - http://your-dspace.com/sword/servicedocument   (clients will require this)

If you have specific questions please ask them, or send them to the SWORD 
technical email list:

 - https://lists.sourceforge.net/lists/listinfo/sword-app-tech

Thanks,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: +64 (0)9 373 7599 x81928


--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech