Ruben Laguna's blog

Feb 14, 2008 - 1 minute read - hyperlink java navigation netbeans source

Adding Netbeans API source navigation to your Netbeans IDE

It took a while to find this entry describing how to include the Netbeans APIs source code. In short, you have to download the actual sources (the link in Geertjan’s Weblog is outdated) at http://download.netbeans.org/netbeans/6.0/final/zip/ (file netbeans-*-platform-src.zip) and then link that zip file to the platform in the platform manager. Make sure that the path doesn’t contains whitespaces (it didn’t work for me).

To access the Netbeans Platform Manager just do Tools -> Netbeans Platforms

Feb 14, 2008 - 1 minute read - netbeans notifydescriptor porting tutorial

Looking for NotifyDescriptor

I’m following the Netbeans Platform Porting tutorial and the NotifyDescriptor was not been recognized by the IDE. I found out that you must add the Dialogs API to the Libraries. Just right-click Libraries and then select “Add module dependency”. In the “Add Module Dependency” dialog just type NotifyDescriptor on the “Filter” field and it automatically select the Dialog API for you.

addmoduledependency.png

Dec 13, 2007 - 1 minute read - axis2 gsoap Uncategorized with_noio

gSoap WITH_NOIO

I’m using an Axis2 Java client to communicate with a gSoap web service. Axis2 rejects the gSoap response so I used wireshark to see what’s gSoap sending back. Now it’s clear what is the problem, gSoap is not sending the “HTTP/1.1 200 OK” as the first line. That’s because I’m using WITH_NOIO, so if your are having the same problem either write yourself the “HTTP/1.1 200 OK” line into the response or change the stdsoap2.c file to send the line anyway. just look for the line

Dec 4, 2007 - 1 minute read - analysis blood cat rabid rabies spain sweden Uncategorized vaccine vet veterinarie

Bringing a cat to Sweden from a EU country

I want to move my cat from Spain to Sweden and it has been hard to found the required procedures but finally I sent an email to hundochkatt@sjv.se and they answered the day after. All the information is on the sjv website. The most important things is that you must wait 120 days between the rabies vaccine and the blood analysis so you have to arrange this at least 4 month before the flight.

Nov 18, 2007 - 1 minute read - graph graphml java prefuse visualization

More graphs

I continue looking for graph visualization software. I rn into prefuse. Looks promising, take a look into the gallery to see some examples.

prefuse1.png

But it’s still only a toolkit so it means that I have to develop at least a little application to be able to visualize my graph. I tried using the examples that come with prefuse and they work but they are not enough. I just converted my data to GraphML and I was able to load it into the GraphView example. But I need to add some functionality to it before I can actually use it to analyze my graph. I’m not sure I can use prefuse to print out the graph anyway so I’m giving up for a while. This graph thing it’s taking too much time, but I will try to come back to it some day.