Archive for the “Web tools” Category


Ever since GotDotNet shut down, it’s become very difficult to find a copy of the .NET Web Service Studio 2.0.

So, as a public service, I am providing it for download free of charge here.

If you’re not familiar with it, here is a blurb from the readme and a screenshot:

.NET Webservice Studio is a tool to invoke webmethods interactively. The user can provide a WSDL endpoint. On clicking button Get the tool fetches the WSDL, generates .NET proxy from the WSDL and displays the list of methods available. The user can choose any method and provide the required input parameters. On clicking Invoke the SOAP request is sent to the server and the response is parsed to display the return value.

This tool is meant for webservice implementers to test their webservices without having to write the client code. This could also be used to access other webservices whose WSDL endpoint is known.

wsstudio2.0.jpg

Comments 7 Comments »

I was messing with the Google Web Toolkit yesterday. My friend Jeff is a big fan of it, and he is actually using it for a Navy system that I once worked on. He’s gotten a couple of his coworkers on the bandwagon, so I started messing with it.

If you don’t know, GWT is a tool for creating AJAX applications. You write code in Java, and the GWT compiler translates it into Javascript instead of byte code. Separating the client side from the server side is built in, and they have done things to simplify RPC calls back to the server from the client.

First thing I liked is that the installation is dead easy. Download a zip file, explode it somewhere, and to make things simple, add it to your execution path. There is nice eclipse integration too. Adding and removing widgets (UI elements) from the page was also dead easy, and hooking up listeners to react when things are messed with was a breeze.
Read the rest of this entry »

Comments No Comments »

I have been playing with Google Analytics the past few days. It’s an extremely cool web monitoring system, with great graphs and such. Shame it’s so poorly documented and sometimes doesn’t work.

Installing GA is really simple - you sign up and get an account, which gives you a unique id number for the site(s) you want to monitor. You can have many ID’s per GA account. Once you have the id, you paste the supplied script into the bottom of each page you want to monitor. The script looks something like this:

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-#######-#"; // your site id goes here
urchinTracker();
</script>

All very well and good, except when I tried putting this piece of code into the footer of my Wordpress site, Google Analytics says it can’t find the code, when it’s definitely there when I do a view source on the page. Just to make sure it wasn’t some sort of Javascript thing, I even pulled up the page using Telnet, and I can see the script there. Can’t find any fixes for this on the web, either. Pity, too, because Google Analytics is something I’d really like to use.

Comments 1 Comment »