[Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread José A. Rubio
Hi, Nowadays, I am trying to run DSpace 1.4.1 on Oracle Application Server 10g, and I have an initial doubt in this matter. When we create the DSpace binaries, with ant, we obtain two WAR files, dspace.war and dspace-oai.war, which are necessary to deploy the application in Tomcat. But, when I

Re: [Dspace-tech] Help: Dspace 1.4.1; Internal System Error

2007-02-16 Thread Jim Downing
Rodrigo Castro Artigas wrote: Hi Jim, I am running Dspace with Oracle 9.2.0.7 and data type is NUMBER (SiZE_BYTES). But the problem also is present with upload other documents. Then it looks like you've go the same issue as José Rubio in the current thread on this list with the subject

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread Stuart Lewis [sdl]
Hi José, You should be able to do this quite easily by adding the following to: [dspace-src]/etc/dspace-web.xml Add these into the relevant sections: context-param param-nameproperties/param-name param-value@@dspace.dir@@/config/oaicat.properties/param-value description The

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread Mark Diggory
While this wholy possible now (and actually a nice solution to the issue) I caution that the future path of DSpace Development could completely separate these web-applications dependencies as well. Jose, can't just deploy the web-applications one at a time by hand? -Mark On Feb 16, 2007,

[Dspace-tech] Google Summer of Code --- and DSpace?

2007-02-16 Thread John Erickson
Hi Folks! I'm sure many of you saw the announcement that there will be a Google Summer of Code for 2007: * http://code.google.com/ * http://code.google.com/soc/ FAQ at: http://code.google.com/support/bin/topic.py?topic=10442 ...Google Summer of Code(TM) 2007 is on! Last year, Google

[Dspace-tech] Dspace Config question and error report

2007-02-16 Thread Jeffrey Trimble
Would someone kindly correct the config file that has the following line: search.index.11 = identifier:dc.identifier.* change to: search.index.11 = id:dc.identifier.* I found this error in 1.3.2 and it is still being perpetuated in 1.4.1. Now, perhaps somewhere along the line my installed got

Re: [Dspace-tech] Postgres error during conversion

2007-02-16 Thread Jim Downing
Jeffrey Trimble wrote: I'm receiving the following error when I run database_schema_13-14.sql : psql: FATAL: user root does not exist I've never seen that before. HELP! sudo -u dspace {whatever you were doing} Best regards, jim

[Dspace-tech] Policies on groups?

2007-02-16 Thread Mark H. Wood
Context: DSpace 1.3.2 I was tracking down a permissions problem: a collection admin. could not edit the collection's submitters group. I found that there were no resource policy rows granting any access at all to the submitters group. How this came to be I don't know, but I patched in a new

Re: [Dspace-tech] [Dspace-general] How to swap a file when item already submitted to Dspace

2007-02-16 Thread Tim Donohue
Satu, Probably the easiest way to swap a file (although it's admittedly *not* that easy, yet) is to login as your local DSpace Administrator, and click on the Edit button when you are viewing the item in DSpace. That button will bring you to a page to edit any information about the item.

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread José A. Rubio
Hi Mark, My knowledge on OAS 10g is limited, but I think that if you deploy two differents WAR files you are obtaining two differents applications within OAS, as for each deployment you are limited to deploy only one WAR file. So, although I deploy two differents applicatios for DSpace, dpsace

[Dspace-tech] How to implement an Interface to DSpace

2007-02-16 Thread Tanyaporn Sasisuwan
Now, I’m trying to interface DSpace with Horizon for my university. Currently, our university use Horizon as main library system, but now I have installed DSpace to allow them to collect electronic copy of the document. However, the main objective is that we want Horizon (using Z39.50) to

Re: [Dspace-tech] Google Summer of Code --- and DSpace?

2007-02-16 Thread Robert Tansley
DSpace can be a mentoring organisation -- we just need an organisation administrator as the main point of contact (I can do this if it makes sense to people), and mentors to work with the students. If some committers or active community members are willing to step up to this we should definitely

[Dspace-tech] Blocking an IP from accessing DSpace

2007-02-16 Thread George Kozak
Hi... I wonder if anyone has successfully blocked an IP from accessing content in DSpace. I usually block IP's in Apache, but my attempts to do so with DSpace have not been successful. Does anyone have any suggestions on how I can restrict an abusive IP ? *** George

Re: [Dspace-tech] Blocking an IP from accessing DSpace

2007-02-16 Thread Mark Diggory
There is a remote restriction valve you can place in tomcats server.xml to block certain IP. But I'm not so sure its as low level as you get out of Apache or Packet Filtering in Linux Valve className=org.apache.catalina.valves.RemoteAddrValve deny=61 \.145\.233\.118 / -Mark On Feb 16,

Re: [Dspace-tech] Blocking an IP from accessing DSpace

2007-02-16 Thread Graham Triggs
From: George Kozak [EMAIL PROTECTED] Does anyone have any suggestions on how I can restrict an abusive IP ? I don't have any experience in doing this, and how you would go about it depends on your situation (choice of application server, whether you want to restrict all access to DSpace, or

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread Larry Stone
You should be able to do this quite easily by adding the following to: [dspace-src]/etc/dspace-web.xml When merging Servlet webapps, one thing to watch out for is how they handle errors. The DSpace webapp has special error handlers that substitute its own pages. I think it also transforms

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread Mark Diggory
Jose, I want to rewind a little bit here and ask a few questions. So if you have a couple seconds, could you answer the following questions? I suspect you have one Oracle Database configured for DSpace and have altered your dspace.cfg to point at the database connection? # Database

Re: [Dspace-tech] Dspace and Oracle Application Server 10g

2007-02-16 Thread Graham Triggs
From: Mark Diggory Is there something unique about Oracle Application Server that is stopping two separately deployed web-apps from both using the same db? I suspect you would be as surprised as I would if you were told that was the case. It would be a massive limitation. I'm a little naive