NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
Can someone help me to connect .net web services with nusoap


Joined: 10 Sep 2008
Posts: 1
Reply with quote
Can someone help me to connect .net web services with nusoap,

Here are the sample .net code to access the web services,

public partial class WebServiceTest : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
this.cmdExecuteAction.ServerClick += new System.EventHandler(this.cmdExecuteAction_ServerClick);
}

private void cmdExecuteAction_ServerClick(object sender, System.EventArgs e)
{
localhost.TestService TestService = new localhost.TestService();
ExecuteActionRequest request = new ExecuteActionRequest();
ExecuteActionResponse response = new ExecuteActionResponse();

/**** add person ****/
request.Action = Actions.Add;
Person person = new Person();
person.FirstName = "Johnny";
person.LastName = "Roberts Jr";
person.UserTypeCode = "MEM";
person.HomePhone = "555-555-5555";
person.HomePhone = "555-555-5555";
person.CellPhone = "555-555-5555";
person.PasswordHash = "dsfadsfasdfasdfasfzxcvcx";
person.PasswordSalt = "jrob";

request.Person = person;

response = TestService.ExecuteAction(request);
}
}

Anyone please help me how to write the coding in php to access .net web services with using nusoap.

Thanks in advance.
View user's profileFind all posts by arulSend private message
Can someone help me to connect .net web services with nusoap
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 1 of 1  

  
  
 Reply to topic