Insert purchase order using web service URGENT!!
How do I insert purchase order from company to supplier's database using web service? what are the codes? Please help, thank you!
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joginder BangerPosted Jan 23, 2015, 1:55 AM
Huimin
first of you need a what is web service. No great difference between simple method and web service method. I share a one demo example web service.
//this Namespace is must [WebMethod] public ClientData[] GetClientData(int Number) { ClientData [] Clients = null; if (Number > 0 && Number <= 10)
{ Clients = new ClientData[Number]; for (int i = 0; i < Number; i++)
{ Clients[i].Name = "Client " + i.ToString(); Clients[i].ID = i;
}
} return Clients;
}
if need more information about the web service hit this link