Hi at all, I'm trying to LISTEN with WebOrbClient and C# with Subscription messaging.
Quote:
webOrbClient = new WeborbClient("http://localhost:6802/weborb.aspx", "SamplePollingDestination");
ResponseHandler
Quote: public void serverListener(Object obj)
{
try
{
MessageBox.Show("message received");
}
catch (Exception e)
{
MessageBox.Show("SamplePollingDestination: " + e.Message);
}
}
public void serverListenerFault(Fault fault)
{
MessageBox.Show("SamplePollingDestination fault: " + fault.Message);
}
My Problem is that will never be called serverListener.
But the Messaging Destination work fine with WEBORB TEST DRIVE (i have 'send' a message' and i received it in WEB ORB TEST DRIVE console).
I can SEND from C#, but the C# never receive ANY MESSAGE.
What i have wrong?
D: