You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we're having some trouble using your package for our App. When we try to tun the sample code, we get the following exception:
[...]
IDataSubscriber subscriber = new Subscriber();
DDPClient client = new DDPClient(subscriber); //<--Exception is thrown here.
client.Connect(our_url);
client.Subscribe(channel);
}
public class Subscriber:IDataSubscriber
{
public void DataReceived(dynamic data)
{
try
{
if (data.type == "sub")
{
//Console.WriteLine(data.prodCode + ": " + data.prodName + ": collection: " + data.collection);
}
}
catch(Exception ex)
{
throw;
}
}
System.IO.FileNotFoundException
HResult=-2147024894
Message=Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
Source=DDPClient.Net
FileName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
StackTrace:
at Net.DDP.Client.ResultQueue..ctor(IDataSubscriber subscriber)
at Net.DDP.Client.DDPClient..ctor(IDataSubscriber subscriber)
at YT_Player_Test.MainPage.d__0.MoveNext()
InnerException:
The text was updated successfully, but these errors were encountered:
We were also trying to just use the project directly from Github instead of the nuget package, as it was mentioned in another issue, but with other problems coming up.
One was about Threads, which seem not to be available for WP8.1. Another one was, that we couldn't make custom references to the dll's.
Sony, can we expect some help from your side the next time or not? It's no problem if not, but we have to know that we can find another solution and tell our project head.
Hey Sony,
we're having some trouble using your package for our App. When we try to tun the sample code, we get the following exception:
System.IO.FileNotFoundException
HResult=-2147024894
Message=Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
Source=DDPClient.Net
FileName=System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
StackTrace:
at Net.DDP.Client.ResultQueue..ctor(IDataSubscriber subscriber)
at Net.DDP.Client.DDPClient..ctor(IDataSubscriber subscriber)
at YT_Player_Test.MainPage.d__0.MoveNext()
InnerException:
The text was updated successfully, but these errors were encountered: