Is there a spring-data module for EMC Documentum? - spring-data

I'm using EMC Documentum content server 7.1 as my backend.
I have a lot of java boilerplate code which interract with the backend using DFC.
I'm wandering if a spring-data module exists for my use case.

There is a project at github:
https://github.com/Enterprise-Content-Management/spring-data-dctm
and body has to be at least 30 characters so this should be more than enough. thank you SO! :-)

Related

Connection Neo4j with Glassfish via Rest

Hello and thanks for your time!
I have been looking for solution long enough, but didn't find how to connect glassfish with built-in Jersey via Rest. Actually, it's not a point make it via Rest, but I found out that I can't do that anyway else, if I plan using not-embedded neo4j.
http://docs.neo4j.org/chunked/milestone/server-java-rest-client-example.html
In the manual I need to install Jersey, but that Jersey is different than Glassfish's one, there's no needed classes inside.
I cant just replace Jersey files in Glassfish because of GF incompability. So, do I need to use another Jersey client, foreing to Glassfish, for Rest queries?
I found also framework neo4j-rest-graphdb, but I'm not sure it will work and probably is what I need. http://m2.neo4j.org/content/repositories/releases/org/neo4j/neo4j-rest-graphdb/2.0.0-M06/
I found JDBC driver for Neo4j - is this a better for these purposes?
Thank you!
Neo4j uses jersey version 1.* while glassfish uses version 2.*
The API has been changed as you can check in their respective docs :
https://jersey.java.net/documentation/1.17/client-api.html
https://jersey.java.net/documentation/latest/client.html
You basically need to create a client in both cases, and then define a webresource in 1.*, and a webtarget in 2.*
The import paths were also modified.
For instance, the client in 1.* is :
import com.sun.jersey.api.client.Client;
while in 2.* it is :
import javax.ws.rs.client.Client;
You should check the API for more details.
I assume you are using Glassfish 4. You can use the Jersey client APIs bundled with it you don't need to install one. Some of the client class names in the Jersey2 client are different then Jersey 1

Hosting NuGet repository via Apache / http server

Is there any way that I can setup and host a NuGet repository on an Apache or related http server? I have code that I would like made available, and it turns out that I have an apache server as well. I know that there are public places that I could publish to, but I was curious about my own. Any ideas? Is it possible?
If you need it i made a little nuget server with php. It works on apache with mod_rewrite and IIS: http://www.kendar.org/?p=/dotnet/phpnuget :)
I needed this recently too and have started implementing it at https://github.com/grenade/apache-nuget-repo
There are some limitations, like you can't push to it (yet?). To have that, it'd need some server side upload handler and that would mean picking a technology like PHP, Node, Python, etc which compromises the current simplicity. I also haven't made any effort yet around NuGet api v3 support.
Right now it relies on some other copy process uploading the .nupkg files and triggering the manifest and html generators.
There's nothing stopping you come creating a NuGet server that runs on Apache, but I don't think there's anything currently available that'll do this.
The command-line nuget.exe runs on Mono, but I suspect getting the ASP.NET NuGet server running is a whole new ballgame :-(

GlassFish 3.1 Netbeanz 7 and REST web services

I tried to run example here http://download.oracle.com/javaee/6/tutorial/doc/gipzz.html and didnt work... There is a bug at netbeans site but i couldnt understand what they are talking about.
It seems that wadl file isnt created....
However a workaround for this was to use the servlet com.sun.jersey.spi.container.servlet.ServletContainer
and seems to work...
Does anyone knows whats wrong ??
The RESTful stuff in NetBeans and Glassfish definitely works, I use it on a daily basis.
Try following this NetBeans tutorial and see if you get anywhere. I've always found the tutorials on the NetBeans site too be very helpful, and easy to follow.
Just to answer..
The problem was that i did the mistake to use the glassfish version that came with Netbeans. This doesnt work . Installing glassfish seperately did work greatly.

How to integrate JasperReports Server and Cassandra

Is there any way to do the subject?
I mean is it possible in theory? Any pluging for the JasperReports Server available?
Or maybe there are some other reporting tools that could make something similar job like JasperReports Server?
Can not find any info on google.
Yes, there's a plugin for Cassandra, see: http://jasperforge.org/projects/bigdatareportingfornosqlandhadoop

best sql client for linux *box window manager

I am using ARCH Linux and Awesome3 WM.
I am looking for a good sql client for multi database include mysql postgre oracal.
Squirrel sql seems good, but I got a blank window after launch it.
Any solution for this problem or there is another better client for me?
http://henplus.sourceforge.net/
It's not a GUI, but it works with any database that has a JDBC driver (including MySQL, PostgreSQL, and Oracle), and I like it.
Several tiling window managers might have problems with java applications. Take a look at this page: http://awesome.naquadah.org/wiki/Problems_with_Java.
Especially try the workaround using wmname.
As a DB frontend you might try DbVisualizer. If you are using Eclipse to develop your application, "Eclipse SQL Editor" might be of interest. Sorry, Stackoverflow spam protection doesn't let me to provide a hyperlink for that one.