[Dspace-tech] LNI

2014-07-31 Thread bender
I've been investigating LNI interface to see if we can take advantage of it in some way. But the documentation is still very cryptic to my understand. What benefits could get with LNI? How can we make it work? I found this page with information about Dspace LNI: https://wiki.duraspace.org/display/

[Dspace-tech] LNI on DSpace

2008-07-28 Thread Luis Saraiva
Hello i'm using LNI Simple Client application in order to submit items from a DSpace SIP to to dspace repository. While building a MODS file in order to submit some Metadata to the item, i have found an error. My mets/mods file: String xml = "" +"" + "

Re: [Dspace-tech] LNI Webservice & workflow

2009-03-23 Thread Kasthuri, Sriram
Hello All, I recently applied the workflow and the embargo patch to our dspace instance (1.4 version) and able to test the functionalities when I use the standard input forms supported by DSapce to upload an item. But I face some issues when I try to publish an item from another dsapce instanc

Re: [Dspace-tech] LNI Webservice & workflow

2009-04-15 Thread Kasthuri, Sriram
Hello guys, Anyone used LNI for item stubmission from external system and Workflow configuration together?. I'm not able to publish items using the LNI Webservice if I configure worlflow configuration in the receiver dspace instance. Can anyone hint me whether the above combination is possible.

[Dspace-tech] LNI on DSpace 1.5

2008-07-02 Thread Luis Saraiva
Hello Can anyone tell me how do i install LNI (LeightWeightNetworkInterface) on DSpace 1.5, and then deploy it to Tomcat's webapps directory ? I have read the the documentation about this on the wiki but i'm having some problems... Can anyone help me ? Best regards Guilherme

Re: [Dspace-tech] LNI on DSpace

2008-07-28 Thread Kasthuri, Sriram
ingest xml. -Sri From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Luis Saraiva Sent: 28 July 2008 15:47 To: dspace-tech@lists.sourceforge.net Subject: [Dspace-tech] LNI on DSpace Hello i'm using LNI Simple Client application in order to submit items from a

Re: [Dspace-tech] LNI on DSpace

2008-07-28 Thread Mark Diggory
This issue reflects a rather unfortunate issue with the mods- submission crosswalk and its rather poor coding regarding allowing any "qualifier" into the metadata even if it is not in the metadata field table for that schema. I.E. dc.contributor.creator does not exist (nor should it in the d

[Dspace-tech] LNI for DSpace 1.5.1

2009-02-16 Thread Luis Galárraga
Dear developers: My name is Luis Galárraga and I am the author and leader developer of the project J!Research (http://joomla-research.com), a Joomla extension aimed to organize research related work like publications, projects and degree theses. The department where I work (http://cti.espol.edu.ec

[Dspace-tech] LNI/WebDAV : GET returns 501

2008-05-29 Thread Rick Runyan
I've finally figured out how to hook up a .NET app to LNI and am running some exploratory tests, using straight HTTP/DAV rather than SOAP. Alas, GET doesn't seem to work. I've done a propfind call to get URIs for the bitstreams in a collection, but when I try to GET one of them, I get Syste

Re: [Dspace-tech] LNI on DSpace 1.5

2008-07-02 Thread Larry Stone
> Can anyone tell me how do i install LNI (LeightWeightNetworkInterface) on D= Space 1.5=2C and then deploy it to Tomcat's webapps directory ? In release 1.5, the LNI webapp gets built by default (at least in the "binary" release 1.5 i'm using); you just copy or link the directory [dspace]/webapps

Re: [Dspace-tech] LNI/WebDAV : GET returns 501

2008-05-29 Thread Larry Stone
GET only works on Items and Bitstreams, so if you get the resource path to a Bitstream from PROPFIND (depth=1) on an Item, then you ought to be able to do a GET on it and receive its contents. This path looks like you've traversed some communities and collections: > http://[server]:8080/lni/dav/d

Re: [Dspace-tech] LNI/WebDAV : GET returns 501

2008-06-02 Thread Rick Runyan
essage and try again. - Rick -Original Message- From: Larry Stone [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2008 4:54 PM To: Rick Runyan Cc: dspace-tech@lists.sourceforge.net Subject: Re: [Dspace-tech] LNI/WebDAV : GET returns 501 GET only works on Items and Bitstreams, so if you get th

Re: [Dspace-tech] LNI/WebDAV : GET returns 501

2008-06-02 Thread Larry Stone
You can see how the lookup feature works by using a simple HTTP client like the GNU "wget" application to do a GET, and reading its diagnostic output.. for example, this does a lookup of handle 123456789/1 using HTTP Basic authentication to login (assuming you have username/password login on your s

Re: [Dspace-tech] LNI/WebDAV : GET returns 501

2008-06-03 Thread Rick Runyan
om: Larry Stone [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2008 1:00 AM To: Rick Runyan Cc: dspace-tech@lists.sourceforge.net Subject: RE: [Dspace-tech] LNI/WebDAV : GET returns 501 You can see how the lookup feature works by using a simple HTTP client like the GNU "wget" application to

[Dspace-tech] LNI - no index.html; "The requested resource (/lni/) is not available"

2008-05-16 Thread Rick Runyan
lni is right there in the Tomcat webapps folder right beside xmlui, which works like a champ. I'm not experienced with web apps, and even less so with java web apps, so I'm at something of a loss here. I've spent a while reading and trying to figure out the problem, with not much success. Mostly

Re: [Dspace-tech] LNI - no index.html; "The requested resource (/lni/) is not available"

2008-05-16 Thread Mark Diggory
not elegant or intuitive... http:///lni/lni And you need the client to interact because it requires POST. -Mark On May 16, 2008, at 12:52 PM, Rick Runyan wrote: > lni is right there in the Tomcat webapps folder right beside xmlui, > which works like a champ. I’m not experienced with web app

Re: [Dspace-tech] LNI - no index.html; "The requested resource (/lni/) is not available"

2008-05-16 Thread Larry Stone
Actually, it responds to GET on some URIs, but the LNI is *not* meant to be used as an interactive web site; it is a WebDAV server. WebDAV happens to use the HTTP protocol but not in a way that gets along with the subset (and perversions) of HTTP most browsers speak. It also has some ability to con

Re: [Dspace-tech] LNI - no index.html; "The requested resource (/lni/) is not available"

2008-05-17 Thread Mark Diggory
On May 16, 2008, at 4:37 PM, Larry Stone wrote: > Actually, it responds to GET on some URIs, but the LNI is *not* > meant to be used as an interactive web site; it is a WebDAV server. > WebDAV happens to use the HTTP protocol but not in a way that gets > along > with the subset (and perversions