IDTVG and Co: how to merge meetic and expedia
With all the Web 2.0/Social Networking noise we are all used to "virtually socialize", but now you can use it to do more and improve the quality of your trips
With all the Web 2.0/Social Networking noise we are all used to "virtually socialize", but now you can use it to do more and improve the quality of your trips
Posted by
Tug Grall
at
7:18 AM
0
comments
Labels:
fun
I am sure that most of you already know the "Prototype Windows" project that provides a very powerful way to create windows and dialogs inside your Web pages. If you do not know it, take a look it's awesome!
Sebastien Gruhier, aka Mr Proto, and others have done a terrific job allowing developers to integrate exciting features with few lines of code. Find more on the PWC site or on Mr Proto's blog.
In addition to the Windows API, you can also take a look to the Tranparent Message, Prototype Carousel and Prototype Graphics projects
Posted by
Tug Grall
at
6:57 AM
0
comments
A friend of mine was asking me how to generate a unique ID for his application... As you probably already know Java SE 5 has introduced the java.util.UUID class to easily generate Universally Unique Identifier (UUID). As usual Wikipedia is a great starting point to learn more about UUID.
Generating the unique ID is as simple as calling the method UUID.randomUUID() in the class. This will give a new instance of UUID that you can now manipulate; for example do a toString() to get the UUID string representation as describe in the specifications; for example 5462dc18-4653-42d1-b4e4-22fc970a6ce5
Resources:
Posted by
Tug Grall
at
2:13 AM
3
comments
This morning I was helping a customer to debug some Web Services deployment issues, when I simply realized that the error was coming from the fact that he was trying to deploy a JAX-RPC service on a OracleAS 10gR2 server; where it is not supported/available. This give me the opportunity to clarify the different versions of the Oracle Application Server and their related Java Enterprise Edition release support.
| Oracle AS Release | J2EE/Java EE Release | Comments/Extensions | Certification Matrix |
| 11.1.0.0 | Java EE 5.0 |
|
|
| 10.1.3.x (Oracle AS 10gR3) |
J2EE 1.4 |
|
OTN Certicification Matrix |
| 10.1.2.x (Oracle AS 10gR2) |
J2EE 1.3 | OTN Certicification Matrix | |
| 9.0.4.x | J2EE 1.3 | OTN Certicification Matrix | |
| 9.0.3.x | J2EE 1.3 | OTN Certicification Matrix |
Posted by
Tug Grall
at
6:22 AM
3
comments
I was in Paris last week end so I took this as a good opportunity to visit the city using the new "Velib" system. Velib is a new self service rental bike system that the city of Paris and JCDecaux put in place on July 15th. So you can take and return any of the 10,000+ bikes
in any of the 750 locations all aroun Paris. I believe that Paris wants to a total number of 20,000 bikes for 1,400 locations.
Posted by
Tug Grall
at
1:47 AM
1 comments
I was helping a customer with his BPEL in cluster and we needed to follow the flow and on which machine the instance was running.
java.net.InetAddress addr = null;
try {
addr = java.net.InetAddress.getLocalHost();
}
catch (Exception e) {
System.out.println("EXCEPTION :"+ e);
}
setVariableData("HostNameVariable", addr.getCanonicalHostName());
Posted by
Tug Grall
at
1:46 AM
0
comments
It is probably an old tipe, but I have just configured my Windows XP Parallels VMs to use my MacBook buit-in iSight Web Cam using the driver that you can find here: - Download iSight Driver for XP The site states that it does not work with Parallels, but I am using the release Build 3170 RC3 and I do not have any issue.
Posted by
Tug Grall
at
11:24 PM
13
comments
Labels:
OSX