Monday, September 14, 2009
JavaBooks.org is LIVE
So, whenever you need info about a Java publication or related (we include html, javascript, css, xml, development methodologies, JVM languages, etc) you're sure to find it here. Of course, we'd more than glad if you shared your opinions and feedback too!
And, to make things even simpler, we even offer you the possibility to purchase some titles. If you have an account, you can access the discount coupons and buy a lot cheaper!
Concluding - visit www.javabooks.org - choose, read, share! Learning is now simple!
Tuesday, January 20, 2009
Jobmate Portal BETA is LIVE
The BETA version will allow searching and viewing of videos, articles, laws, trainings and books as well as creating CVs specially designed to promote the owner even if they lack hands on experience. Moreover, users have access to a personal inbox and can send messages to other users they know.
Another important part of Jobmate BETA is the forum, which will host all the interesting discussion that may arise.
Apart from these, Jobmate has an attorney ready to answer all your questions. FOR FREE! Simply create an account and find the answer to all your work related legal problems.
So, access http://jobmate.ro and start creating your CV, search labor laws and watch interesting videos that will surely help you learn extremely useful stuff!
Thursday, October 23, 2008
Say NO to Internet Explorer 6!
What we've done to continue their work is a jQuery (http://jquery.com/) plugin which encourages people to upgrade their browser to IE 7. The plugin is configurable, and easily extendable. Currently, the banner that promotes IE 7 is internationalized in only 2 languages: Romanian and English. If you wish to help us extinct IE6, feel free to send me the translation and I'll add new banners! All input can go here: radu.tanasa [at] lightwaysoftware [dot] com

The plugin is licensed under LGPL 3, so you are free and encouraged to use it in any kind of application, commercial or not.
You can download jQuery noie6 plugin from here: http://lightwaysoftware.com/jquery/jquery.noie6.v0.1.zip
For any suggestions or criticism please do contact me! Hope to see the dawn of the IE6 era soon!
Thursday, February 21, 2008
Artistsbay - the first Community Driven Business Application
Artistsbay.org will be an international meeting place for plastic artist & art lover communities across the globe. Its target is to unite, promote and enhance all activity related to art. In order to fulfill this goal, artistsbay.org will offer artwork publishing and promotion, facilitated artwork selling in organized auctions, cultural exchange, knowledge base access and many others. Besides all these, we intend to deliver the first Community Driven Business Application, meaning that you dictate its development directions and features. If you're interested in participating in the rather complex, challenging, but entertaining process of development, feel free to send your suggestions via email at office@artistsbay.org. Moreover, we invite you to subscribe to our newsletter at http://artistsbay.org and keep in touch with Artistsbay's progress. Your vote of confidence can make this come true: a central point of contact between artists and art lovers.
Monday, January 14, 2008
HTTPS on JBoss 4.2.2
Generate a keystore with the following command: keytool -genkey -alias server-alias -keyalg RSA -keystore .keystore -validity 90
Next, copy the .keystore file into the jboss conf file. (usually ${JBOSS_HOME}/server/default/conf)
Secondly, you need to go into the deploy folder, and then into jboss-web.deployer. There, you should find server.xml. Open the file and identify the commented part referring to SSL. Remove that completely and replace it with the following:
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false"
strategy="ms" address="${jboss.bind.address}"
keystoreFile="${jboss.server.home.dir}/conf/.keystore"
keystorePass="password"
truststoreFile="${jboss.server.home.dir}/conf/.keystore"
truststorePass="password"
sslProtocol="TLS"/>
Normally, when you start jboss, the following URL should be available: https://localhost:443/jmx-console/index.jsp
Lightway Software brand relaunched
Monday, December 10, 2007
EL ignored
1) For a JSP 2.0 container, you should be using JSTL 1.1, and you should have your web application declared as a Servlets 2.4 web app by using the Servlets 2.4 XML Schema.
2) For a JSP 1.x container, you should be using JSTL 1.0, and you should have your web application declared as a Servlets 2.3 web app by using the Servlers 2.3 DOCTYPE.
However, there's a way to cheat, but it's not recommended. You can use <%@ page isELIgnored="false" %> to ensure EL is not ignored.