Hi,
I developed custom metadata and data adapters using .NET. I also developed a StandAlone application that connects with the LS Proxies. The connection seems to be succesfully estabilished with no problems, but there're no updates in web page. If you look to the log text below, you'll see some messages saying that the NetStockListMetadata pass through 3 steps (starting, connecting and connected). The same doesn't happen with the NetStockListData.

------------------------
Lightstreamer Server starting in Moderato edition
27-Fev-08 15:09:01,426 |WARN |LightstreamerLogger.monitoring |main |JMX management features not available with the current license
27-Fev-08 15:09:01,456 |INFO |LightstreamerLogger.init |main |Started HTML Adaptor for JMX on port 6666
27-Fev-08 15:09:01,479 |INFO |LightstreamerLogger.init |main |Started JMXMP Connector for JMX on port 9999
27-Fev-08 15:09:01,494 |WARN |LightstreamerLogger.init |main |No users defined for Internal Monitor.
27-Fev-08 15:09:01,504 |INFO |LightstreamerLogger.init |main |Loading Metadata Provider AETEST
27-Fev-08 15:09:01,528 |INFO |.remote.transport.SocketTransport|main |Connecting...
27-Fev-08 15:09:01,699 |INFO |.remote.transport.SocketTransport|main |Connected
27-Fev-08 15:09:01,706 |INFO |emote.request_reply.RequestSender|ListMetadata Request Sender|Request sender 'NetStockListMetadata' starting...
27-Fev-08 15:09:01,707 |INFO |LightstreamerLogger.init |main |Loading Data Provider AETEST
27-Fev-08 15:09:01,711 |INFO |mote.request_reply.NotifyReceiver|ListMetadata Reply Receiver|Reply receiver 'NetStockListMetadata' starting...
27-Fev-08 15:09:01,717 |INFO |.remote.transport.SocketTransport|main |Connecting...
27-Fev-08 15:09:01,730 |INFO |.remote.transport.SocketTransport|main |Connected
27-Fev-08 15:09:01,780 |INFO |LightstreamerLogger.init |main |Pump pool size set by default at 2
27-Fev-08 15:09:01,803 |INFO |emote.request_reply.RequestSender|tockListData Request Sender|Request sender 'NetStockListData' starting...
27-Fev-08 15:09:01,805 |INFO |LightstreamerLogger.init |main |Events pool size set by default at 2
27-Fev-08 15:09:01,810 |INFO |LightstreamerLogger.init |main |Lightstreamer Server 3.4.7 build 1395 starting...
27-Fev-08 15:09:01,814 |INFO |mote.request_reply.NotifyReceiver|ockListData Notify Receiver|Notify receiver 'NetStockListData' starting...
27-Fev-08 15:09:01,815 |INFO |mote.request_reply.NotifyReceiver|tockListData Reply Receiver|Reply receiver 'NetStockListData' starting...
27-Fev-08 15:09:01,848 |INFO |LightstreamerLogger.init |main |Server "Lightstreamer HTTP Server" listening to *:8080 ...
--------------------------------------

I put a breakpoint in the constructor of my DataAdapter class, because I imagine that, when I webclient connects to my page, the LS Kernel will call the DataAdapter constructor for the new session that has been initialize, but nothing happens. In the same way, a breakpoint in the Subscribe method isn't reached.

Could you give me any idea about what I can be doing wrong?