Tuesday, September 30, 2008

Coldtags suite ver. 3.50

A new release of Coldtags suite is ready. Now the largest set of custom JSP tags supports over 350 components.
Scanning the latest development check out HTTP HEAD taglib. This component lets you for example gets content type and size for the remote file, as well as simply check out file (site) availability:

<%@ taglib uri="taglib.tld" prefix="h" %>

<h:HttpHead url="http://www.servletsuite.com/servlets/sos.zip" id="A"/>

file size: <%=A.get("contentLength")%>

Attribute url points here to some remote file (or site).

Sunday, September 28, 2008

Annotated links - 2

A small mashup lets you create annotated links. Provide an URL (list of URL's), add a text note and get one Tiny URL for the whole pack. So you can publish annotated links on your site for example. Link could be shared via email, twitter or facebook. See it here - Annotated links.

Friday, September 26, 2008

QR code in JSP

QR codes saga on our site continues. Now Coldtags suite includes a component for QR code generation. Create QR codes right from your JSP (and/or Coldfusion) pages with QR code maker taglib.

Monday, September 22, 2008

QR code maker

A new mashup lets you generate QR codes for your own data. The idea is very transparent - type (copy/paste etc.) the text and the system will do the rest. A dedicated mobile web page for you data as well as the appropriate QR code will be automatically generated. It is a simplest way present your own info for mobile users. You can put the generated QR code on the physical objects for example and anybody will be able to read your data right from his/her mobile. See it here.

Sunday, September 21, 2008

QR map - 3

QR map mashup (lets you create QR codes for maps) has been updated. See the updated version here

Tuesday, September 16, 2008

My way

Need to find something on your way to home, to work or to school? Mashup MyWay lets you combine the driving directions on Google Maps and local search together. So you will see points of interest as well as driving directions on the same map. What is else:
start/end points could be dragged right on the map
the route could be shared via email, twitter or facebook

Monday, September 15, 2008

JSOS 6.0

JSOS 6.0 is ready. See it here

Saturday, September 13, 2008

XSS cleanig

XSS filter - filter intercepts every request sent to your web application and then cleans any potential script injection.

Monday, September 08, 2008

Stock quote

One of the oldest component in our JSP suite suite is updated. Stock quote taglib is the simplest way for obtaining finance data in your JSP (or Coldfusion) application:

<%@ taglib uri="taglib.tld" prefix="get" %>

<get:Quote symbol="JAVA" id="A" />
Chart: <img src="<%=A.get(9)%>"/>

Java