Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread helix84
On Wed, Jul 11, 2012 at 8:20 AM, Hayden Young  wrote:
> Hi
>
> Okay we'll research these issues further and come up with some solutions.
>
> So the compiled version of the REST API does work despite the mismatches and
> some build issues?

Yes, it does. I didn't find any problems so far (only the conceptual
problem with listing users I mentioned).

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread Hayden Young
Hi Gary

Please try changing the following line in your pom.xml from:

1.8.1

to:

1.8.2

and see if that solves your issue.

Cheers


Hayden

On 10/07/12 09:55, Gary Browne wrote:
> Hi Hayden,
>
> I'm keen to try this out, however I am unable to install it - should it run 
> ok on 1.8.2?
>
> On building (mvn package), I get the following error:
>
> [INFO] Unable to find resource 'org.dspace:dspace-rest:war:1.0' in repository 
> central (http://repo1.maven.org/maven2)
> [INFO] 
> 
> [ERROR] BUILD ERROR
> [INFO] 
> 
> [INFO] Failed to resolve artifact.
>
> Missing:
> --
> 1) org.dspace:dspace-rest:war:1.0
>
>Try downloading the file manually from the project website.
>
>Then, install it using the command:
>mvn install:install-file -DgroupId=org.dspace -DartifactId=dspace-rest 
> -Dversion=1.0 -Dpackaging=war -Dfile=/path/to/file
>
>Alternatively, if you host your own repository you can deploy the file 
> there:
>mvn deploy:deploy-file -DgroupId=org.dspace -DartifactId=dspace-rest 
> -Dversion=1.0 -Dpackaging=war -Dfile=/path/to/file -Durl=[url] 
> -DrepositoryId=[id]
>
>Path to dependency:
>  1) org.dspace.modules:rest:war:1.8.1
>  2) org.dspace:dspace-rest:war:1.0
>
> --
> 1 required artifact is missing.
>
> for artifact:
>org.dspace.modules:rest:war:1.8.1
>
> from the specified remote repositories:
>central (http://repo1.maven.org/maven2),
>sonatype-nexus-snapshots 
> (https://oss.sonatype.org/content/repositories/snapshots)
>
> I'm not clear on what I should do next, are you able to help please?
>
> Thanks a lot,
> Gary
>
>> -Original Message-
>> From: Hayden Young [mailto:haydenyo...@wijiti.com]
>> Sent: Tuesday, 10 July 2012 5:32 AM
>> To: dspace-tech@lists.sourceforge.net; DSpace Developer List
>> Subject: [Dspace-tech] DSpace REST API
>>
>> After several months of development, Wijiti is pleased to contribute this
>> reworked version of the REST API for DSpace 1.8.x.
>>
>> Details and documentation are available at https://jspace.atlassian.net/ and
>> all code is freely available via Github, the link of which is in the
>> documentation.
>>
>> Enjoy.
>>
>> --
>> Hayden Young
>> Managing Director
>> Wijiti Pty Ltd
>> p. +61 (0) 8 6398 5010
>> e. haydenyo...@wijiti.com
>> w. www.wijiti.com
>> vcard. www.wijiti.com/vcard/haydenyoung.vcf
>>
>> NOTICE
>> This e-mail and any attachments are intended for the addressee(s) only and
>> may be confidential. They may contain legally privileged or copyright
>> material. You should not read, copy, use or disclose them without
>> authorization. If you are not the intended recipient please contact the
>> sender as soon as possible by return e-mail and then please delete both
>> messages. This notice should not be removed.
>>
>>
>> --
>> Live Security Virtual Conference
>> Exclusive live event will cover all the ways today's security and threat
>> landscape has changed and how IT managers can respond. Discussions will
>> include endpoint security, mobile security and the latest in malware threats.
>> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>> ___
>> DSpace-tech mailing list
>> DSpace-tech@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/dspace-tech
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 
Hayden Young
Managing Director
Wijiti Pty Ltd
p. +61 (0) 8 6398 5010
e. haydenyo...@wijiti.com
w. www.wijiti.com
vcard. www.wijiti.com/vcard/haydenyoung.vcf

NOTICE
This e-mail and any attachments are intended for the addressee(s) only and may 
be confidential. They may contain legally privileged or copyright material. You 
should not read, copy, use or disclose them without authorization. If you are 
not the intended recipient please contact the sender as soon as possible by 
return e-mail and then please delete both messages. This notice should not be 
removed.




--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the lat

Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread Hayden Young
Good news. We'll update the documentation.

Thanks


Hayden

On 11/07/12 00:09, Ben Sheaff wrote:
> I got it to work but in pom.xml it looks like you have assumed that the 
> folder dspace-rest has been copied into the source folder of dspace.
>
> You have hard coded:
>
>  
>  dspace-parent
>  org.dspace
>  1.8.1
>  ..
>  
>
> So for me I fixed the relative path and changed the version to 1.7.1, I then 
> got build successful.
>
> Thanks,
> Ben
>
> -Original Message-
> From: helix84 [mailto:heli...@centrum.sk]
> Sent: July-10-12 4:22 AM
> To: Hayden Young
> Cc: dspace-tech@lists.sourceforge.net; DSpace Developer List
> Subject: Re: [Dspace-tech] DSpace REST API
>
> Hi Hayden,
> I was trying to build it both as a webapp and as a module just to test it. 
> Here are my notes and observations so far:
>
> 1) Here's what I got after I ran mvn package for the first time building as a 
> webapp:
>
> Downloading: 
> http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> [INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in 
> repository sakaiproject repository
> (http://source.sakaiproject.org/maven2/)
> Downloading: 
> http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> 8K downloaded  (dspace-api-1.8.1.pom)
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
> Checksum failed on download: local = 
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote = 
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
> Checksum failed on download: local = 
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote = 
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote = 
> '5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote = 
> '5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
> Checksum failed on download: local = 
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote = 
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
> Checksum failed on download: local = 
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote = 
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
> 746b downloaded  (entitybus-utils-1.0.8.pom)
>
> (It built correctly, I'm just pointing out the checksum mismatches)
>
> 2) When I tried to build it as a module (with DSpace git master branch), I 
> got this:
>
> [ERROR] FATAL ERROR
> [INFO] 
> 
> [INFO] Error building POM (may not be this project's POM).
>
>
> Project ID: org.dspace.modules:rest
> POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
> Validation Messages:
>
>  [0]  'dependencies.dependency.version' is missing for 
> org.dspace:dspace-rest:war
>
>
> Reason: Failed to validate POM for project org.dspace.modules:rest at 
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>
>
> [INFO] 
> 
> [INFO] Trace
> org.apache.maven.reactor.MavenExecutionException: Failed to validate POM for 
> project org.dspace.modules:rest at 
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>   at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
>   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
>   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
>   at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
>   at 
> org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
>   at sun.reflect.NativeMe

Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread Hayden Young
Hi

Okay we'll research these issues further and come up with some solutions.

So the compiled version of the REST API does work despite the mismatches 
and some build issues?

Cheers


Hayden

On 10/07/12 19:21, helix84 wrote:
> Hi Hayden,
> I was trying to build it both as a webapp and as a module just to test
> it. Here are my notes and observations so far:
>
> 1) Here's what I got after I ran mvn package for the first time
> building as a webapp:
>
> Downloading: 
> http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> [INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in
> repository sakaiproject repository
> (http://source.sakaiproject.org/maven2/)
> Downloading: 
> http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> 8K downloaded  (dspace-api-1.8.1.pom)
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
> '5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
> '5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
> 746b downloaded  (entitybus-utils-1.0.8.pom)
>
> (It built correctly, I'm just pointing out the checksum mismatches)
>
> 2) When I tried to build it as a module (with DSpace git master
> branch), I got this:
>
> [ERROR] FATAL ERROR
> [INFO] 
> 
> [INFO] Error building POM (may not be this project's POM).
>
>
> Project ID: org.dspace.modules:rest
> POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
> Validation Messages:
>
>  [0]  'dependencies.dependency.version' is missing for
> org.dspace:dspace-rest:war
>
>
> Reason: Failed to validate POM for project org.dspace.modules:rest at
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>
>
> [INFO] 
> 
> [INFO] Trace
> org.apache.maven.reactor.MavenExecutionException: Failed to validate
> POM for project org.dspace.modules:rest at
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>   at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
>   at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
>   at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
>   at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
>   at 
> org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.lang.reflect.Method.invoke(Method.java:616)
>   at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
>   at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
>   at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.jav

[Dspace-tech] Authority Control getMatches

2012-07-10 Thread Helves Domingues
Hi,

I've developed one authority control to dc.contributor.author field.
I've configured to open one lookup popup window in the submission
page. The first time that the user call the lookup search the method
getMatches is executed with all the correct parameters to my code.
But, when the user ask to see more results (one button in the lookup
window) the method getMatches receive the query parameter null. Using
jspui interface, it works as expected and everything is ok. I've
tested in both versions (1.8.0 and 1.7.2) and error is the same in
xmlui interface. I've tested in the demo site
(http://demo.dspace.org/xmlui) and there, one error is presented when
I request to see more results in the same popup window.

I´ve opened a jira issue (https://jira.duraspace.org/browse/DS-1079)
but I didn't receive any response. Someone could help me with this
problem?

Thanks,

Helves

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Oracle 11g and DSpace 1.8.1 problems

2012-07-10 Thread Kelly Brown
Please find attached the output of ant fresh_install

Thanks,

Kelly Brown
Database Analyst 
Massey Library | Bibliothèque Massey
Royal Military College of Canada | Collège militaire royal du Canada
Telephone / Téléphone: (613) 541-6000 x 6979
E-Mail / Couriel: kelly.br...@rmc.ca


-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: July 9, 2012 2:59 PM
To: Kelly Brown
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Oracle 11g and DSpace 1.8.1 problems

On Mon, Jul 9, 2012 at 8:23 PM, Kelly Brown  wrote:
> I am attempting to setup DSpace 1.8.1 with Oracle 11g. During the ant 
> fresh_install it creates the tables but after that during the ant 
> command I get the ORA-00942 table or view does not exist.  I am able 
> to connect to the database and see that the tables were created and 
> they do exist. I have run the oracle command found in the DSpace docs, 
> I have change to pom file to reflect the oracle database and have 
> installed the ojdbc6.dll to maven. I am at a loss as to why it creates 
> the tables but then tells me they don’t exist.  If there is anyone who 
> is using oracle with DSpace could you please let me know what version 
> you are using. Any ideas or help regarding this would be wonderful.

This has been reported several times, but I don't think anyone reported a 
successful fix. You may want to go through these threads again to find any 
clues:

http://www.mail-archive.com/search?q=ORA-00942&l=dspace-tech%40lists.sourceforge.net

Once I investigated this I found out that the file which caused
(CollectionRole.java) it is no longer in git master branch, which will become 
DSpace 3.0. If you want you can try to install that version, too.

You would do well to also send us a full stack trace.

Regards,
~~helix84


ant_install_output
Description: ant_install_output
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread Ben Sheaff
I got it to work but in pom.xml it looks like you have assumed that the folder 
dspace-rest has been copied into the source folder of dspace.

You have hard coded:


dspace-parent
org.dspace
1.8.1
..


So for me I fixed the relative path and changed the version to 1.7.1, I then 
got build successful.

Thanks,
Ben

-Original Message-
From: helix84 [mailto:heli...@centrum.sk] 
Sent: July-10-12 4:22 AM
To: Hayden Young
Cc: dspace-tech@lists.sourceforge.net; DSpace Developer List
Subject: Re: [Dspace-tech] DSpace REST API

Hi Hayden,
I was trying to build it both as a webapp and as a module just to test it. Here 
are my notes and observations so far:

1) Here's what I got after I ran mvn package for the first time building as a 
webapp:

Downloading: 
http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
[INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in repository 
sakaiproject repository
(http://source.sakaiproject.org/maven2/)
Downloading: 
http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
8K downloaded  (dspace-api-1.8.1.pom)
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
636b downloaded  (entitybus-api-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
Checksum failed on download: local = 
'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote = 
'7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
636b downloaded  (entitybus-api-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
Checksum failed on download: local = 
'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote = 
'7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
2K downloaded  (entitybus-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 
'88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote = 
'5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
2K downloaded  (entitybus-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local = 
'88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote = 
'5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
955b downloaded  (entitybus-impl-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
Checksum failed on download: local = 
'c9b46df256025d1030549d7038d559733d4041d4'; remote = 
'76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
955b downloaded  (entitybus-impl-1.0.8.pom) [WARNING] *** CHECKSUM FAILED - 
Checksum failed on download: local = 
'c9b46df256025d1030549d7038d559733d4041d4'; remote = 
'76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
746b downloaded  (entitybus-utils-1.0.8.pom)

(It built correctly, I'm just pointing out the checksum mismatches)

2) When I tried to build it as a module (with DSpace git master branch), I got 
this:

[ERROR] FATAL ERROR
[INFO] 
[INFO] Error building POM (may not be this project's POM).


Project ID: org.dspace.modules:rest
POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
Validation Messages:

[0]  'dependencies.dependency.version' is missing for 
org.dspace:dspace-rest:war


Reason: Failed to validate POM for project org.dspace.modules:rest at 
/home/dspace/svn/DSpace/dspace/modules/rest/pom.xml


[INFO] 
[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Failed to validate POM for 
project org.dspace.modules:rest at 
/home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
at 
org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.codeh

Re: [Dspace-tech] [Dspace-devel] DSpace REST API

2012-07-10 Thread Steve Swinsburg
Which part of entitybroker/entitybus are you using that relies on the Sakai 
maven repo? I'm a Sakai developer and can get things squared away so the 
artifacts go to central instead. 

Cheers
Steve

Sent from my iPhone

On 10/07/2012, at 21:40, "Mark Diggory"  wrote:

> I will comment that we determined rather early that we want to
> "disentangle" ourselves fromt he SAKAI repositories.  It will be best
> not to bring this additional repository configuration into maven
> central.
> 
> 
> On Tue, Jul 10, 2012 at 12:21 PM, helix84  wrote:
>> Hi Hayden,
>> I was trying to build it both as a webapp and as a module just to test
>> it. Here are my notes and observations so far:
>> 
>> 1) Here's what I got after I ran mvn package for the first time
>> building as a webapp:
>> 
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
>> [INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in
>> repository sakaiproject repository
>> (http://source.sakaiproject.org/maven2/)
>> Downloading: 
>> http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
>> 8K downloaded  (dspace-api-1.8.1.pom)
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
>> 636b downloaded  (entitybus-api-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
>> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
>> 636b downloaded  (entitybus-api-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
>> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
>> 2K downloaded  (entitybus-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
>> '5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
>> 2K downloaded  (entitybus-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
>> '5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
>> 955b downloaded  (entitybus-impl-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
>> '76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
>> 955b downloaded  (entitybus-impl-1.0.8.pom)
>> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
>> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
>> '76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
>> Downloading: 
>> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
>> 746b downloaded  (entitybus-utils-1.0.8.pom)
>> 
>> (It built correctly, I'm just pointing out the checksum mismatches)
>> 
>> 2) When I tried to build it as a module (with DSpace git master
>> branch), I got this:
>> 
>> [ERROR] FATAL ERROR
>> [INFO] 
>> 
>> [INFO] Error building POM (may not be this project's POM).
>> 
>> 
>> Project ID: org.dspace.modules:rest
>> POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>> Validation Messages:
>> 
>>[0]  'dependencies.dependency.version' is missing for
>> org.dspace:dspace-rest:war
>> 
>> 
>> Reason: Failed to validate POM for project org.dspace.modules:rest at
>> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>> 
>> 
>> [INFO] 
>> 
>> [INFO] Trace
>> org.apache.maven.reactor.MavenExecutionException: Failed to validate
>> POM for project org.dspace.modules:rest at
>> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>>at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
>>at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
>>at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
>>at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
>>at 
>> org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
>>at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>at 
>> sun.reflect.NativeMethodAccessorImpl.

Re: [Dspace-tech] [Dspace-devel] DSpace REST API

2012-07-10 Thread Mark Diggory
I will comment that we determined rather early that we want to
"disentangle" ourselves fromt he SAKAI repositories.  It will be best
not to bring this additional repository configuration into maven
central.


On Tue, Jul 10, 2012 at 12:21 PM, helix84  wrote:
> Hi Hayden,
> I was trying to build it both as a webapp and as a module just to test
> it. Here are my notes and observations so far:
>
> 1) Here's what I got after I ran mvn package for the first time
> building as a webapp:
>
> Downloading: 
> http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> [INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in
> repository sakaiproject repository
> (http://source.sakaiproject.org/maven2/)
> Downloading: 
> http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
> 8K downloaded  (dspace-api-1.8.1.pom)
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
> 636b downloaded  (entitybus-api-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
> '7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
> '5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
> 2K downloaded  (entitybus-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> '88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
> '5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
> 955b downloaded  (entitybus-impl-1.0.8.pom)
> [WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
> 'c9b46df256025d1030549d7038d559733d4041d4'; remote =
> '76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
> Downloading: 
> http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
> 746b downloaded  (entitybus-utils-1.0.8.pom)
>
> (It built correctly, I'm just pointing out the checksum mismatches)
>
> 2) When I tried to build it as a module (with DSpace git master
> branch), I got this:
>
> [ERROR] FATAL ERROR
> [INFO] 
> 
> [INFO] Error building POM (may not be this project's POM).
>
>
> Project ID: org.dspace.modules:rest
> POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
> Validation Messages:
>
> [0]  'dependencies.dependency.version' is missing for
> org.dspace:dspace-rest:war
>
>
> Reason: Failed to validate POM for project org.dspace.modules:rest at
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
>
>
> [INFO] 
> 
> [INFO] Trace
> org.apache.maven.reactor.MavenExecutionException: Failed to validate
> POM for project org.dspace.modules:rest at
> /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
> at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
> at 
> org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:616)
> at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
> at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
> at 
> org.co

Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread helix84
Hi Hayden,
I was trying to build it both as a webapp and as a module just to test
it. Here are my notes and observations so far:

1) Here's what I got after I ran mvn package for the first time
building as a webapp:

Downloading: 
http://source.sakaiproject.org/maven2//org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
[INFO] Unable to find resource 'org.dspace:dspace-api:pom:1.8.1' in
repository sakaiproject repository
(http://source.sakaiproject.org/maven2/)
Downloading: 
http://repo1.maven.org/maven2/org/dspace/dspace-api/1.8.1/dspace-api-1.8.1.pom
8K downloaded  (dspace-api-1.8.1.pom)
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
636b downloaded  (entitybus-api-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
'7d1242d3a967c5291f1af8ea8501248a61ccda6c' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-api/1.0.8/entitybus-api-1.0.8.pom
636b downloaded  (entitybus-api-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'b66699e72d4c9e4203ec8b9ae7a0a7877a64680a'; remote =
'7d1242d3a967c5291f1af8ea8501248a61ccda6c' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
2K downloaded  (entitybus-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
'5455299acc1383eac8c19391da3ea7624470dc24' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/1.0.8/entitybus-1.0.8.pom
2K downloaded  (entitybus-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'88beff8c430ca7e9de493ba8da1435c2f0816fb6'; remote =
'5455299acc1383eac8c19391da3ea7624470dc24' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
955b downloaded  (entitybus-impl-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'c9b46df256025d1030549d7038d559733d4041d4'; remote =
'76f6e7c61a137b830fdb2334bd4030df237434ef' - RETRYING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-impl/1.0.8/entitybus-impl-1.0.8.pom
955b downloaded  (entitybus-impl-1.0.8.pom)
[WARNING] *** CHECKSUM FAILED - Checksum failed on download: local =
'c9b46df256025d1030549d7038d559733d4041d4'; remote =
'76f6e7c61a137b830fdb2334bd4030df237434ef' - IGNORING
Downloading: 
http://source.sakaiproject.org/maven2//org/sakaiproject/entitybus/entitybus-utils/1.0.8/entitybus-utils-1.0.8.pom
746b downloaded  (entitybus-utils-1.0.8.pom)

(It built correctly, I'm just pointing out the checksum mismatches)

2) When I tried to build it as a module (with DSpace git master
branch), I got this:

[ERROR] FATAL ERROR
[INFO] 
[INFO] Error building POM (may not be this project's POM).


Project ID: org.dspace.modules:rest
POM Location: /home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
Validation Messages:

[0]  'dependencies.dependency.version' is missing for
org.dspace:dspace-rest:war


Reason: Failed to validate POM for project org.dspace.modules:rest at
/home/dspace/svn/DSpace/dspace/modules/rest/pom.xml


[INFO] 
[INFO] Trace
org.apache.maven.reactor.MavenExecutionException: Failed to validate
POM for project org.dspace.modules:rest at
/home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
at org.apache.maven.DefaultMaven.getProjects(DefaultMaven.java:404)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:272)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:138)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:362)
at 
org.apache.maven.cli.compat.CompatibleMain.main(CompatibleMain.java:60)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.project.InvalidProjectModelException:
Failed to validate POM for project org.dspace.modules:rest at
/home/dspace/svn/DSpace/dspace/modules/rest/pom.xml
at 
org.apache.maven.project.DefaultMavenProjectBuilder.processProjectLogic(DefaultMavenProjectBuilder.java:1077)
at 
org

Re: [Dspace-tech] DSpace REST API

2012-07-10 Thread Mark Diggory
Hayden,

Its excellent that your bringing this forward now. Can you itemize the
enhancements you've made over the original REST interface? Or
alternatively, it would be part of the contribution process to
complete the following:

For contribution, it would be ideal if you were to

1.) fork the original repository

https://github.com/DSpace/dspace-rest

2.) layer your changes on top of it in a working branch

and

3.) Provide a Pull Request back to the dspace rest repository master branch

Then we can discuss the new features in context of codebase directly.
Switch over to the dev list or JIRA issues if you want to advisement
during this process.

Best Regards,
Mark

On Tue, Jul 10, 2012 at 2:55 AM, Gary Browne  wrote:
>
> Hi Hayden,
>
> I'm keen to try this out, however I am unable to install it - should it run 
> ok on 1.8.2?
>
> On building (mvn package), I get the following error:
>
> [INFO] Unable to find resource 'org.dspace:dspace-rest:war:1.0' in repository 
> central (http://repo1.maven.org/maven2)
> [INFO] 
> 
> [ERROR] BUILD ERROR
> [INFO] 
> 
> [INFO] Failed to resolve artifact.
>
> Missing:
> --
> 1) org.dspace:dspace-rest:war:1.0
>
>   Try downloading the file manually from the project website.
>
>   Then, install it using the command:
>   mvn install:install-file -DgroupId=org.dspace -DartifactId=dspace-rest 
> -Dversion=1.0 -Dpackaging=war -Dfile=/path/to/file
>
>   Alternatively, if you host your own repository you can deploy the file 
> there:
>   mvn deploy:deploy-file -DgroupId=org.dspace -DartifactId=dspace-rest 
> -Dversion=1.0 -Dpackaging=war -Dfile=/path/to/file -Durl=[url] 
> -DrepositoryId=[id]
>
>   Path to dependency:
> 1) org.dspace.modules:rest:war:1.8.1
> 2) org.dspace:dspace-rest:war:1.0
>
> --
> 1 required artifact is missing.
>
> for artifact:
>   org.dspace.modules:rest:war:1.8.1
>
> from the specified remote repositories:
>   central (http://repo1.maven.org/maven2),
>   sonatype-nexus-snapshots 
> (https://oss.sonatype.org/content/repositories/snapshots)
>
> I'm not clear on what I should do next, are you able to help please?
>
> Thanks a lot,
> Gary
>
> > -Original Message-
> > From: Hayden Young [mailto:haydenyo...@wijiti.com]
> > Sent: Tuesday, 10 July 2012 5:32 AM
> > To: dspace-tech@lists.sourceforge.net; DSpace Developer List
> > Subject: [Dspace-tech] DSpace REST API
> >
> > After several months of development, Wijiti is pleased to contribute this
> > reworked version of the REST API for DSpace 1.8.x.
> >
> > Details and documentation are available at https://jspace.atlassian.net/ and
> > all code is freely available via Github, the link of which is in the
> > documentation.
> >
> > Enjoy.
> >
> > --
> > Hayden Young
> > Managing Director
> > Wijiti Pty Ltd
> > p. +61 (0) 8 6398 5010
> > e. haydenyo...@wijiti.com
> > w. www.wijiti.com
> > vcard. www.wijiti.com/vcard/haydenyoung.vcf
> >
> > NOTICE
> > This e-mail and any attachments are intended for the addressee(s) only and
> > may be confidential. They may contain legally privileged or copyright
> > material. You should not read, copy, use or disclose them without
> > authorization. If you are not the intended recipient please contact the
> > sender as soon as possible by return e-mail and then please delete both
> > messages. This notice should not be removed.
> >
> >
> > --
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and threat
> > landscape has changed and how IT managers can respond. Discussions will
> > include endpoint security, mobile security and the latest in malware 
> > threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > ___
> > DSpace-tech mailing list
> > DSpace-tech@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
> --
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech




--

Mark Diggory (Schedule a Meeting)
2888 Loker Avenue East, Suite 305, Carlsbad, CA. 92010
Esperantolaan 4, Heverlee 3001, Belgium
http://www.atmire.com

--
Live Security Virtual Conference
Exclusive live event will cover 

Re: [Dspace-tech] How to set up dspace

2012-07-10 Thread Lighton Phiri
That indicates where you want to install DSpace. By default it will be 
installed in C:\DSpace if you leave the dspace.dir value to be 
${default.dspace.dir}. However, if you want to change the location, you 
specify that location by changing the path seperators to forward slashes.



e.g. if you wanted to install DSpace to C:\Program Files\DSpace, you 
would have to edit dspace.cfg file with details show below in line 25 and 26


22 # Basic information ##
23
24 # DSpace installation directory
25 # dspace.dir = ${default.dspace.dir}
26 dspace.dir = C:/Program Files/DSpace

Lighton Phiri
http://lightonphiri.org

On 10/07/2012 12:29, seun olotu wrote:

Thanks.I'm actually at step 3 under window installation
3.Update paths in /[dspace-source]\dspace\config\dspace.cfg/

  * *Note:* Use forward slashes /// for path separators, though
you can still use drive letters, e.g.: /dspace.dir =
C:/DSpace/ Also, make sure you change all of the parameters
with file paths to suit, specifically:
? 
|dspace.dir |
|config.template.log4j.properties |
|config.template.log4j-handle-plugin.properties |
|config.template.oaicat.properties |
|assetstore.dir |
|log.dir |
|upload.temp.dir |
|report.dir |
|handle.dir|

*Where(command prompt or ..) and how do I achieve this?*

Obasola Oluwaseun
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com
olas...@com.ui.edu.ng
Phone: +2348033517020
http://www.comui.edu.ng/Odeku

--- On *Tue, 7/10/12, Lighton Phiri
//* wrote:


From: Lighton Phiri 
Subject: Re: [Dspace-tech] How to set up dspace
To: "seun olotu" 
Cc: dspace-tech@lists.sourceforge.net
Date: Tuesday, July 10, 2012, 3:15 AM

The wiki has a very comprehensive set of instructions.

Unix-like:

https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationInstructions
Windows:

https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationSteps

Lighton Phiri
http://lightonphiri.org  
  


On 10/07/2012 12:09, seun olotu wrote:

Hi ,
I have downloaded all the prequisite software and my postgreSQL
pgadmin111 is up already.How do I install Dspace?

Obasola Oluwaseun
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com

olas...@com.ui.edu.ng

Phone: +2348033517020
http://www.comui.edu.ng/Odeku




--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats.http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/


___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net  

https://lists.sourceforge.net/lists/listinfo/dspace-tech






--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to set up dspace

2012-07-10 Thread seun olotu
Thanks.I'm actually at step 3 under window installation
 
3.Update paths in [dspace-source]\dspace\config\dspace.cfg 


Note: Use forward slashes / for path separators, though you can still use drive 
letters, e.g.: dspace.dir = C:/DSpace Also, make sure you change all of the 
parameters with file paths to suit, specifically: 




?





dspace.dir 
config.template.log4j.properties 
config.template.log4j-handle-plugin.properties 
config.template.oaicat.properties 
assetstore.dir 
log.dir 
upload.temp.dir 
report.dir 
handle.dirWhere(command prompt or ..) and how do I achieve this?

Obasola Oluwaseun 
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com
olas...@com.ui.edu.ng
Phone: +2348033517020
http://www.comui.edu.ng/Odeku

--- On Tue, 7/10/12, Lighton Phiri  wrote:


From: Lighton Phiri 
Subject: Re: [Dspace-tech] How to set up dspace
To: "seun olotu" 
Cc: dspace-tech@lists.sourceforge.net
Date: Tuesday, July 10, 2012, 3:15 AM




The wiki has a very comprehensive set of instructions.

Unix-like: 
https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationInstructions
Windows: 
https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationSteps

Lighton Phiri
http://lightonphiri.org
 On 10/07/2012 12:09, seun olotu wrote:






Hi ,
I have downloaded all the prequisite software and my postgreSQL
pgadmin111 is up already.How do I install Dspace?

Obasola Oluwaseun 
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com
olas...@com.ui.edu.ng
Phone: +2348033517020
http://www.comui.edu.ng/Odeku

 
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/

 
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] How to set up dspace

2012-07-10 Thread Lighton Phiri

The wiki has a very comprehensive set of instructions.

Unix-like: 
https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationInstructions
Windows: 
https://wiki.duraspace.org/display/DSDOC18/Installation#Installation-InstallationSteps


Lighton Phiri
http://lightonphiri.org
 


On 10/07/2012 12:09, seun olotu wrote:

Hi ,
I have downloaded all the prequisite software and my postgreSQL
pgadmin111 is up already.How do I install Dspace?

Obasola Oluwaseun
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com
olas...@com.ui.edu.ng
Phone: +2348033517020
http://www.comui.edu.ng/Odeku



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/


___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] How to set up dspace

2012-07-10 Thread seun olotu
Hi ,
I have downloaded all the prequisite software and my postgreSQL
pgadmin111 is up already.How do I install Dspace?

Obasola Oluwaseun 
Systems/Serials Librarian
E.Latunde Odeku Medical Library
College of Medicine,University of Ibadan
Ibadan,Oyo state, Nigeria.
email:olas...@yahoo.com
olas...@com.ui.edu.ng
Phone: +2348033517020
http://www.comui.edu.ng/Odeku--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech