Reply to thread

Well I also got the latest SVN version of the TV-Server, but (like other users had noticed) the plugin isn't working.


It can't get the channelgroup/channels (ServerInterface.cs public bool setup()):

[code]

                RemoteControl.Instance.GetDatabaseConnectionString(out connStr, out provider);

            Gentle.Framework.ProviderFactory.SetDefaultProviderConnectionString(connStr);


                me = new User();

                me.IsAdmin = true;

                groups = ChannelGroup.ListAll();


                foreach (ChannelGroup group in groups)

                    Console.WriteLine(group.GroupName);

[/code]


This won't return any group, connStr is set by GetDatabaseConn... but it can't select ChannelGroups. Does anyone knows a solution, since the SVN version is far more stable.


EDIT:

Ok got it working! Can someone compile it with the gentle.txt (rename it to Gentle.config and overwrite the current one in the SVN).


Now you can use the latest TV-Server (only channel switching isn't working here...).


Btw a question, how did you compile it, I only got a .exe, which is working, but that isn't a .dll, if I change .exe to .dll it is missing the Gentle.config file, so it isn't working... (you probably have to compile it with the .dll)


Btw2: If there is a developer who wants to cooperate to make this script working (and extend it)... I'm in...


Top Bottom