YAWSQ (Yet Another Web Services Quiz)
Let me describe the following scenario:
Do you see a problem in the following implementation?
As always, answer and explanation will follow…
T1.asmx
public class T1
{
[WebMethod]
public string HelloWorld()
return "Hello World";
}
T2.asmx
public class T2
t1.T1 t1 = new OrderSrv.t1.T1();
return t1.HelloWorld();