私は何かをしようとしていますが、C# で許可されているかどうかはわかりません。
ここに静的ではない Web メソッドがあります。
[WebMethod]
public Byte[] recStuff(Byte[] recstuffile)
{
myfile = Unzip(muStuff);
return null;
}
ここに私のクライアントがあります:
public static XmlDataService.StufServiceSoapClient lhaservice = null;
public static void Autoupload()
{
string fileContents = File.ReadAllText(XMLStuffName);
string text = fileContents;
byte r2 = Zip(text);
lhaservice.recStuff(r2);
}
次のエラーが表示されます:
Object reference not set to an instance of an object.
ここで何ができますか?