Archive for the ‘Java’ Category

Create Combined Java/Flex project in Flex Builder

Wednesday, April 23rd, 2008

One of the new features in Flex Builder 3 is that you can create a combined Java/Flex project. This feature was added to help developers who code on both server side and client side parts for a project. Also it really helps development by keeping all code together for a ...

Sending extra data in Java Exceptions to Flex Clients

Tuesday, April 22nd, 2008

When building Java services there is always need for handling exceptions thrown by all kind of sources. Wether those are ConstraintViolationException thrown by wrong database queries, NullPointerException thrown by wrong data manipulations or any other exceptions, all of them should end up handled in the Flex application calling the services. One ...