tools

Tools for testing web services

I want to perform integration testing of my webservices before shipping them out and am wondering if anyone can point out some tools for performing these tests automatically? I have both ASMX webservices as well as a few WCF ones. I want to be able to add this as a task to my build scripts and execute automatically if possible. What a...

Pointers to learn how to use DTrace

When I asked for tools to profile Rails apps, someone pointed at DTrace. Since I work on MacOSX stations and deploy on OpenSolaris, it is a valid way to go. But I have little knowledge of DTrace. Besides the usual suspect, Sun DTrace page and the avaliable info there, is there any other killer pointer to learn Dtrace out there? ...

Web Server Log Analysis Tool

Any suggestions for an accurate Web Log analysis tool to generate reports on the IIS logs? We used WebTrends, but I don't feel it was accurate. ...

Generate CRUD UI (Swing)

I am looking for a tool/framework to (automatically) generate a Swing user interface to perform CRUD operations on an underlying database. I would also like to configure the database fields that should be exposed. Something like django (via modelforms) or ruby on rails features, but in a Java desktop environment. ...

Entrek CodeSnitch with Windows Mobile 5/6

I have emailed Entrek and they seem to be asleep. Does anyone else here use Entrek CodeSnitch? If so, have you found a way to use it with Windows Mobile 5, 6, or 6.1 ? I really need to verify my application doesn't have any memory leaks, etc. And CodeSnitch does a great job of it. But only with Windows Mobile 2003. :/ Thanks. ...

What tool can do a visual comparison of two sections withing the same file?

Good file comparison tools were already discussed to the pain, but my problem is more exotic. Is there any visual text comparison tool (like WinMerge) that would allow me easily do visual comparison on two sections within the same file? I have multiple configurations within vcproj file and need to maintain them. It is a pain to do this ...

project-tracking tools for navigating with topic maps?

I'm having trouble with project management & am looking for a good tool that will be a good match for the way my brain works (very associatively). I'd like a bug-tracker but one that I can group tasks into topics and associate the topics to each other in a graph (see the Wikipedia entry on Topic Maps ) so that I can find & visualize easi...

Mysql Visualization Tools

Hey everyone, Does anyone know a good (preferably open source and cross platform) tool to allow simple visualization of mysql databases? I just need a tool I can quickly point at a database and it'll show basic table structure and field types, etc. Nothing too advanced or crazy. ...

Free MySQL synchronization tool

Hi, does anybody know some free tool for synchronization MySQL database (data and structure) like in Navicat for Windows ? ...

SQL Server to Oracle10g conversion

I currently have a SQL Server (Express 2005) database to hold some transaction/metadata that I now want to migrate to Oracle 10g express instance. Can you do this programmatically or is there a decent software tool that anyone can recommend? ...

Can VS2008 Testrunner run MbUnit tests or not?

Ok, so I keep seeing how VS2008 has this nice unit test display and I can see people running NUnit tests within it on Dimecasts.net and this article seems to imply that MbUnit v3 should have support for using visual studio's test runner. And yet I can't get it to recognize my tests. Has anyone else been able to get Visual Studio to run...

Good Visual Studio SVN Tool

I would like a good tool in Visual Studio that integrates with SVN. I used AnkhSvn about a year ago and wasn't pleased. I think TortoiseSVN is great! I would just like to have TortoiseSVN within Visual Studio See also http://stackoverflow.com/questions/48992/best-svn-tools ...

Small tools/scripts that help you so much?

On top of my head, especially for C/Linux developer: ack git-bz colorgcc colordiff moap and prepare-ChangeLog Is there some tool/script you couldn't work without, but that you feel others don't know so much? For instance, I just found: cppcheck ...

SNMP MIB development tool

Does anybody know a good tool to assist in the development of an SNMP MIB with correct formatting and syntax? If possible, it should be free and run under Linux. ...

Is there a tool that will find html tags with class attributes that don't have a corresponding class in CSS?

I have found http://www.sitepoint.com/dustmeselectors/ which does about the opposite of what I want, identifying selectors in CSS that aren't used in HTML. I want a tool that will find elements that have a class attribute but the class isn't defined in any CSS being loaded by the page. Thanks ...

Is there a tool to directly edit the contents of a Jackrabbit repository ?

I have a file system based Jackrabbit repository which I would like to view and edit directly. Is there an existing tool that allows me to view/edit/delete/add nodes directly? ...

Can the CheckStyle module "NeedBraces" work with nested if/else blocks?

We are using CheckStyle to enforce our style standards. One of the style rules we opted to include was the NeedBraces module. NeedBraces specifies that every block type statement (such as if, else, for) must have opening and closing curly braces. However, as far as I can tell it isn't working entirely correctly. This example will tri...

Tool to Show Class Hierarchies in .NET

Is there a way/tool that could show me all the classes/interfaces that implement a certain interface in my project? In Eclipse (Java) I would use the context menu "Open Type Hierarchy" option, which would show me a (pretty) tree of types that extend the selected type. Is there a tool to do the same in .NET? ...

Tracking memory usage in a tomcat webapp

Are there any good tools available to track memory usage In a tomcat java webapp? I'm looking for something that can give a breakdown by class or package. Thanks, J ...

Is there a CheckStyle rule to force if else keywords to be on the same line in an if/else ladder?

Based on this question it appears that the default template for CheckStyle will allow if else ladders to separate the if and else with a line break. Meaning I would like this code to be flagged as a violation: if (true) { System.out.println("20"); } else if (true) { System.out.println("30"); } Is there a Ch...