Ask a Question related to ASP.NET Web Services, Design and Development.
-
michael.kroeschel@ibs-ag.de #1
XmlInclude
Hi All
I have a difficult Question about my webservice! In my webservice I use
a lot of XmlInclude on one and some webservice. But I want to add the
XmlInclude at runtime to optimize my XML.
Again! I want to change this:
[XmlInclude(typeof(PartVO))]
[WebMethod(EnableSession=true]
public PartVO GetPart(string sGuid)
{
....
}
whit something like this:
[WebMethod(EnableSession=true]
public PartVO GetPart(string sGuid)
{
Webservice.XmlInclude(typeof(PartVO));
}
Any Idea
thx
Michael
michael.kroeschel@ibs-ag.de Guest
-
how or when to use XmlInclude ?
Hi I have a web service that returns a custom class in one of the service methods. public class MyClass { public string Name; public string...



Reply With Quote

