You can use them, you can change them, you can trash them
I hope that in a way or in another these slide can help you!
During GWT debugging, if you are making a RequestBuilder on a different domain without using JSONP, you may have this problem.
To fix it you must configure Header in order to accept requests from other domains. In Apache HTTP Server you can set them in the VirtualHost configuration of bar.com using the directive Header set.
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Headers "X-Requested-With"
Or better filtering by your origin – see also https://developer.mozilla.org/En/HTTP_access_control#Access-Control-Allow-Origin
Header set Access-Control-Allow-Origin "http://foo.com"
Header set Access-Control-Allow-Headers "X-Requested-With"
I’m on train returning to home after a beautiful and really interesting day at the Italian Agile Day – http://www.agileday.it. The event is self organized and rocks!
The agenda was rich of interesting themes - http://www.agileday.it/front/programma-2011. I’ve made difficult choices (and I missed the keynote
…):
All of the speaker were really effective and inspired me for my future personal development:
All of these lesson learned in just 4 hours of conference! What a great day.
This is my presentation at PMI-NIC conference on Complex Project Management held in Milan Nov 11th 2011.
I’m participating to a group of study on Resilient Contracting with the aim of investigating the ways to manage a contract where the project is complex and cannot be planned upfront.
In the below slides I have presented how the Open Source community has addressed this problem moving from the contract game approach to a collaborative game where only the background rules are defined and the ethic and willingness of giving emerge.
During the past week we tried out WebSockets to monitor and control devices on the field. In 2008 we presented at SVG Open Day an implementation based on SVG and AJAX that, using polling, monitor and control a lego MindStorm - http://www.svgopen.org/2008/papers/47-Real_time_monitor_in_SVG_a_use_case_in_Machining_Technology_HMI.
During these years technology is evolved passing to Comet and now to WebSockets. In 2010 we tested WebSockets but aren’t not so well support as are now. Kaazing Company – http://www.kaazing.com – has proposed on the market a WebSocket gateway really interesting and easy to integrate.

We’ve tried the HTML5 edition modifying the Lego Mindstorms SVG page built on 2008, that monitors and controls lego, with the Kaazing WebSocket library and jQuery. In the video above two examples.
http://www.youtube.com/watch?v=aF-qf1P4Q48
http://www.youtube.com/watch?v=yJSZ-00CBQM
WebSockets are leveraging the messaging systems to the Web helping companies to move from desktop applications to more reliable and device independent web applications. These new kind of end user application can be used now also in the industrial world without compromise the user experience.
Cloud Found (https://www.cloudfoundry.org/) is a VMWare PAAS that has been released as open source and can be installed privately on your infrastructure. Once you have your cloud installed you can start to develop with Eclipse and publish your application in the new Private Cloud. Here are the steps to follow.
192.168.9.23 javatest01.cloudbox.net.intre.it192.168.9.23 drawbridge.cloudbox.net.intre.it192.168.9.23 api.cloudbox.net.intre.it192.168.9.23 cloudbox.net.intre.it |















Here are two sketch of the board. The idea is that you draw a card with the project vision and than you start:
In this first week of work we have produced a concept of Agile: The board game and tested it on a sprint. Here are some photos of the test session. The sprint execution has been done using lego. The project will be available as open source in the mid of November 2011 here https://code.google.com/p/agile-the-board-game

Using Hibernate and JPA you cannot have two classes with the same name (on different packages) mapped. This raise an error at runtime:
Caused by: org.hibernate.DuplicateMappingException: duplicate import: MyClass refers to both com.intre.MyClass and com.dummy.MyClass (try using auto-import=”false”)
To solve this issue on the Entity annotation of com.intre.MyClass and com.dummy.Class add the property name.
package com.intre;
@Entity(name = “com.intre.myclass”)
@Table(name = “MyClass”)
public class MyClass …
package com.dummy;
@Entity(name = “com.dummy.myclass”)
@Table(name = “MyClass”)
public class MyClass …
Recent Comments