On Thu, Mar 29, 2012 at 09:27, Fábio Haertel Kochhann <[email protected]> wrote: > Hello people! > > I have a question about dspace... > > There is a DSpace repository in my university and I must implement a > semantic based search using an OWL ontology. > The ontology is ready, I just need to make dspace communicate with it. Thats > is also done... I customized some JSPS (like advanced.jsp) and I can do my > semantic search without any problems. > > The problem is that I used a fresh version of dspace (1.8) to implement the > semantic search, but I just realized the repository of my university DOES > NOT USE JSPUI... they use XMLUI. > That means I cant just update it with my changes, so I have nothing to show. > > I dont know how this XMLUI works... can It see my customized JSPS? I really > need to use jsp/java. > > I need to explain the situation to my teachers.
Hi Fábio, you have two options: 1) Make your changes work in XMLUI. The part of XMLUI you will want to modify in this case is called Aspects, which is just Java modifying an XML document called DRI. You can read more about it starting here: https://wiki.duraspace.org/display/DSDOC18/XMLUI+Configuration+and+Customization 2) Deploy JSPUI alongside XMLUI. By default, DSpace will build both JSPUI and XMLUI, all you need to do is configure your servlet container (Tomcat) to serve them on different URLs, e.g. http://myuni.edu will serve the XMLUI interface and http://myuni.edu/jspui/ will serve the JSPUI interface, both working on the same data. Regards, ~~helix84 ------------------------------------------------------------------------------ This SF email is sponsosred by: Try Windows Azure free for 90 days Click Here http://p.sf.net/sfu/sfd2d-msazure _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

