N
news.microsoft.com
Hi all,
I have a class LiveSupportClass.Config
[Serializable()]
[XmlRoot("LiveSupportClass.Config")]
public class Config : ISerializable
{
.......
My webservice return this object
[WebMethod (Description="LiveSupportClass.Config Object")]
[XmlInclude(typeof(LiveSupportClass.Config))]
public LiveSupportClass.Config LoadSettings (string idclient)
{
.......
Now my problem I the client (Win form) the return of my webservice is not
a LiveSupportClass.Config but mynamespace.webserviceclass.Config
Where is the problem
thanks for your help or suggestion
Costa Lino
I have a class LiveSupportClass.Config
[Serializable()]
[XmlRoot("LiveSupportClass.Config")]
public class Config : ISerializable
{
.......
My webservice return this object
[WebMethod (Description="LiveSupportClass.Config Object")]
[XmlInclude(typeof(LiveSupportClass.Config))]
public LiveSupportClass.Config LoadSettings (string idclient)
{
.......
Now my problem I the client (Win form) the return of my webservice is not
a LiveSupportClass.Config but mynamespace.webserviceclass.Config
Where is the problem
thanks for your help or suggestion
Costa Lino