G
gordingin
The best way to describe my problem is to show some code....
public class Test
{
int a;
public Test()
{
}
}
public class Test1
{
int b;
public Test1()
{
}
}
public class Test2
{
int c;
public Test2()
{
}
}
[WebMethod]
public void test(Test objTest)
{
}
When the IDE creates the proxy, ONLY the TEST class has generated (I
believe because the webmeth test uses it)
What I want is for my proxy class to ALSO have Test1 and Test2.
How can I FORCE this to happend. I wish NOT to create FAKE methods that
use Test1 and Test2 JUST so they get generated.
thanks
Ralph
public class Test
{
int a;
public Test()
{
}
}
public class Test1
{
int b;
public Test1()
{
}
}
public class Test2
{
int c;
public Test2()
{
}
}
[WebMethod]
public void test(Test objTest)
{
}
When the IDE creates the proxy, ONLY the TEST class has generated (I
believe because the webmeth test uses it)
What I want is for my proxy class to ALSO have Test1 and Test2.
How can I FORCE this to happend. I wish NOT to create FAKE methods that
use Test1 and Test2 JUST so they get generated.
thanks
Ralph