View Single Post
  #1 (permalink)  
Old 11-13-2008, 6:03 AM
faisalid2000 faisalid2000 is offline
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Nov 2008
Age: 23
Posts: 1
Reputation: 0
faisalid2000 is on a distinguished programming path ahead
Question Consume Nusoap Service in VB.net without wsdl

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
Reply With Quote