Hi to every one,
I'm new to this forum and this is my first post
I want to use nusoap.php service in
vb.net 2005.I have read many articals but in that they are using wsdl link. such as
this
But the service i want to use not using wsdl. the sample code of client for that service is in php here
<?php
require_once "nusoap.php";
$parameters=array("700000","xxxx","1","9");
$soapclient= new soapclient('http://api.didx.net/webservice/WebGetDIDCountriesServer.php');
$SoapResult = array();
$SoapResult = $soapclient->call("getDIDCountry", $parameters,'urn:getDIDCountry');
?>
I want to use this in
vb.net.
How can i call the getDIDCountry method in
vb.net while there is no wsdl path as u can see
Thanks in Advance