Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-30 Thread Donald Bynum
Tim,

That was it.  Just made those two updates and rebuilt.  All looks good 
again.

Thank you for your assistance with this.  Very much appreciated.

-Don.

On Monday, January 29, 2018 at 3:15:21 PM UTC-5, Tim Donohue wrote:
>
> Hi Don,
>
> This stacktrace tells me that the issue you are having is *not* the same 
> as the issue that Francis is happening (despite the similar error 
> messages). 
>
> Based on the error stack below, the error you  see is coming from the 
> "EPerson.searchResultCount()" method, specifically the SQL on this line:
>
> https://github.com/DSpace/DSpace/blob/dspace-5_x/dspace-api/src/main/java/org/dspace/eperson/EPerson.java#L438
>  
>
> However, the error reported by Francis (and described in DS-3649: 
> https://jira.duraspace.org/browse/DS-3649), was coming from the 
> "EPerson.findAll()" method on this line: 
> https://github.com/DSpace/DSpace/blob/dspace-5_x/dspace-api/src/main/java/org/dspace/eperson/EPerson.java#L518
>
> So, I'm not surprised that the fix Tom provided won't work on your system. 
> As it is fixing the latter method, and not the former one.
>
> It looks to me like your error is resulting from a similar/related problem 
> though, that a CLOB data type cannot be used in "comparison conditions" 
> [1], and the SQL in that "searchResultCount()" method uses LOWER() on a 
> CLOB data type.
>
> So, I think, based on Tom's previous recommendation, you'd need to replace 
> the "text_value" fields with "dbms_lob.substr(text_value, 0, 4000)" on 
> these two lines:
> * Select statement here: 
> https://github.com/DSpace/DSpace/blob/dspace-5.5/dspace-api/src/main/java/org/dspace/eperson/EPerson.java#L441
> * And select statement here: 
> https://github.com/DSpace/DSpace/blob/dspace-5.5/dspace-api/src/main/java/org/dspace/eperson/EPerson.java#L442
>  
>
> That's my best guess here. It sounds to me like we need to take a closer 
> look at *all* the methods in this EPerson class, and ensure they are 
> updated similarly.
>
> - Tim
>
> [1] 
> https://docs.oracle.com/cd/B19306_01/server.102/b14200/conditions002.htm
>
>
> On Fri, Jan 26, 2018 at 1:05 PM Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> I made the change as suggested.  Did a rebuild.  That resulted in a new 
>> additions-5.5.jar (which makes sense since the updated java module was in 
>> additions.  Same error.  Here is the log entry (sorry it so lengthy):
>>
>> 2018-01-26 13:55:13,555 ERROR org.dspace.storage.rdbms.DatabaseManager @ 
>> SQL query single Error - 
>> java.sql.SQLSyntaxErrorException: ORA-00932: inconsistent datatypes: 
>> expected - got CLOB
>>  at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
>>  at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
>>  at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:951)
>>  at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:513)
>>  at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:227)
>>  at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
>>  at 
>> oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:208)
>>  at 
>> oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:886)
>>  at 
>> oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1175)
>>  at 
>> oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1296)
>>  at 
>> oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3613)
>>  at 
>> oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3657)
>>  at 
>> oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1495)
>>  at 
>> org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:96)
>>  at 
>> org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:96)
>>  at 
>> org.apache.commons.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:96)
>>  at 
>> org.dspace.storage.rdbms.DatabaseManager.query(DatabaseManager.java:295)
>>  at 
>> org.dspace.storage.rdbms.DatabaseManager.querySingle(DatabaseManager.java:342)
>>  at org.dspace.eperson.EPerson.searchResultCount(EPerson.java:438)
>>  at 
>> org.dspace.app.xmlui.aspect.administrative.eperson.ManageEPeopleMain.addBody(ManageEPeopleMain.java:118)
>>  at 
>> org.dspace.app.xmlui.wing.AbstractWingTransformer.startElement(AbstractWingTransformer.java:223)
>>  at sun

Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-26 Thread Donald Bynum
)
 at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
 at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
 at com.sun.proxy.$Proxy96.service(Unknown Source)
 at org.dspace.springmvc.CocoonView.render(CocoonView.java:113)
 at 
org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1180)
 at 
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:950)
 at 
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
 at 
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
 at 
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:778)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at 
org.dspace.app.xmlui.cocoon.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:111)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at 
org.dspace.app.xmlui.cocoon.DSpaceCocoonServletFilter.doFilter(DSpaceCocoonServletFilter.java:274)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at 
org.dspace.app.xmlui.cocoon.servlet.multipart.DSpaceMultipartFilter.doFilter(DSpaceMultipartFilter.java:119)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at 
org.dspace.utils.servlet.DSpaceWebappServletFilter.doFilter(DSpaceWebappServletFilter.java:78)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
 at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
 at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:108)
 at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:522)
 at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
 at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
 at 
org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:620)
 at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
 at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
 at 
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:1110)
 at 
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
 at 
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:785)
 at 
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1425)
 at 
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
 at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
 at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
 at 
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
 at java.lang.Thread.run(Thread.java:748)

-Don

On Friday, January 26, 2018 at 9:53:36 AM UTC-5, Tim Donohue wrote:

> Hi Don, Tom & Francis,
>
> I notice the code that Tom mentions patching in EPerson.java didn't appear 
> until DSpace 5.6. It was applied in this PR: 
> https://github.com/DSpace/DSpace/pull/1229
>
> Don, you mentioned you are running DSpace 5.5. So, this has got me 
> wondering if the problem you are seeing is actually the same one as 
> Francis, or something different (but similar in nature)?
>
> That might explain why this patch works for Francis (who is running 5.6), 
> but not for Don.
>
> Don, could you perhaps share a more complete error stacktrace (from the 
> logs) for the "ORA-00932: inconsistent datatypes: expected - got CLOB 
> " message you are seeing?  It's always possible this is happening in 
> different scenarios in DSpace 5.5 vs 5.6. 
>
> - Tim
>
> On Thu, Jan 25, 2018 at 2:28 PM Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> I cop

Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-26 Thread Donald Bynum
I have a new additions-5.5jar but not a new dspace-api-5.5.jar

-Don

On Friday, January 26, 2018 at 4:25:16 AM UTC-5, Francis Brouns wrote:

> Hi Don,
>
> In your [dspace]/lib directory you should see a new dspace-api-56.jar. 
> Look at the date.
>
> I have never used this additions directory. I merely edited the 
> eperson.java in the sources directory. To compile and build the other 
> services, you need to run mvn -Ddb.name=oracle -U clean package from the 
> [dspace-source] directory to compile the dspace-api and not from the 
> [dspace-source]/dspace directory before running the ant update script.
>
>
> Hope this helps,
>
> best
>
>
> On Thursday, 25 January 2018 21:28:29 UTC+1, Donald Bynum wrote:
>>
>> I copied the EPerson.java to 
>> dspace\modules\additions\src\main\java\org\dspace\eperson (I had ti create 
>> the additions folder) and rebuilt.  Still not good.  How can I be sure that 
>> the new java class exists?  meaning, where can I look to make sure that the 
>> newly compiled class is in place?  I am going to try one other thing.  But 
>> would appreciate any further guidance you can give me.
>>
>> -Don
>>
>> On Wednesday, January 24, 2018 at 5:29:44 AM UTC-5, Tom Desair (Atmire) 
>> wrote:
>>
>>> Hi Francis,
>>>
>>> That's good news! Thanks for testing and your feedback. I hope that this 
>>> workaround then also works for Don. 
>>>
>>> Best regards,
>>> Tom
>>>  
>>> [image: logo] Tom Desair
>>> 250-B Suite 3A, Lucius Gordon Drive, West Henrietta, NY 14586
>>> Gaston Geenslaan 14, Leuven 3001, Belgium
>>> www.atmire.com 
>>> <http://atmire.com/website/?q=services_source=emailfooter_medium=email_campaign=tomdesair>
>>>
>>> On Wednesday, January 24, 2018 at 11:22:40 AM UTC+1, Francis Brouns 
>>> wrote:
>>>>
>>>> Dear Tom,
>>>>
>>>> this workaround seems to work by changing m.text_value in line 502 and 
>>>> line 510 in EPerson.java for Dspace release 5.6. The error no longer 
>>>> occurs 
>>>> when selecting epersons or trying to add epersons to a group.
>>>>
>>>> case LANGUAGE:
>>>> s = "m.text_value";
>>>> t = "language";
>>>> break;
>>>>
>>>>
>>>> default:
>>>> s = "m.text_value";
>>>> t = "lastname";
>>>>
>>>>
>>>> 2018-01-24 11:14:49,448 DEBUG org.dspace.storage.rdbms.DatabaseManager 
>>>> @ Running query "SELECT * FROM eperson e LEFT JOIN metadatavalue m on 
>>>> (m.resource_id = e.eperson_id and m.resource_type_id = ? and 
>>>> m.metadata_field_id = ?) ORDER BY dbms_lob.substr(m.text_value,0,4000)"  
>>>> with parameters: 7,125
>>>>
>>>> I'll try this in  release 5.8 as well and see if we can proceed with 
>>>> the upgrade.
>>>>
>>>> Thanks for now.
>>>> Francis Brouns
>>>> Open Universiteit
>>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-25 Thread Donald Bynum
I copied the EPerson.java to 
dspace\modules\additions\src\main\java\org\dspace\eperson (I had ti create 
the additions folder) and rebuilt.  Still not good.  How can I be sure that 
the new java class exists?  meaning, where can I look to make sure that the 
newly compiled class is in place?  I am going to try one other thing.  But 
would appreciate any further guidance you can give me.

-Don

On Wednesday, January 24, 2018 at 5:29:44 AM UTC-5, Tom Desair (Atmire) 
wrote:

> Hi Francis,
>
> That's good news! Thanks for testing and your feedback. I hope that this 
> workaround then also works for Don. 
>
> Best regards,
> Tom
>  
> [image: logo] Tom Desair
> 250-B Suite 3A, Lucius Gordon Drive, West Henrietta, NY 14586
> Gaston Geenslaan 14, Leuven 3001, Belgium
> www.atmire.com 
> 
>
> On Wednesday, January 24, 2018 at 11:22:40 AM UTC+1, Francis Brouns wrote:
>>
>> Dear Tom,
>>
>> this workaround seems to work by changing m.text_value in line 502 and 
>> line 510 in EPerson.java for Dspace release 5.6. The error no longer occurs 
>> when selecting epersons or trying to add epersons to a group.
>>
>> case LANGUAGE:
>> s = "m.text_value";
>> t = "language";
>> break;
>>
>>
>> default:
>> s = "m.text_value";
>> t = "lastname";
>>
>>
>> 2018-01-24 11:14:49,448 DEBUG org.dspace.storage.rdbms.DatabaseManager @ 
>> Running query "SELECT * FROM eperson e LEFT JOIN metadatavalue m on 
>> (m.resource_id = e.eperson_id and m.resource_type_id = ? and 
>> m.metadata_field_id = ?) ORDER BY dbms_lob.substr(m.text_value,0,4000)"  
>> with parameters: 7,125
>>
>> I'll try this in  release 5.8 as well and see if we can proceed with the 
>> upgrade.
>>
>> Thanks for now.
>> Francis Brouns
>> Open Universiteit
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-23 Thread Donald Bynum
Tom,

In my version of EPerson.java there are two occurrences of "m_text_value" 
rather then "m.text_value" as you suggested and which is also in the github 
repository.  That seems odd to me.  Any thoughts on that?  I will go ahead 
and do the suggested substitution on those two lines all the same.

For reference, my original codefile is dated 3/21/2016

-Don.

On Tuesday, January 23, 2018 at 11:05:37 AM UTC-5, Tom Desair (Atmire) 
wrote:
>
> Hi Don,
>
> We're discussing a permanent fix in this ticket 
> https://jira.duraspace.org/browse/DS-3649
>
> But as a temporary workaround for you, can you try this:
>
> In file EPerson.java (
> https://github.com/dspace/DSpace/blob/dspace-5_x/dspace-api/src/main/java/org/dspace/eperson/EPerson.java#L535),
>  
> replace each occurrence of "m.text_value" by "dbms_lob.substr(m.text_value, 
> 0, 4000)".
>
> If you do not have a "dspace-api" directory, please copy the EPerson.java 
> file to 
> dspace/modules/additions/src/main/java/org/dspace/eperson/EPerson.java and 
> execute the replace there.
>
> Does this prevent the error? Note that this is only a temporary workaround 
> for people using Oracle.
>
> Best regards,
> Tom
>
>  
> [image: logo] Tom Desair
> 250-B Suite 3A, Lucius Gordon Drive, West Henrietta, NY 14586
> Gaston Geenslaan 14, Leuven 3001, Belgium
> www.atmire.com 
> <http://atmire.com/website/?q=services_source=emailfooter_medium=email_campaign=tomdesair>
>
> 2018-01-23 16:44 GMT+01:00 Donald Bynum <byn...@gmail.com >:
>
>> Verified that the issue exists in my dev environment as well as 
>> production.  Running Oracle 12.2.  Is there any workaround available for 
>> this.  Cannot add people to groups, cannot manage eperson records.
>>
>> -Don.
>>
>>
>> On Monday, January 22, 2018 at 3:57:33 PM UTC-5, Donald Bynum wrote:
>>>
>>> No database changes have been made for the longest time.  Definitely no 
>>> code changes.  I will test in my dev environment tomorrow.  I also have a 
>>> dev DB instance and will play around with combinations and see if there is 
>>> any pointers.  Either way, I'm a bit dead in the water without being able 
>>> to maintain groups/etc.
>>>
>>> -Don.
>>>
>>> On Monday, January 22, 2018 at 2:36:33 PM UTC-5, Tim Donohue wrote:
>>>>
>>>> Hi Don,
>>>>
>>>> This error sounds similar to this reported issue:
>>>>
>>>> https://jira.duraspace.org/browse/DS-3649
>>>>
>>>> However, in this situation the error was said to start with version 
>>>> 5.6, not version 5.5. Looking at the ticket again, it looks like we don't 
>>>> yet have a solution.  But, maybe it'll give you (or others reading this) 
>>>> hints as to what might be happening.
>>>>
>>>> - Tim
>>>>
>>>> On Mon, Jan 22, 2018 at 12:46 PM Donald Bynum <byn...@gmail.com> wrote:
>>>>
>>>>> I am running DSpace 5.5 with XMLUI and Oracle.  I have been running 
>>>>> just fine for a long time.  Today I went to add a new collection and edit 
>>>>> some groups.  When I click on Add eperson (or for that matter the eperson 
>>>>> link on the admin page) I get an Oracle error:
>>>>>
>>>>> oracle - ORA-00932: inconsistent datatypes: expected - got CLOB
>>>>>
>>>>> I have no idea what might have changed, given that any changes would 
>>>>> have been done by me.  Guessing that something at the data layer has been 
>>>>> corrupted in some way.  Can anyone provide some insight/assistance.
>>>>>
>>>>> Best regards,
>>>>>
>>>>> Don Bynum
>>>>>
>>>>> -- 
>>>>> You received this message because you are subscribed to the Google 
>>>>> Groups "DSpace Technical Support" group.
>>>>> To unsubscribe from this group and stop receiving emails from it, send 
>>>>> an email to dspace-tech...@googlegroups.com.
>>>>> To post to this group, send email to dspac...@googlegroups.com.
>>>>> Visit this group at https://groups.google.com/group/dspace-tech.
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>>
>>>> -- 
>>>> Tim Donohue
>>>> Technical Lead for DSpace & DSpaceDirect
>>>> DuraSpace.org | DSpace.org | DSpaceDirect.org
>>>>
>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-23 Thread Donald Bynum
Verified that the issue exists in my dev environment as well as 
production.  Running Oracle 12.2.  Is there any workaround available for 
this.  Cannot add people to groups, cannot manage eperson records.

-Don.

On Monday, January 22, 2018 at 3:57:33 PM UTC-5, Donald Bynum wrote:
>
> No database changes have been made for the longest time.  Definitely no 
> code changes.  I will test in my dev environment tomorrow.  I also have a 
> dev DB instance and will play around with combinations and see if there is 
> any pointers.  Either way, I'm a bit dead in the water without being able 
> to maintain groups/etc.
>
> -Don.
>
> On Monday, January 22, 2018 at 2:36:33 PM UTC-5, Tim Donohue wrote:
>>
>> Hi Don,
>>
>> This error sounds similar to this reported issue:
>>
>> https://jira.duraspace.org/browse/DS-3649
>>
>> However, in this situation the error was said to start with version 5.6, 
>> not version 5.5. Looking at the ticket again, it looks like we don't yet 
>> have a solution.  But, maybe it'll give you (or others reading this) hints 
>> as to what might be happening.
>>
>> - Tim
>>
>> On Mon, Jan 22, 2018 at 12:46 PM Donald Bynum <byn...@gmail.com> wrote:
>>
>>> I am running DSpace 5.5 with XMLUI and Oracle.  I have been running just 
>>> fine for a long time.  Today I went to add a new collection and edit some 
>>> groups.  When I click on Add eperson (or for that matter the eperson link 
>>> on the admin page) I get an Oracle error:
>>>
>>> oracle - ORA-00932: inconsistent datatypes: expected - got CLOB
>>>
>>> I have no idea what might have changed, given that any changes would 
>>> have been done by me.  Guessing that something at the data layer has been 
>>> corrupted in some way.  Can anyone provide some insight/assistance.
>>>
>>> Best regards,
>>>
>>> Don Bynum
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "DSpace Technical Support" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to dspace-tech...@googlegroups.com.
>>> To post to this group, send email to dspac...@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/dspace-tech.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>> -- 
>> Tim Donohue
>> Technical Lead for DSpace & DSpaceDirect
>> DuraSpace.org | DSpace.org | DSpaceDirect.org
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-22 Thread Donald Bynum
No database changes have been made for the longest time.  Definitely no 
code changes.  I will test in my dev environment tomorrow.  I also have a 
dev DB instance and will play around with combinations and see if there is 
any pointers.  Either way, I'm a bit dead in the water without being able 
to maintain groups/etc.

-Don.

On Monday, January 22, 2018 at 2:36:33 PM UTC-5, Tim Donohue wrote:
>
> Hi Don,
>
> This error sounds similar to this reported issue:
>
> https://jira.duraspace.org/browse/DS-3649
>
> However, in this situation the error was said to start with version 5.6, 
> not version 5.5. Looking at the ticket again, it looks like we don't yet 
> have a solution.  But, maybe it'll give you (or others reading this) hints 
> as to what might be happening.
>
> - Tim
>
> On Mon, Jan 22, 2018 at 12:46 PM Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> I am running DSpace 5.5 with XMLUI and Oracle.  I have been running just 
>> fine for a long time.  Today I went to add a new collection and edit some 
>> groups.  When I click on Add eperson (or for that matter the eperson link 
>> on the admin page) I get an Oracle error:
>>
>> oracle - ORA-00932: inconsistent datatypes: expected - got CLOB
>>
>> I have no idea what might have changed, given that any changes would have 
>> been done by me.  Guessing that something at the data layer has been 
>> corrupted in some way.  Can anyone provide some insight/assistance.
>>
>> Best regards,
>>
>> Don Bynum
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> -- 
> Tim Donohue
> Technical Lead for DSpace & DSpaceDirect
> DuraSpace.org | DSpace.org | DSpaceDirect.org
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Database error when trying to edit epersons (oracle - ORA-00932: inconsistent datatypes: expected -

2018-01-22 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Oracle.  I have been running just 
fine for a long time.  Today I went to add a new collection and edit some 
groups.  When I click on Add eperson (or for that matter the eperson link 
on the admin page) I get an Oracle error:

oracle - ORA-00932: inconsistent datatypes: expected - got CLOB

I have no idea what might have changed, given that any changes would have 
been done by me.  Guessing that something at the data layer has been 
corrupted in some way.  Can anyone provide some insight/assistance.

Best regards,

Don Bynum

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Login authorization broken

2017-04-18 Thread Donald Bynum
Problem solved.  My own fault.  I had re-deployed and somehow had the 
autoregister set to true in the LDAP config file.

Best regards,

Don.

On Tuesday, April 18, 2017 at 8:32:16 AM UTC-4, Donald Bynum wrote:

> I am running DSpace 5.5 with XMLUI and Oracle.  I am seeing very unwanted 
> behavior when a user logs in.  Here are the details of my config:
>
> I am using LDAP authentication - that's appears to be working, in as much 
> as all users can login using their LDAP credentials.  The issue I am seeing 
> is as follows:
>
> I have a user who already has an eperson record with say eperson_id=100 
> and that eperson has an email address of b...@thing.org in the eperson 
> database record..  That eperson is assigned to various authorizations 
> (COllection Admins, etc.).  Whne that person authenticates via the login 
> page, what happens is that a brand new eperson record is created with 
> eperson_id=101, with just the userid in the eperson email column in the 
> eperson table, i.e. bob.  That new eperson, of course, has no 
> authorizations, since they were just created as a function of logging in.
>
> I have deleted via the UI, the original eperson record (the one with 
> b...@thing.org) with eperson_id-100 and also the newly created one with 
> eperson_id=101.  So, now that user has no eperson records.  I then ask that 
> user to try and login and it is successful with yet another simple eperson 
> record created (again with just bob in the email address and 
> eperson_id=102).
>
> What am I missing or what is mis-configured such that this is happening?
>
> Any help would be very much appreciated.
>
> Regards,
>
> Don Bynum
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Login authorization broken

2017-04-18 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Oracle.  I am seeing very unwanted 
behavior when a user logs in.  Here are the details of my config:

I am using LDAP authentication - that's appears to be working, in as much 
as all users can login using their LDAP credentials.  The issue I am seeing 
is as follows:

I have a user who already has an eperson record with say eperson_id=100 and 
that eperson has an email address of b...@thing.org in the eperson database 
record..  That eperson is assigned to various authorizations (COllection 
Admins, etc.).  Whne that person authenticates via the login page, what 
happens is that a brand new eperson record is created with eperson_id=101, 
with just the userid in the eperson email column in the eperson table, i.e. 
bob.  That new eperson, of course, has no authorizations, since they were 
just created as a function of logging in.

I have deleted via the UI, the original eperson record (the one with 
b...@thing.org) with eperson_id-100 and also the newly created one with 
eperson_id=101.  So, now that user has no eperson records.  I then ask that 
user to try and login and it is successful with yet another simple eperson 
record created (again with just bob in the email address and 
eperson_id=102).

What am I missing or what is mis-configured such that this is happening?

Any help would be very much appreciated.

Regards,

Don Bynum

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: change layout of Discover navigation bar

2017-02-20 Thread Donald Bynum
I should have asked before - you did change the Discovery.xml in the source 
area and then rebuild DSpace, right?

On Monday, February 20, 2017 at 10:54:23 AM UTC-5, Wang, Yongming wrote:
>
> Dear All,
>
> Which page should I modify to move up the "Date Issued" facet in the 
> DISCOVER navigation bar? Right now I have four facets in DISCOVER. From top 
> to bottom, they are: Author, Subject, Date Issued, and Has File(s). I want 
> to move Date Issued up above Subject.
>
> Our environment:  DSpace 6.0, Mirage 2, RHEL 7
>
> Thanks so much in advance for your help!
>
>
>
> Yongming
>
> -- 
> Yongming Wang
> Systems Librarian/Associate Professor
> The College of New Jersey
> tel: 609-771-3337
> email: wan...@tcnj.edu 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: change layout of Discover navigation bar

2017-02-20 Thread Donald Bynum
Before you restart Tomcat be sure to clear the cocoon cache.  Once you have 
stopped Tomcat do to tomcatdir\work\localhost\ROOT\cache-dir and delete 
both cocoon-ehcache.data and cocoon-ehcache.index.  Then restart Tomcat.

Note: If you are using XMLUI, and have not renamed the XMLUI webapp to ROOT 
then the Tomcat cache dir is: tomcatdir\work\localhost\xmlui\cache-dir   
Similarly for JSPUI.

Regards,

Don.

On Monday, February 20, 2017 at 10:54:23 AM UTC-5, Wang, Yongming wrote:

> Dear All,
>
> Which page should I modify to move up the "Date Issued" facet in the 
> DISCOVER navigation bar? Right now I have four facets in DISCOVER. From top 
> to bottom, they are: Author, Subject, Date Issued, and Has File(s). I want 
> to move Date Issued up above Subject.
>
> Our environment:  DSpace 6.0, Mirage 2, RHEL 7
>
> Thanks so much in advance for your help!
>
>
>
> Yongming
>
> -- 
> Yongming Wang
> Systems Librarian/Associate Professor
> The College of New Jersey
> tel: 609-771-3337
> email: wan...@tcnj.edu 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: change layout of Discover navigation bar

2017-02-20 Thread Donald Bynum
Take a look at dspace\config\spring\api\discovery.xml

Regards,

Don.

On Monday, February 20, 2017 at 10:54:23 AM UTC-5, Wang, Yongming wrote:

> Dear All,
>
> Which page should I modify to move up the "Date Issued" facet in the 
> DISCOVER navigation bar? Right now I have four facets in DISCOVER. From top 
> to bottom, they are: Author, Subject, Date Issued, and Has File(s). I want 
> to move Date Issued up above Subject.
>
> Our environment:  DSpace 6.0, Mirage 2, RHEL 7
>
> Thanks so much in advance for your help!
>
>
>
> Yongming
>
> -- 
> Yongming Wang
> Systems Librarian/Associate Professor
> The College of New Jersey
> tel: 609-771-3337
> email: wan...@tcnj.edu 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Dspace 5.5 - How to extract from dspace log the event of downloaded bitstreams

2017-02-19 Thread Donald Bynum
Look in dspace\exports\log\solr.log  That is where the solr queries are 
replicated.  You can run a search or download a bitstream and then grab the 
corresponding solr query from the log and then modify to meet your own 
purposes.  This along with the pointers from Terry should get you to where 
you need to be.

Best regards,

Don.

On Wednesday, February 15, 2017 at 10:51:24 AM UTC-5, Edmilson José Boregas 
wrote:

> Hi all,
>
>
> I have to produce a ranking of the most downloaded bitstream (Dspace 5.5).
>
>
> At the dspace log file I've found the following messages: 
>
>
> 2017-02-04 00:20:22,663 INFO  org.dspace.usage.LoggerUsageEventListener @ 
> anonymous:session_id=826A711DAFC58FA021873BA5F1D7DDE1:ip_addr=157.55.39.41:view_bitstream:bitstream_id=22895
>
>  
>
> 2017-02-04 00:20:24,737 INFO  org.dspace.app.xmlui.cocoon.BitstreamReader 
> @ 
> anonymous:session_id=9446A033674E101C86BE2CAE2BAA4592:ip_addr=173.252.88.95:view_bitstream:handle=10438/2674,withdrawn=true
>
>  
>
> I ask: 
>
>
> 1. Which of those lines mean that a bitstream was downloaded?  Is there 
> any others?
>
>
> 2. Is there some tool in Dspace 5.5 that can help me to extract this kind 
> of event from dspace log file?
>
>
> Thanks a bunch
>
>
> Ejsboregas
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Collection authorization permissions

2017-02-18 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI.  I have set an e-person as the admin 
for a collection.  That's fine, but I'd like that e-person to have Edit 
Collection rights without making that e-person a member of the Admin 
group.  Is this possible?

Best Regards,

Don\

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] New registration email text - where is it?

2017-02-14 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  I want to edit the text of 
the email which is sent to a new user after they register.  The message 
which tells them where to go to complete their registration.  The current 
message body is as follows:

To complete registration for a DSpace account, please click the link

below:



  *http://mydspaceurl/register?token=618b7dc16a2cc065cd175e2a4bdc55af* 




If you need assistance with your account, please email

*dspace-h...@myu.edu*  or call us at xxx-555-.



The DSpace Team


I want to customize the text of this email.  I've looked in dspace.cfg and 
messages.xml, but no joy.


Any assistance here would be much appreciated.


Regards,


Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Login Page not updating when config is updated

2017-02-06 Thread Donald Bynum
At the end of the day, it was a caching issue.

On Monday, February 6, 2017 at 12:20:33 PM UTC-5, Donald Bynum wrote:
>
> I am running DSpace 5.1 with XMLUI and I am banging my head right now with 
> regards to changing the login options.  Originally in 
> dspace\config\modules\authentication.cfg I had as the last line:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.PasswordAuthentication
>
> That did exactly as it should - i.e. rendered a login/password pair when I 
> click "login"
>
> I then changed the authentication.cfg to allow both password and LDAP:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.LDAPAuthentication, 
> org.dspace.authenticate.PasswordAuthentication
>
> That did exactly the right thing - i.e. when I click "logon" I get a login 
> method choice page
>
> Now, I just want LDAP, so I changed authentication.cfg to:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.LDAPAuthentication
>
> I have re-built my DSpace and redeployed, but I sill get the login method 
> choice page with LDAP and Password listed as choices.  What am I missing?  
> I just want LDAP only with no method choice page.
>
> Regards,
>
> Don
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Login Page not updating when config is updated

2017-02-06 Thread Donald Bynum
I meant, I am running DSpace 5.5, not 5.1


On Monday, February 6, 2017 at 12:20:33 PM UTC-5, Donald Bynum wrote:

> I am running DSpace 5.1 with XMLUI and I am banging my head right now with 
> regards to changing the login options.  Originally in 
> dspace\config\modules\authentication.cfg I had as the last line:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.PasswordAuthentication
>
> That did exactly as it should - i.e. rendered a login/password pair when I 
> click "login"
>
> I then changed the authentication.cfg to allow both password and LDAP:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.LDAPAuthentication, 
> org.dspace.authenticate.PasswordAuthentication
>
> That did exactly the right thing - i.e. when I click "logon" I get a login 
> method choice page
>
> Now, I just want LDAP, so I changed authentication.cfg to:
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
> org.dspace.authenticate.LDAPAuthentication
>
> I have re-built my DSpace and redeployed, but I sill get the login method 
> choice page with LDAP and Password listed as choices.  What am I missing?  
> I just want LDAP only with no method choice page.
>
> Regards,
>
> Don
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Login Page not updating when config is updated

2017-02-06 Thread Donald Bynum
I am running DSpace 5.1 with XMLUI and I am banging my head right now with 
regards to changing the login options.  Originally in 
dspace\config\modules\authentication.cfg I had as the last line:

plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
org.dspace.authenticate.PasswordAuthentication

That did exactly as it should - i.e. rendered a login/password pair when I 
click "login"

I then changed the authentication.cfg to allow both password and LDAP:

plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
org.dspace.authenticate.LDAPAuthentication, 
org.dspace.authenticate.PasswordAuthentication

That did exactly the right thing - i.e. when I click "logon" I get a login 
method choice page

Now, I just want LDAP, so I changed authentication.cfg to:

plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \
org.dspace.authenticate.LDAPAuthentication

I have re-built my DSpace and redeployed, but I sill get the login method 
choice page with LDAP and Password listed as choices.  What am I missing?  
I just want LDAP only with no method choice page.

Regards,

Don

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Customizing the StatisticsTransformer

2017-01-09 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI.  I am making some customizations to the 
StatisticsTransformer java module.  I am hoping to crack two nuts with this 
post/question.  I have written my own version of the procedure 
"addDisplayListing".  I want to be able to render a custom hyperlink.  So, 
I know that I need to use the addXref function.  I'd like to have the 
target URL as a string in some config file somewhere (like messages.xml).  
I'd also like to be able to have the target URL open in a new browser 
winder (i.e. setting the "target" attribute of the resulting  tag),

Currently, in order to render the  tag content,  I have:

valListRow.addCell("02", Cell.ROLE_DATA, "datacell").addXref("
http://mySpecialURL.com;, "Click to see feedback");

This results in http://mySpecialURL.com;>Click to see feedback

Q1. So, how/where can I make "http://mySpecialURL.com; configurable so that 
I don't have to do a special build for dev and another for test and another 
for prod?

Q2. I know that there is version of addXref with a  third parameter, but 
that results in setting the "class" attribute of the  tag (there is 
no way in CSS to target a new browser window - if there were, this would be 
the solution).  So, is there some way of injecting the "target" attribute 
into the resulting  tag?

Best regards,

Don.


-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] SOLR Statistics issue

2017-01-05 Thread Donald Bynum
I am running DSpace 5 with XMLUI and Oracle.  I recently stood up a new 
DSpace instance and am testing the configuration.  I have a single 
community with a number of collections.  I have added one item (with one 
associated file uploaded).  I can see the item in the collection and I can 
download the associated file.  When I look at the 
dspace/solr/search/data/tlog content, I see numerous files with today's 
date.  However, if I look at the  dspace/solr/statistics/data/tlog content, 
there is nothing dated any later than when I initially did the install.  
So, none of the downloads which I did today seem to be in the SOLR 
statistics.

Any guidance or thoughts here would be great.  I have another Dspace 
instance which is configured identically to this new one and it seems to be 
working as expected.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Ghost Item in Community

2017-01-05 Thread Donald Bynum
Claudia,

Thank you for the suggestion.  Unfortunately that did not work as hoped.  
However, I did go ahead and execute what I had suggested in my original 
post (deleting the item child rows in associated tables and then deleting 
the ITEM row itself.  That appears to have resolved my issue.

Best regards,

Don.

On Thursday, January 5, 2017 at 10:35:58 AM UTC-5, Donald Bynum wrote:

> I have a collection which did not have the BITSREAM_READ authorization 
> policy associated with it (my fault, I was testing an idea - seemingly a 
> bad one).  I attempted to create a new item and an associated bitstream.  
> The submission failed (of course, because of the missing policy).  However, 
> a "ghost" item for that errant item is listed in the Community view.  It is 
> not listed in the attempted Collection.  I'd like to get rid of this ghost 
> item, but there seems to be no way to do that from the control panel.  If I 
> look at the data in the database, this ITEM is not associated with any 
> COLLECTION, but there are various metatdata which are associated with the 
> "ghost".  I could go into the database and delete the raw data (ITEM, 
> ITEM2BUNDLE, BUNDLE, BUNDLE2BITSTREAM, BITSTREAM and METADATAVALUE).  Any 
> advice on this and any potential issues which I might create by doing the 
> database delete would be much appreciated.
>
> Regards,
>
> Don.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Ghost Item in Community

2017-01-05 Thread Donald Bynum
Sorry, forgot to note that I am running Dspace 5 with XMLUI and Oracle

On Thu, Jan 5, 2017 at 10:36 Donald Bynum <byn...@gmail.com> wrote:

> I have a collection which did not have the BITSREAM_READ authorization
> policy associated with it (my fault, I was testing an idea - seemingly a
> bad one).  I attempted to create a new item and an associated bitstream.
> The submission failed (of course, because of the missing policy).  However,
> a "ghost" item for that errant item is listed in the Community view.  It is
> not listed in the attempted Collection.  I'd like to get rid of this ghost
> item, but there seems to be no way to do that from the control panel.  If I
> look at the data in the database, this ITEM is not associated with any
> COLLECTION, but there are various metatdata which are associated with the
> "ghost".  I could go into the database and delete the raw data (ITEM,
> ITEM2BUNDLE, BUNDLE, BUNDLE2BITSTREAM, BITSTREAM and METADATAVALUE).  Any
> advice on this and any potential issues which I might create by doing the
> database delete would be much appreciated.
>
> Regards,
>
> Don.
>
>
>
>
>
>
>
>
> --
>
>
> You received this message because you are subscribed to a topic in the
> Google Groups "DSpace Technical Support" group.
>
>
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/dspace-tech/c_ZU5XneO7A/unsubscribe.
>
>
> To unsubscribe from this group and all its topics, send an email to
> dspace-tech+unsubscr...@googlegroups.com.
>
>
> To post to this group, send email to dspace-tech@googlegroups.com.
>
>
> Visit this group at https://groups.google.com/group/dspace-tech.
>
>
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Ghost Item in Community

2017-01-05 Thread Donald Bynum
I have a collection which did not have the BITSREAM_READ authorization 
policy associated with it (my fault, I was testing an idea - seemingly a 
bad one).  I attempted to create a new item and an associated bitstream.  
The submission failed (of course, because of the missing policy).  However, 
a "ghost" item for that errant item is listed in the Community view.  It is 
not listed in the attempted Collection.  I'd like to get rid of this ghost 
item, but there seems to be no way to do that from the control panel.  If I 
look at the data in the database, this ITEM is not associated with any 
COLLECTION, but there are various metatdata which are associated with the 
"ghost".  I could go into the database and delete the raw data (ITEM, 
ITEM2BUNDLE, BUNDLE, BUNDLE2BITSTREAM, BITSTREAM and METADATAVALUE).  Any 
advice on this and any potential issues which I might create by doing the 
database delete would be much appreciated.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] LDAP Authentication

2016-11-23 Thread Donald Bynum
Ah, so it does.  Thanks.  I may end up changing the rendered page then to 
only display a single link, rather than multiple.

Regards,

Don.

On Tuesday, November 22, 2016 at 3:38:53 PM UTC-5, helix84 wrote:

> On Tue, Nov 22, 2016 at 9:14 PM, Donald Bynum <byn...@gmail.com 
> > wrote: 
> > Thanks for that.  There is a slight inconsistency in the docs (after 
> your 
> > hint I went back and looked again).  The docs suggest that when theer 
> are 
> > multiple auth mrthods configured that DSpace will try each method until 
> > success.  What I am seeing is, in fact, a list of links (one for each 
> auth 
> > method) at the login screen. 
>
> The documentation is correct, the methods are indeed stackable, 
> despite two forms being offered. Try opening up the ldap form and 
> using your DSpace login/password or vice versa. 
>
>
> Regards, 
> ~~helix84 
>
> Compulsory reading: DSpace Mailing List Etiquette 
> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Customisation Problems

2016-11-23 Thread Donald Bynum
If you are using XMLUI, then for #1.  Look in: 
DSpace-SRC\dspace\modules\xmlui\src\main\webapp\i18n\messages.xml and also 
DSpace-SRC\dspace\modules\xmlui\src\main\webapp\themes\Mirage\lib\css\style.css

Regards,

Don.

On Wednesday, November 23, 2016 at 6:31:35 AM UTC-5, Iltifat Ibrahimov 
wrote:

> Dear All, 
>
> I have some problems regarding customisation of Manakin Interface and hope 
> some of you've encountered following problems in your experience. 
>
> 1. I change top logo text Sign-In page but the text still is same "DSpace 
> Repository". Sign-In page top log customisation is different than other 
> pages or the same? 
>
> 2. As default DSpace language is English but in some computers which use 
> other languages for instance Russian DSpace changes it's language according 
> to those computers's languages. 
>
>
> Best, 
> Iltifat
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] LDAP Authentication

2016-11-22 Thread Donald Bynum
Jeffrey,

Thanks for that.  There is a slight inconsistency in the docs (after your 
hint I went back and looked again).  The docs suggest that when theer are 
multiple auth mrthods configured that DSpace will try each method until 
success.  What I am seeing is, in fact, a list of links (one for each auth 
method) at the login screen.  I would have preferred it the way the docs 
suggested.  But, in any case, you pointed me in th eright direction to get 
back to where I needed to be.

Regards,

Don.

On Tuesday, November 22, 2016 at 2:39:07 PM UTC-5, Jeffrey Sheldon wrote:

> Don, 
>
> I would recommend enabling both LDAP and Password authentication, at least 
> long enough to log in under the older administrator account and promote any 
> accounts created through LDAP logins (or create a temporary one to feel 
> things out). 
>
> You can configure for both like so in config/modules/authentication.cfg 
>
> plugin.sequence.org.dspace.authenticate.AuthenticationMethod = \ 
> org.dspace.authenticate.LDAPAuthentication, \ 
> org.dspace.authenticate.PasswordAuthentication 
>
>
> I had thought that the LDAP bind simply replaced auth on an existing 
> account, though I can see situations where configuration might cause 
> conflicts. 
>
> If this response misses your point, please let me know. 
>
>
> -Jeff 
>
>  
> From: dspac...@googlegroups.com  <dspac...@googlegroups.com 
> > on behalf of Donald Bynum <byn...@gmail.com > 
> Sent: Tuesday, November 22, 2016 1:25 PM 
> To: DSpace Technical Support 
> Subject: [dspace-tech] LDAP Authentication 
>
> I have DSpace 5.5 with XMLUI and Mirage.  I initially set up DSpace with 
> Password Authentication.  I now want to switch to LDAP Authentication.  I 
> have configured the authentication config file and the ldap config file. 
>  All appears good except that I now see to have zapped my own administrator 
> account.  How can I get my DSpace account back to being an administrator 
> account?  I can revert my DSpace back to Pasword Auth and my old Admin 
> account works as an admin again.  What I need is my LDAP account to also be 
> an admin account, so that I can revert back to LDAP auth and still have 
> admin rights. 
>
> Regards, 
>
> Don. 
>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "DSpace Technical Support" group. 
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to dspace-tech...@googlegroups.com  dspace-tech+unsubscr...@googlegroups.com >. 
> To post to this group, send email to dspac...@googlegroups.com 
> <mailto:dspac...@googlegroups.com >. 
> Visit this group at https://groups.google.com/group/dspace-tech. 
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] LDAP Authentication

2016-11-22 Thread Donald Bynum
I have DSpace 5.5 with XMLUI and Mirage.  I initially set up DSpace with 
Password Authentication.  I now want to switch to LDAP Authentication.  I 
have configured the authentication config file and the ldap config file.  
All appears good except that I now see to have zapped my own administrator 
account.  How can I get my DSpace account back to being an administrator 
account?  I can revert my DSpace back to Pasword Auth and my old Admin 
account works as an admin again.  What I need is my LDAP account to also be 
an admin account, so that I can revert back to LDAP auth and still have 
admin rights.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Default Group for new user

2016-11-22 Thread Donald Bynum
Thanks Terry.  This now leads me to an associated question.  Currently I am
using PasswordAuthentication.  I want to get LDAP authentication working,
but I need to do some research on which attributes we are using in our AD.
Can I switch back and forth between Password and LDAP authentication
protocols without doing any "damage"?

Regards,

Don.

On Mon, Nov 21, 2016 at 2:27 PM, Donald Bynum <byn...@gmail.com> wrote:

> I am running DSpace 5.5 with XMLUI and Mirage.  Is there a way to specify
> a non-anonymous group for a new user?  I'd like all new users to go into a
> group which has READ access (i.e. able to view and download content).  The
> ultimate goal is to only allow view and download to logged in users, but I
> don't want to have to perform a "manual" admin task for each new user,
> rather have them default to a group which has READ access to the repository.
>
> Regards,
>
> Don.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "DSpace Technical Support" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/dspace-tech/ZPMoZV2PKGg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> dspace-tech+unsubscr...@googlegroups.com.
> To post to this group, send email to dspace-tech@googlegroups.com.
> Visit this group at https://groups.google.com/group/dspace-tech.
> For more options, visit https://groups.google.com/d/optout.
>



-- 


Donald E. Bynum
byn...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Default Group for new user

2016-11-21 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  Is there a way to specify a 
non-anonymous group for a new user?  I'd like all new users to go into a 
group which has READ access (i.e. able to view and download content).  The 
ultimate goal is to only allow view and download to logged in users, but I 
don't want to have to perform a "manual" admin task for each new user, 
rather have them default to a group which has READ access to the repository.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Reset SOLR statistics

2016-11-18 Thread Donald Bynum
Great,

Thank you.

Regards,
Don

On Friday, November 18, 2016 at 9:04:04 AM UTC-5, helix84 wrote:

> On Fri, Nov 18, 2016 at 3:00 PM, Donald Bynum <byn...@gmail.com 
> > wrote: 
> > I see the link for exporting and importing SOLR statistics.  What I 
> don't 
> > see is the examples of how to reset (i.e. completely remove my "Search" 
> core 
> > and "Statistics" core data. 
>
> Sorry, here it is: 
> https://wiki.duraspace.org/display/DSPACE/Solr#Solr-DeletingSolrindexdata 
>
>
> Regards, 
> ~~helix84 
>
> Compulsory reading: DSpace Mailing List Etiquette 
> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Reset SOLR statistics

2016-11-18 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  I would like to reset all 
of my SOLR statistics.  What is the correct way of doing that?

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Rebuilding DSpace

2016-11-14 Thread Donald Bynum
Thank you for the information.  

Regards,

Don.

On Monday, November 14, 2016 at 12:17:21 PM UTC-5, helix84 wrote:

> You can't rebuild just XMLUI. (I hope someone will prove me wrong, but I 
> doubt it).
>
> XMLUI has dependencies like dspace-api and dspace-services and the 
> dependencies are not always obvious.
>
>
> You can, however, exclude some modules from building. It would look 
> something loke this:
>
> mvn package -P \!dspace-sword,\!dspace-swordv2,\!dspace-rdf,\!dspace-rest
>
> Figuring out which modules you can afford to exclude will need some 
> experimenting because of the mentioned dependencies.
>
>
> Regards,
> ~~helix84
>
> Compulsory reading: DSpace Mailing List Etiquette
> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Rebuilding DSpace

2016-11-14 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  This is likely trivial, 
however - When I rebuild DSpace, the only webapp I am customizing is 
XMLUI.  My build script (the out of the box script) rebuilds all webapps.  
I only want to rebuild XMLUI.  I don't want to "guess" at what to remove 
from the build scripts.  Could someone please advise me on what a build 
script would look like for just rebuilding XMLUI.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Customizing Statistics Usage Page

2016-11-13 Thread Donald Bynum
Problem solved (thanks again Terry for the hint).  I completely forgot to 
clear the cocoon cache before the last rebuild.  Clearing cache and another 
rebuild solved the issue.

Don.

On Friday, November 11, 2016 at 5:40:01 PM UTC-5, Donald Bynum wrote:

> I am running DSpace 5.5 with XMLUI and Mirage.  I am customizing (or at 
> least trying to) content in the Usage Statistics pages.  Specifically, I 
> want to remove the Country Views and the City Views and replace them with a 
> section that has "Feedback" as the header and a custom URL for the content 
> below.  I have been pushed in the right direction (thank you Terry), but am 
> stumbling on something which I am sure is trivial (I just don't know what 
> it is).
>
> I can successfully modify existing header strings by changing them in the 
> C:\dspace-5.5-release\dspace\modules\xmlui\src\main\webapp\i18n\messages.xml 
> code file.  I wanted to add a new header string.  So, in 
> C:\dspace-5.5-release\dspace\modules\xmlui\src\main\webapp\i18n\messages.xml 
> I added my new string:
>
> Top cities 
> views
> File 
> Downloads  Note - this is one of the header string I have updated 
> and it renders just fine
> Feedback   
> Note - this is the new one I added
>
> I updated 
> C:\dspace-5.5-release\dspace\modules\xmlui\src\main\java\org\dspace\app\xmlui\aspect\statistics\StatisticsTransformer.java
>  
> as follows:
>
> 1. I added my new header string to the list at the start of the class 
> definition as follows:
>  private static final String T_head_visits_cities = 
> "xmlui.statistics.visits.cities";
> private static final String T_head_visits_bitstream = 
> "xmlui.statistics.visits.bitstreams";  -- Note this corresponds to the 
> header string which I updated in messages.xml 
> private static final String T_head_visits_setcstats = 
> "xmlui.statistics.visits.setcstats"; -- This is the new header string that 
> I added to messages.xml
>
> 2. I commented out the original City and Country sections and added my new 
> (modified from the original Country section) section to the renderViewer 
> method as follows:
>
> try {
> StatisticsListing statListing = new StatisticsListing(
>new StatisticsDataVisits(dso));
> statListing.setTitle(T_head_visits_setcstats); -- Note this 
> is the reference to my new header string
> statListing.setId("list2");
> //DatasetDSpaceObjectGenerator dsoAxis = new 
> DatasetDSpaceObjectGenerator();
> //dsoAxis.addDsoChild(dso.getType(), 10, false, -1);
> DatasetTypeGenerator typeAxis = new DatasetTypeGenerator();
> typeAxis.setType("countryCode");
> typeAxis.setMax(10);
> statListing.addDatasetGenerator(typeAxis);
> addDisplayListing(division, statListing);
>
> I have rebuilt XMLUI.  However, when the Usage Statistics page renders, 
> the header string is displayed as: "xmlui.statistics.visits.setcstats" 
> (without the quotes) instaed of the actual text of the string that I added 
> to messages.xml (it should have rendered "Feedback".
>
> Clearly something is not binding, I just don't know what.
>
> Help here would be much appreciated,
>
> Regards,
>
> Don.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Customizing Statistics Usage Page

2016-11-11 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  I am customizing (or at 
least trying to) content in the Usage Statistics pages.  Specifically, I 
want to remove the Country Views and the City Views and replace them with a 
section that has "Feedback" as the header and a custom URL for the content 
below.  I have been pushed in the right direction (thank you Terry), but am 
stumbling on something which I am sure is trivial (I just don't know what 
it is).

I can successfully modify existing header strings by changing them in the 
C:\dspace-5.5-release\dspace\modules\xmlui\src\main\webapp\i18n\messages.xml 
code file.  I wanted to add a new header string.  So, in 
C:\dspace-5.5-release\dspace\modules\xmlui\src\main\webapp\i18n\messages.xml 
I added my new string:

Top cities views
File 
Downloads  Note - this is one of the header string I have updated 
and it renders just fine
Feedback   
Note - this is the new one I added

I updated 
C:\dspace-5.5-release\dspace\modules\xmlui\src\main\java\org\dspace\app\xmlui\aspect\statistics\StatisticsTransformer.java
 
as follows:

1. I added my new header string to the list at the start of the class 
definition as follows:
 private static final String T_head_visits_cities = 
"xmlui.statistics.visits.cities";
private static final String T_head_visits_bitstream = 
"xmlui.statistics.visits.bitstreams";  -- Note this corresponds to the 
header string which I updated in messages.xml 
private static final String T_head_visits_setcstats = 
"xmlui.statistics.visits.setcstats"; -- This is the new header string that 
I added to messages.xml

2. I commented out the original City and Country sections and added my new 
(modified from the original Country section) section to the renderViewer 
method as follows:

try {
StatisticsListing statListing = new StatisticsListing(
   new StatisticsDataVisits(dso));
statListing.setTitle(T_head_visits_setcstats); -- Note this is 
the reference to my new header string
statListing.setId("list2");
//DatasetDSpaceObjectGenerator dsoAxis = new 
DatasetDSpaceObjectGenerator();
//dsoAxis.addDsoChild(dso.getType(), 10, false, -1);
DatasetTypeGenerator typeAxis = new DatasetTypeGenerator();
typeAxis.setType("countryCode");
typeAxis.setMax(10);
statListing.addDatasetGenerator(typeAxis);
addDisplayListing(division, statListing);

I have rebuilt XMLUI.  However, when the Usage Statistics page renders, the 
header string is displayed as: "xmlui.statistics.visits.setcstats" (without 
the quotes) instaed of the actual text of the string that I added to 
messages.xml (it should have rendered "Feedback".

Clearly something is not binding, I just don't know what.

Help here would be much appreciated,

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Customize Item Usage Statistics page

2016-11-10 Thread Donald Bynum
Thanks Terry,

That definitely sent me in the right direction.

Regards,

Don.

On Wednesday, November 9, 2016 at 3:33:53 PM UTC-5, Terry Brady wrote:

> The following file might help: 
> https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/statistics/StatisticsTransformer.java
>
> On Wed, Nov 9, 2016 at 11:32 AM, Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> I am running DSpace 5.5 with XMLUI and Mirage.  In the Item Usage 
>> Statistics report page, I want to remove the Top country views and Top city 
>> views sections and replace them with a new Caption and a link to an 
>> external URL.  I want to include the item handle as part of the URL string.
>>
>> Sounds easy enough, but how?
>>
>> Regards,
>>
>> Don.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Terry Brady
> Applications Programmer Analyst
> Georgetown University Library Information Technology
> http://georgetown-university-libraries.github.io/ 
> <https://www.library.georgetown.edu/lit/code>
> 425-298-5498 (Seattle, WA)
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Customize Item Usage Statistics page

2016-11-09 Thread Donald Bynum
I am running DSpace 5.5 with XMLUI and Mirage.  In the Item Usage 
Statistics report page, I want to remove the Top country views and Top city 
views sections and replace them with a new Caption and a link to an 
external URL.  I want to include the item handle as part of the URL string.

Sounds easy enough, but how?

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Cannot access SOLR remotely

2016-11-08 Thread Donald Bynum
Hi Bruno,

I am running Tomcat 8 and I have updated my server.xml as the wiki 
suggested.  Here is what my  container looks like now (I highlighted 
what I added):


  
  
  
  


  
  




   
 
  
  


  


I have restarted Tomcat, but now the SOLR instance returns ""*Access to the 
specified resource has been forbidden."*  for all access attempts, 
including localhost.  Further guidance would be much appreciated.

Regards,

Don.

On Monday, November 7, 2016 at 2:31:47 PM UTC-5, Bruno Nocera Zanette wrote:

> Donald,
> This is the expected behavior for SOLR, for security reasons.
>
> Take a look at this wiki to learn how to bypass this restriction:
>
> https://wiki.duraspace.org/display/DSPACE/Solr#Solr-Bypassinglocalhostrestrictiontemporarily
>
> Em seg, 7 de nov de 2016 às 16:33, Donald Bynum <byn...@gmail.com 
> > escreveu:
>
>> I have DSpace 5.5 on Tomcat with Oracle as the DB.  I want to run some 
>> SOLR queries from a remote client, i.e. NOT running on the Tomcat server as 
>> localhost.  I need to do this in order to create some remote reporting 
>> functions.  Accessing SOLR on the Tomcat server as localhost is just fine: 
>> http://localhost:8080/solr/...
>>
>> When I try the same from a remote client:  
>> http://myserver.thing.org:8080/solr... I get a 403 error - "*Access to 
>> the specified resource has been forbidden."*
>>
>> Any guidance here would be much appreciated.
>>
>> Regards,
>>
>> Don.
>>
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
> -- 
> Bruno Nocera Zanette
> +55 41 9992-2508
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Hnadle mappings to Collections and Items

2016-11-06 Thread Donald Bynum
Terry,

Thank you.  I knew there had to be a mapping between item/collection ID and 
the handle ID.

Regards,

Don.

On Friday, November 4, 2016 at 4:07:12 PM UTC-4, Terry Brady wrote:

> select * 
> from handle h
> inner join item i
>   on i.item_id = h.resource_id and h.resource_type_id=2
>
> select * 
> from handle h
> inner join collection c
>   on c.collection_id = h.resource_id and h.resoruce_type_id=3
>
>
> Note, the item table has a column owning_collection which is a handy way 
> to get from an item to a collection.
>
> Terry
>
> On Fri, Nov 4, 2016 at 12:17 PM, Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> I'm running DSpace 5.5 with XMLUI using Mirage and Oracle as the 
>> database.  I am building some custom reports with a combination of SOLR 
>> searches and also queries on the database.  Essentially, I am going to get 
>> the list of collection_ids from the COLLECTION table.  Then I can query the 
>> COLLECTION2ITEM table to get the list of item_ids for each collection.  
>> What I cannot figure out is how to get the handle value for a 
>> collection/item.  Can someone please enlighten me as to how I can get the 
>> handle value for a collection or an item given that I do have the 
>> collection_id and the item_id.
>>
>> Regards,
>>
>> Don.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Terry Brady
> Applications Programmer Analyst
> Georgetown University Library Information Technology
> http://georgetown-university-libraries.github.io/ 
> <https://www.library.georgetown.edu/lit/code>
> 425-298-5498 (Seattle, WA)
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Hnadle mappings to Collections and Items

2016-11-04 Thread Donald Bynum
I'm running DSpace 5.5 with XMLUI using Mirage and Oracle as the database.  
I am building some custom reports with a combination of SOLR searches and 
also queries on the database.  Essentially, I am going to get the list of 
collection_ids from the COLLECTION table.  Then I can query the 
COLLECTION2ITEM table to get the list of item_ids for each collection.  
What I cannot figure out is how to get the handle value for a 
collection/item.  Can someone please enlighten me as to how I can get the 
handle value for a collection or an item given that I do have the 
collection_id and the item_id.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Re: Send email on bitstream download

2016-11-01 Thread Donald Bynum
Thanks Andrea.  What I am really looking for is a way to send an email to a 
logged on eperson when they download a bitstream.  In other words the 
download event triggers the email.

Regards,

Don.

On Tuesday, November 1, 2016 at 4:50:51 AM UTC-4, Bollini Andrea wrote:

> Hi,
>
> just to note that such functionalities are available in DSpace-CRIS
>
> https://github.com/4Science/DSpace
>
> Any registered user can subscribe update on any object in the system, 
> including the author profile, and receive daily, weekly or monthly emails 
> following his preference with usage statistics information (how many view 
> and download in the period, the increment/decrement against the previous 
> period).
>
> The script to configure in CRONTAB is
>
>
> https://github.com/4Science/DSpace/blob/dspace-cris-5.5.0/dspace-cris/api/src/main/java/org/dspace/app/cris/batch/ScriptCrisSubscribe.java
>
> Andrea
>
>
>
> Il 31/10/2016 17:01, Terry Brady ha scritto:
>
> Don, 
>
> Here is some information on the usage statistics component: 
> https://wiki.duraspace.org/display/DSDOC5x/SOLR+Statistics
>
> Here is the documentation on the configurable event system (for tracking 
> changes to items/bitstreams/etc): 
> https://wiki.duraspace.org/display/DSDOC5x/Configuration+Reference#ConfigurationReference-EventSystemConfiguration
>
> I do not believe that the functionality you describe exists in DSpace.  I 
> believe that you would need to develop your own process.
>
>- Query solr for usage events in the last day/week/hour 
>- Grab the object identifier from SOLR 
>- Look up the owner/creator of the object in the database 
>- Send e-mail 
>
> Terry
>
> On Sat, Oct 29, 2016 at 7:40 AM, Donald Bynum <byn...@gmail.com 
> > wrote:
>
>> My apologies - I am running DSpace 5.5 with the XMLUI interface using the 
>> Mirage theme. 
>>
>>
>> On Saturday, October 29, 2016 at 10:37:14 AM UTC-4, Donald Bynum wrote: 
>>>
>>> I would like to send an email to the logged in eperson when a bitstream 
>>> is downloaded.  If this is not possible, then I would cope with sending an 
>>> email to an eperson on item view.  My epersons usernames are their email 
>>> address.  Does anyone have a code excerpt that does this?  Currently an 
>>> email is sent to the logged in eperson after a successful submission.  If 
>>> someone could tell me which code page does that, perhaps I could use that 
>>> as a reference.
>>>
>>> Any help would be much appreciated.
>>>  
>>> Regards,
>>>
>>> Don.
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "DSpace Technical Support" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to dspace-tech...@googlegroups.com .
>> To post to this group, send email to dspac...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/dspace-tech.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Terry Brady 
> Applications Programmer Analyst
> Georgetown University Library Information Technology
> http://georgetown-university-libraries.github.io/ 
> <https://www.library.georgetown.edu/lit/code>
> 425-298-5498 (Seattle, WA)
> -- 
> You received this message because you are subscribed to the Google Groups 
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to dspace-tech...@googlegroups.com .
> To post to this group, send email to dspac...@googlegroups.com 
> .
> Visit this group at https://groups.google.com/group/dspace-tech.
> For more options, visit https://groups.google.com/d/optout.
>
>
> -- 
> Andrea Bollini
> Chief Technology and Innovation Officer
>
> 4Science,  www.4science.it
> office: Via Edoardo D'Onofrio 304, 00155 Roma, Italy
> mobile: +39 333 934 1808
> skype: a.bollini
> linkedin: andreabollini
> orcid: -0002-9029-1854
>
> an Itway Group Company
> Italy, France, Spain, Portugal, Greece, Turkey, Lebanon, Qatar, U.A.Emirates
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] SOLR Search queries in XMLUI

2016-10-31 Thread Donald Bynum
Thank you.  I can see elements of what would end up in a SOLR query, but 
not the actual queries used.

What am I missing?

Regards,

Don.

On Monday, October 31, 2016 at 1:36:42 PM UTC-4, helix84 wrote:

> On Mon, Oct 31, 2016 at 6:28 PM, Donald Bynum <byn...@gmail.com 
> > wrote: 
> > For DSpace 5.5 using XMLUI and Mirage, is there a way to look at the 
> SOLR 
> > queries which are executed for the existing out of the box Usage 
> Statistics 
> > in XMLUI? 
>
>
> tail -f /dspace/log/solr.log | grep "\[statistics\]" 
>
>
>
> Regards, 
> ~~helix84 
>
> Compulsory reading: DSpace Mailing List Etiquette 
> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette 
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] SOLR Search queries in XMLUI

2016-10-31 Thread Donald Bynum
For DSpace 5.5 using XMLUI and Mirage, is there a way to look at the SOLR 
queries which are executed for the existing out of the box Usage Statistics 
in XMLUI?

Regards,

Don

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Send email on bitstream download

2016-10-29 Thread Donald Bynum
My apologies - I am running DSpace 5.5 with the XMLUI interface using the 
Mirage theme.

On Saturday, October 29, 2016 at 10:37:14 AM UTC-4, Donald Bynum wrote:
>
> I would like to send an email to the logged in eperson when a bitstream is 
> downloaded.  If this is not possible, then I would cope with sending an 
> email to an eperson on item view.  My epersons usernames are their email 
> address.  Does anyone have a code excerpt that does this?  Currently an 
> email is sent to the logged in eperson after a successful submission.  If 
> someone could tell me which code page does that, perhaps I could use that 
> as a reference.
>
> Any help would be much appreciated.
>  
> Regards,
>
> Don.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Send email on bitstream download

2016-10-29 Thread Donald Bynum
I would like to send an email to the logged in eperson when a bitstream is 
downloaded.  If this is not possible, then I would cope with sending an 
email to an eperson on item view.  My epersons usernames are their email 
address.  Does anyone have a code excerpt that does this?  Currently an 
email is sent to the logged in eperson after a successful submission.  If 
someone could tell me which code page does that, perhaps I could use that 
as a reference.

Any help would be much appreciated.
 
Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Bitstream format display

2016-10-27 Thread Donald Bynum
Two issues here (maybe not issues, but certainly odd).  I am using xmlui in 
DSpace 5.5.  I added a new bitstream format for zip files.  I associated 
the .zip extension.  When I submit an item with a zip file, it picks up the 
format, but when I view the associated item, the Format tag has the MIME 
Type text rather than the Name or Description as specified in the format 
metadata.  How can I change that, so the Name or Description rather the 
Mime Type is displayed in the Format tag in the item view?

If I upload a .docx bitstream, it picks up the Microsoft Word XML format 
type (that is the only one with a .docx extension).  However, in the item 
view the Format tag has Microsoft Word 2007.  I cannot for the life of me 
see where the "Microsoft Word 2007" is coming from.  If I look at the 
Bitstream format it has "Microsoft Word XML" as the Name and Description 
and quite a lengthy Mime Type.

Between the two issues above, I don't see a consistency in what is in the 
format definitions and what is being displayed on the item view page.

Any assistance would be much appreciated.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Database Schema refresh

2016-10-07 Thread Donald Bynum
I am using Oracle as my database in an XMLUI implementation.  I'd like to 
wipe out the DB schema and start from scratch without having to literally 
start from the very beginning as far as installation is concerned.  How can 
I "refresh" my schema?  I'd be happy enough with creating a new schema and 
pointing my DSpace to that, but I'd still need to remove any unnecessary 
metadata.

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Adding new Serach Filters

2016-10-03 Thread Donald Bynum
I want to add a new search filter item to the drop down of filters in the 
advanced search.  I have edited Discovery.xml as follows:

In the defaultConfiguration bean I added "" to the  set of the "searchFilters"  set

I added the same new bean reference to the homepageConfiguration bean.

I added the following to the list of Search filter configuration beans

 
 
 
 
 dc.publisher
 
 
 

I bounced Tomcat and the new item displays in the dropdown of search 
filters as: "xmlui.ArtifactBrowser.SimpleSearch.filter.publisher"

The execution of the filter seems to work just fine, just that the display 
text is messed up (as stated above).

What did I miss?

Regards,

Don.




-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Adding Form Fields - database update

2016-09-30 Thread Donald Bynum
I want to add a new form field to the first submission page.  I know how to 
add the metadata in the input-forms.xml code file.  I am using the xmlui 
with Oracle as the database.  How do I ensure that my new field is added to 
the database table which controls the form field metadata and also ensure 
that this new field gets stored in the database at runtime?

Regards,

Don.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Changing messages.xml in xmlui

2016-09-30 Thread Donald Bynum
Thank you very much for pointing me in the right direction.  Your guidance 
has at least taken away one headache.

Regards,

Don.

On Thursday, September 29, 2016 at 2:49:16 PM UTC-4, Donald Bynum wrote:

> This is driving me nuts.  I want to change the content of various strings 
> in the messages.xml file in the xmlui application.  I have edited the 
> following:
>
> dspace/source/modules/xmlui/target/xmlui-5.5/i18n/messages.xml
>
> Then I repackage with mvn -U clean package
> Then redeploy with ant update
>
> All I end up with is the original messages.xml in the webapps/xmlui/i18n 
> folder.
>
> Obviously, I am editing the wrong source file.  Could someone please tell 
> me which source messages.xml file I should be editing in order to get my 
> changes in the build.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Changing messages.xml in xmlui

2016-09-29 Thread Donald Bynum
This is driving me nuts.  I want to change the content of various strings 
in the messages.xml file in the xmlui application.  I have edited the 
following:

dspace/source/modules/xmlui/target/xmlui-5.5/i18n/messages.xml

Then I repackage with mvn -U clean package
Then redeploy with ant update

All I end up with is the original messages.xml in the webapps/xmlui/i18n 
folder.

Obviously, I am editing the wrong source file.  Could someone please tell 
me which source messages.xml file I should be editing in order to get my 
changes in the build.


-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Which DSpace source files are the right ones to edit

2016-09-16 Thread Donald Bynum
I am updating the XMLUI version of  DSpace 5 and  want to change a few 
things.  Could someone tell me which of the numerous versions of the 
following files are actually the source files which I should change prior 
to rebuilding:

messages.xml file which gets deployed to webapps/xmlui/il8n

style.css which gets deployed to webapps/xmlui/themes/mirage/lib/css

news-xmlui.xml which ends up in dspace/config

Thank you

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Modifying Out of the Box XMLUI

2016-09-16 Thread Donald Bynum
Thank you for the direction.  Now, of course, the follow up questions:

1. I added one extra filter, specifically, I added   to the  set.  I recycled Tomcat, but then 
got an error regarding a missing bean.  I am now guessing that I need to 
rebuild DSpace in order for the new bean to get added to the package?
2. A related question, where can I find the full list of available search 
filters?  In the sample you pointed me to there are the following:







Is that the exhaustive list or are there more.  If more, where can I find 
the full list?

Thank you for your previous help and I look forward hopefully to answers to 
these two follow on questions.

On Thursday, September 15, 2016 at 10:31:38 AM UTC-4, Donald Bynum wrote:

> I might have needed to make this multiple posts, but hopefully I can get a 
> response to some or all of the following customization questions.  How do I 
> go about the following:
>
> 1. Adding extra selections to the search filter list.  Currently only 
> Author, Date of Issue, Title and Subject are in the list.  I'd like to add 
> other metadata items to the list
> 2. How can I make metadata fields mandatory.  Currently only Title and 
> Date of Issue are mandatory
> 3.Can I add extra metadata fields, or at least rename some of the metadata 
> labels.
>
> I'm guessing that none of the above is too complex.  But a push in the 
> right direction would be excellent.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: How do I change the text in the submission license?

2016-09-15 Thread Donald Bynum
That worked.  Thank you for the hint.

On Wednesday, September 14, 2016 at 11:41:29 AM UTC-4, Donald Bynum wrote:
>
> I am using the XMLUI implementation.  I cannot see any option in the 
> Administrative menu area to edit the license text.  I have updated the text 
> in the default.license file in both the dspacesource\config directory as 
> well as the dspace\config directory.  But I still don't see any change when 
> I get to the license part of a new submission.  What am I missing?  Do, I 
> need to stop and restart Tomcat?  Any assistance would be appreciated.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] How do I change the text in the submission license?

2016-09-14 Thread Donald Bynum
I am using the XMLUI implementation.  I cannot see any option in the 
Administrative menu area to edit the license text.  I have updated the text 
in the default.license file in both the dspacesource\config directory as 
well as the dspace\config directory.  But I still don't see any change when 
I get to the license part of a new submission.  What am I missing?  Do, I 
need to stop and restart Tomcat?  Any assistance would be appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Re: Unable to build install package with Maven

2016-09-09 Thread Donald Bynum
Talk about timing!  I found out this morning that there was indeed a 
firewall rule block Maven from getting out.  I just used a non-firewalled 
connection and, voila, all is good.  Thanks for the response.

Don.

On Tuesday, September 6, 2016 at 4:48:58 PM UTC-4, Donald Bynum wrote:

> I have just done a clean install of all pre-reqs and am trying to build 
> the install package.
>
> I am running mvn -Ddb.name=oracle package
> I have set up a proxy, but I get the following error:
>
> https\://oss.sonatype.org/content/repositories/releases/.error=Could not 
> transfer artifact org.sonatype.oss\:oss-parent\:pom\:9 from/to 
> sonatype-releases (https\://
> oss.sonatype.org/content/repositories/releases/)\: Connect to 
> oss.sonatype.org\:443 [oss.sonatype.org/107.23.166.173, 
> oss.sonatype.org/52.22.249.229] failed\: Connection refused\: connect
> http\://maven.restlet.org/.error=Could not transfer artifact 
> org.sonatype.oss\:oss-parent\:pom\:9 from/to restlet (http\://
> maven.restlet.org)\: Connect to maven.restlet.org\:80 [
> maven.restlet.org/52.43.2.203, maven.restlet.org/54.187.87.72] failed\: 
> Connection refused\: connect
> @default-sonatype-releases-https\://
> oss.sonatype.org/content/repositories/releases/.lastUpdated=1473193905106
> @default-central-https\://
> repo.maven.apache.org/maven2/.lastUpdated=1473193908173
> @default-restlet-http\://maven.restlet.org/.lastUpdated=1473193907148
> https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact 
> org.sonatype.oss\:oss-parent\:pom\:9 from/to central (https\://
> repo.maven.apache.org/maven2)\: Connect to repo.maven.apache.org\:443 [
> repo.maven.apache.org/151.101.32.215] failed\: Connection refused\: 
> connect
>
>
> Help would be much appreciated.
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.