[confirm] activated DVB EPG Grabber causes error in tvserver (1 Viewer)

disaster123

MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    Hi!

    When i activate DVB EPG my TvServer (SVN25318) throws the following error on every startup:

    Code:
    2010-03-19 16:40:46.324800 [DVB EPG timer(11)]: Exception   :System.Runtime.Remoting.RemotingException: Der angeforderte Dienst wurde nicht gefunden.
    
    Server stack trace: 
       bei System.Runtime.Remoting.Channels.BinaryServerFormatterSink.ProcessMessage(IServerChannelSinkStack sinkStack, IMessage requestMsg, ITransportHeaders requestHeaders, Stream requestStream, IMessage& responseMsg, ITransportHeaders& responseHeaders, Stream& responseStream)
    
    Exception rethrown at [0]: 
       bei System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       bei System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       bei TvControl.IController.IsRecording(User& user)
       bei TvService.EpgCard.IsCardIdle(Int32 cardId)
       bei TvService.EpgCard.GrabEpgForChannel(Channel channel, IChannel tuning, Card card)
       bei TvService.EpgCard.GrabEpg()
       bei TvService.EpgGrabber.GrabEpgOnCard(EpgCard epgCard)
       bei TvService.EpgGrabber._epgTimer_Elapsed(Object sender, ElapsedEventArgs e)

    Stefan
     

    arion_p

    Retired Team Member
  • Premium Supporter
  • February 7, 2007
    3,373
    1,626
    Athens
    Home Country
    Greece Greece
    Re: active DVB EPG Grabber causes error in tvserver

    Please wait and try this again with RC2. There have been some fixes related to remoting disconnections.

    Edit: or you can try latest SVN.
     

    disaster123

    MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    AW: active DVB EPG Grabber causes error in tvserver

    Hi arion,

    i'm using SVN25318 this is latest SVN :) or isn't it? see my 1st post. Also i'm getting this on tvserver side (no client involved) what has this todo with remoting disconnections?
     

    arion_p

    Retired Team Member
  • Premium Supporter
  • February 7, 2007
    3,373
    1,626
    Athens
    Home Country
    Greece Greece
    Sorry, I didn't notice that.

    Also i'm getting this on tvserver side (no client involved) what has this todo with remoting disconnections?
    The DVB EPG Grabber uses remoting to call TVController (through IController).

    I will take a look to see if I missed anything.
     

    disaster123

    MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    AW: activated DVB EPG Grabber causes error in tvserver

    ah OK - it seems that the TVController isn't ready when the DVB EPG threas tries to connect to it. I've a lot of TVCards so it takes quite some time for the tvcontroller thread to be ready. I think there should be something like

    loop = 0;
    start:
    loop++;

    try {
    connecting..
    } catch
    connecterror
    }

    if (connecterror && loop < 10) {
    Thread.sleep(2000);
    goto start;
    }
     

    Users who are viewing this thread

    Top Bottom