Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need to design for searching for a file application in Java. I have planned to design it with
Socket
Web services with javaws
Which is faster in application which searches for file from a distributed system?
I'd go with option 2.
Primary Reasons
Less coupling between client and server
Ability to scale
Ability to incrementally add new apis
Pre-built libraries that will help you get this done fast.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have got a requirement to connect Active directory systems through LDAP URL. I need to start this development very easiest way and looking to deliver this ASAP. Kindly share your thoughts.
I will be using Oracle JDeveloper for this development.
pure java example:
http://www.adamretter.org.uk/blog/entries/LDAPTest.java
If you can use Spring, go with spring-ldap:
http://projects.spring.io/spring-ldap/
Spring is really good library to handle ActiveDirectory connectivity. Just read the manual thats all.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Co-Browsing in the context of web browsing, is the joint navigation through the Internet by two or more people accessing the same web pages at the same time.
for more information please have a look at http://en.wikipedia.org/wiki/Cobrowsing
here are some paid alternatives which does this
http://www.livelook.com/co_browsing.asp
http://www.unblu.com/
any help regarding what technology is being used to implement this or technical specifications ?
i am trying to implement co-browsing using java, has any one have prior experience with that if its possible or any existing java library doing the same?
if there is not any solution what approach should i use to implement this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am developing a web application that will be sold later on, and was wondering how to add the concept of license to it, so that I can avoid it's piracy, and it can be used for given period of time only?
You can have a centralize licence server , have a DB to check user's status , expose this thing using webservice so that any of your app can consume it.
I've seen Java enterprise tools do the usual serial number/license file thing. Worked pretty well for them. All you'd need to do is put some static code in the application that would execute when the JavaEE container loads the WAR file and have that check the serial number.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I would like to host my own version of the boilerpipe web API (http://code.google.com/p/boilerpipe/). The appspot site is http://boilerpipe-web.appspot.com/
I would like to self host it. Can someone give me directions on how to use the Boilerpipe JAR to create a webpage ?
I am the author of boilerpipe.
Boilerpipe's demo web application boilerpipe-web is not part of the boilerpipe-core jar.
To imitate its functionality you will need to write some Java Servlet around boilerpipe-core.
I'll probably release the source of boilerpipe-web at some point, so you don't have to bother with.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to create a website for users to upload videos, but I want to do some compression/conversion on the client-side first before actually uploading to my servers. This should cut down on upload times I hope.
My inital thought is to make a Java Applet, since I imagine Flash wouldn't have ffmpeg on the client-side. I'm not sure what version of Java to use, or whether to use Java Web FX. I haven't touched Java in years, so I don't even know what IDE or SDK to use (I'm on a Mac).