var fDesc=new Array();
fDesc[0] = "Visual Web Service Client is an easy-to-use, interactive solution to testing and manipulating .Net and Java web services. VWS is your one-stop shop for managing multiple web services and getting all of the information that you require from a Web Service. This includes SOAP request and responses, data structures, formatted results, response graphs, and much more!
The Standard edition is our entry-level offering for manipulating web services. It sports an easy-to-use interactive user interface for manipulating web services. The Standard edition is a lower cost alternative for basic web service manipulations.
Main Features :
- Easy management of multiple end points
- Eliminate hours of tedious development time
- Intuitive, easy-to-use graphical interface
- One-click execution of web service methods
- Formatted results and dataset manipulation";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}