Java Open source helpdesk +workflow project [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Any recommendation on which Java open source helpdesk system i should use ?
i need these criteria
- come with dynamic approval level support for certain request (workflow)

Some of the java basec Open source helpdesk system are
itracker
Java based open source help desk application with an emphasis on modularity. It's also provides i18n support.
JTrac
A Java based open source issue tracking system.
If you want create your own Help desk management system then u can look at Jboss JBPM frame work I have worked on it and done a simple work flow management system using JBPM
Hope this helps !

This is made in ROR but can be deployed in Java with JRuby : www.redmine.org. It's the best free project management/tracking tool I know in my opinion.

I'm not sure, but this may be helpful:
http://www.sugarcrm.com/crm/
They have a comnunity open source edition.
You can find additional software here, some of them are in java:
http://www.opensourcehelpdesklist.com/
Open source workflow engines in java:
http://java-source.net/open-source/workflow-engines

Related

Java OpenSource library for versioning files [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
My task description is something like this:
"Application should be able to store text/binary files in some filesystem storage. Every file has an author and date of uploading. Application should store all versions of files and provide abilities to review history/versioning tree".
We can't use DB solution here because we have another application that processes uploaded files and it requires original file version (build script which uses javac command). And this is not good idea to store files in the database.
So I'm looking for some ready-to-use solution and I want to avoid writing my own storage implementation.
I've googled some solutions and see jackrabbit library as a variant. It implements JCR specification. But also I saw some bad comments about JCR concept.
Please advise me something else.
Or is JCR good enough for my task?
That requirement sounds like source code version control. There are APIs for Git and Subversion, and probably for other less used systems. http://svnkit.com for example, a search for "git api" or "subversion api" will turn up others.

Regarding TOAD for Oracle [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is TOAD an open-source tool for developing applications.
I am planning to develop application in JAVA and exploring options on DataBase.
I am building an Enterprise Application.Kindly let me know which will be best Databse for this requirement.
Is TOAD an open-source tool for developing applications
No it's a licenced (non free) tool for connecting and working with databases.
I am planning to develop application in JAVA
I believe Eclipse is the usual free tool used for Java development
http://www.eclipse.org/downloads/moreinfo/java.php
Kindly let me know which will be best Databse for this requirement
Based on what requirements? If it needs to be free or open source, follow the MySQL and PostgreSQL suggestions, assuming it is a relational database you are after.
I am guessing that you want an open source DB. If that is the case mySql and PostgreSQL are both well respected Enterprise DBs. However based upon what you have specified it is hard to know what is suitable for your unknown application.

Java BitTorrent library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Are there any decent BitTorrent libraries for Java? I need to program a simple torrent client, but it would be great if I didn't have to write everything from scratch.
Turn's TTorrent is a pure Java bit torrent library.
Snark by Three Rings is a very lightweight bitorrent library that will give you basic torrent features.
Was originally written by Mark Wielaard. A github source can be found here https://github.com/akerigan/born-again-snark
I have created a Bitlet Fork on Github.
It's LGPLed, and it's running faster than ttorent.
Azureus (now named Vuze) gives you a plugin API. Using this API you can plug your code into Azureus. Start it inside your program, and listen/respond to its events.
Azureus is written in Java - is most likely not "simple" but quite likely "decent" :)
Adding to answer from jjnguy : The code seems to be at http://code.google.com/p/snark/ and not in the repo pointed to in the link you've provided.
I've not used it, but a Google search showed up YAIRCC. Describes itself as "A lightweight Java Bittorrent library and client".
Transdroid and Transdroid-desktop are libraries for adroid, that can also be used in java to control existing torrent clients.

Best open source Java library to incorporate Facebook functionality into a Java web app? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What's the best open source Java library to add Facebook functionality to a Java web app?
For the simplest and most updated API, I'm liking RestFB so far.
http://restfb.com/
Since facebook stopped supporting a Java API, the mantle of trying to provide one has been taken up by a google coding group:
http://code.google.com/p/facebook-java-api/
The API is provided under the MIT License.
This is by far the most advanced option if your technical chops are up to it:
http://code.google.com/p/batchfb/
It will automatically batch multiple requests so you don't have to think about it. BatchFB will even execute them in parallel if you overflow the maximum batch size and you're on a platform that supports asynchronous fetching (like App Engine).

Need recommendatins on a Java open source project for an academic study [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a Java open source project for an academic study on test cases.
I need a project with 20-40 KLOC and at least a 100 JUnit tests.
A project that was developed using TDD methodology is prefered.
Something that I can drop in eclipse and run all the tests with minimal overhead for setups.
Any recommendations?
It's amusing that you say "drop in eclipse", as some parts of eclipse were written with TDD and have relatively large numbers of LOC. You may want to go that route. I know, for example, that the Eclipse-based FORTRAN IDE project is one such endeavor.
The Spring framework? May be too large perhaps.
There are any number of projects you can use. You could look at the BouncyCastle encryption library.
http://bouncycastle.org/java.html
To help with your search, you could have a look at Koders (http://koders.com/), the source code search engine. They have information about LOC for open source projects.

Categories

Resources