Re: [grpc-io] Re: Grpc Server not working: Exception: "Received RST_STREAM with error code 8".

2017-03-01 Thread matthias.weiser via grpc.io
I think that the issue was on my end. 
I did not realize that I need to propagate the assemblyBinding changes in 
the .exe.config.

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/e9648c37-4b6a-4aa5-ac0f-ad2e0c247ba0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [grpc-io] Re: Grpc Server not working: Exception: "Received RST_STREAM with error code 8".

2017-03-01 Thread matthias.weiser via grpc.io
No special processing on the server side.
It seems I can fix the issue if I bind both localhost and the machine IP 
when starting the gRPC server. 
In 1.0.0 it was sufficient to use only the machine IP.
I will need to do some further testing to confirm this.

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/7e009ad5-72cf-4f01-a493-1d9c3c283088%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[grpc-io] Re: Grpc Server not working: Exception: "Received RST_STREAM with error code 8".

2017-02-28 Thread matthias.weiser via grpc.io

>
> Unfortunately I see nothing server side - I have unfortunately no idea 
>> what I can do.
>>
> I was first suspecting that the error was due to an overload as I am doing 
some CPU prone stuff, but now I am receiving the error in another service 
which is relatively small.
Could you advise me how I can trace the interop between C# and the native C 
library? 

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/0f083cfa-0407-4d9e-b600-7e5fdbc3b09b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[grpc-io] Grpc Server not working: Exception: "Received RST_STREAM with error code 8".

2017-02-15 Thread matthias.weiser via grpc.io
Hi,
I am integrating currently gRPC C# into a program which uses several third 
party libraries.
Thus it is also forced to use x86/32 bit.
When calling even a trivial server implementation I receive "Received 
RST_STREAM with error code 8".
The full stack can be found below.

The used Nuget packages for gRPC are
  
  
 


Could you point me into a direction to debug the issue?
I tried set 
[Environment]::SetEnvironmentVariable("GRPC_TRACE", "all", "User")
[Environment]::SetEnvironmentVariable("GRPC_VERBOSITY", "DEBUG", "User)
but it did not help.

The stack trace is...

Grpc.Core.RpcException was unhandled
  HResult=-2146233088
  Message=Status(StatusCode=Cancelled, Detail="Received RST_STREAM with 
error code 8")
  Source=mscorlib
  StackTrace:
   bei 
System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   bei 
System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task
 
task)
   bei Grpc.Core.Internal.AsyncCall`2.UnaryCall(TRequest msg)
   bei 
Grpc.Core.Calls.BlockingUnaryCall[TRequest,TResponse](CallInvocationDetails`2 
call, TRequest req)
   bei 
Grpc.Core.DefaultCallInvoker.BlockingUnaryCall[TRequest,TResponse](Method`2 
method, String host, CallOptions options, TRequest request)
   bei 
Grpc.Core.Internal.InterceptingCallInvoker.BlockingUnaryCall[TRequest,TResponse](Method`2
 
method, String host, CallOptions options, TRequest request)
   bei ServiceDefinitionClient.Logout(LogoutRequest request, 
CallOptions options) in ServiceDefinitionGrpc.cs:Zeile 287.
   bei Logout(LogoutRequest request, Metadata headers, Nullable`1 
deadline, CancellationToken cancellationToken) in 
C:\Users\Dell\Documents\GitHub\ServiceDefinitionGrpc.cs:Zeile 283.
   bei Program.Main(String[] args) in Program.cs:Zeile 17.
   bei System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, 
String[] args)
   bei System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence 
assemblySecurity, String[] args)
   bei Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
   bei System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   bei System.Threading.ExecutionContext.RunInternal(ExecutionContext 
executionContext, ContextCallback callback, Object state, Boolean 
preserveSyncCtx)
   bei System.Threading.ExecutionContext.Run(ExecutionContext 
executionContext, ContextCallback callback, Object state, Boolean 
preserveSyncCtx)
   bei System.Threading.ExecutionContext.Run(ExecutionContext 
executionContext, ContextCallback callback, Object state)
   bei System.Threading.ThreadHelper.ThreadStart()


-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/2360ca96-891b-4804-b876-11b0ecd65ccc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.