Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
0 Points
7 Posts
Oct 02, 2008 07:55 PM|LINK
Thanks james for a quick reply...here is the class code
using
{
[
}
Kochar_Rohit
0 Points
7 Posts
Re: web service error 'could not create type '
Oct 02, 2008 07:55 PM|LINK
Thanks james for a quick reply...here is the class code
using
System;using
System.Data;using
System.Web;using
System.Collections;using
System.Web.Services;using
System.Web.Services.Protocols;using
System.ComponentModel; namespace BHI.Rats{
/// <summary> /// Summary description for RatsUploadWebService /// </summary>
[WebService(Namespace = "http://tempuri.org/")][
WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(false)] public class RatsUploadWebService : System.Web.Services.WebService{
[WebMethod]public bool UploadFile(byte[] byteFileBuffer, string strFileName){
return true;}
}
}