M
md
Hello
I've created a webservice in .NET and trying to get the results in Word
2003/VBA. I'm using the webservice toolkit (2.01) to create the proxy code.
The toolkit creates the code, but it's not creating the proxy code for the
TestClass. I tried other sample (like the WeatherSample), then it's creating
the correct proxy code. What can be wrong?
[Serializable]
public class TestClass {
public string Test;
}
[WebMethod]
public TestClass[] ReturnItems(){
TestClass[] items = new TestClass[0];
items[0] = new TestClass();
return items;
}
Thanks
I've created a webservice in .NET and trying to get the results in Word
2003/VBA. I'm using the webservice toolkit (2.01) to create the proxy code.
The toolkit creates the code, but it's not creating the proxy code for the
TestClass. I tried other sample (like the WeatherSample), then it's creating
the correct proxy code. What can be wrong?
[Serializable]
public class TestClass {
public string Test;
}
[WebMethod]
public TestClass[] ReturnItems(){
TestClass[] items = new TestClass[0];
items[0] = new TestClass();
return items;
}
Thanks