Incompatible wire encryption levels requested on client and server with Firebird ado.net provider
I am testing the connection firebird 3 using C #. The version of what I'm used is the latest : Firebird ADO.NET Provider 5.0. But when you make the connection , the error occurs "Incompatible wire enc...
- Modified
- 17 Sep at 12:44
Are .NET threads different from operating system threads?
1. Are .NET threads lightweight user-mode threads or are they kernel-mode operating system threads? 2. Also, sparing SQL Server, is there a one-to-one correspondence between a .NET thread an an opera...
- Modified
- 27 May at 20:15
CreateType missing from TypeBuilder. How to port this?
Trying to port an application from .net 4.5 to .net core for a client. I'm noticing that CreateType is no longer part of TypeBuilder. I've searched through multiple of the new reflection libs with no ...
- Modified
- 1 Oct at 18:24
Context Menu Item is not showing when form is running
I have created context menu item on windows forms application. But when i run the application and when i try to right click, created menu item is not showing up [](https://i.stack.imgur.com/X3q57.png...
nodemon app crashed - waiting for file changes before starting
After further testing, I have found that this is happening with both gulp and grunt on this app and on the default install of mean.js. I'm running this locally on a Mac. When I running either app u...
- Modified
- 29 Dec at 15:49
Javascript how to check if a date is greater than or equal to a date value
I'm currently trying to see if the date value is set to today's date or greater. ``` var date = document.getElementById("inputDate").value; var varDate = new Date(date); //dd-mm-YYYY var today = new...
- Modified
- 27 May at 14:21
C# winforms button with solid border, like 3d
How can I create button with solid border(3d), like picture below on C# winforms? ![3d-button](https://i.stack.imgur.com/DZcXd.jpg) Panel `BorderStyle` can be set as `Fixed3D`, but buttons `BorderSt...
Is it safe to expose Firebase apiKey to the public?
The [Firebase Web-App guide](https://firebase.google.com/docs/web/setup#add_firebase_to_your_app) states I should put the given `apiKey` in my Html to initialize Firebase: ``` // TODO: Replace with yo...
- Modified
- 12 Apr at 19:35
How to get value by key from JObject?
I have a JObject like this: ``` { "@STARTDATE": "'2016-02-17 00:00:00.000'", "@ENDDATE": "'2016-02-18 23:59:00.000'" } ``` I want to get @STARTDATE and @ENDDATE value from JObject. --- Thi...
Image upload not working Always get the FALSE value
UI [](https://i.stack.imgur.com/99dWz.png) Image upload part is not working, I want to upload image path in Database but not working, and not bind correctly can't save it, can you please help me, Tab...
Unit Testing / Integration Testing Web API with HttpClient in Visual Studio 2013
I am having a hard time trying to test my API controller with Visual Studio 2013. My one solution has a Web API Project and a Test project. In my test project, I have a Unit Test with this: ``` [Tes...
- Modified
- 29 May at 13:58
.Net MVC 4 Project fails with Event Log Error "The Module DLL C:\WINDOWS\system32\inetsrv\aspnetcore.dll failed to load. The data is the error."
This is not a DotNetCore project (it's an MVC 4 project) and the app pool is properly configured to use dotnet CLR v4, yet after updating to a new version of Windows 10 (be it an insider build, or the...
- Modified
- 4 Aug at 00:51
Timeouts with long running ASP.NET MVC Core Controller HTTPPost Method
I make use of ajax call in my `ASP.NET Core MVC` view pages MyView.cshtml ``` $.ajax({ processData: false, contentType: false, data: new FormData(thi...
- Modified
- 4 Aug at 17:1
With Moq, how can I mock protected methods with out parameter?
For a method like: ``` protected virtual bool DoSomething(string str) { } ``` I usually mock it through: ``` var mockModule = new Mock<MyClass> { CallBase = true }; mockModule.Protected().Setup<bo...
- Modified
- 27 May at 03:14
Unity3D UI, calculation for position dragging an item?
These days it's incredibly easy to drag UI elements in Unity: Make a few UI items. Add Component -> Event -> . Drop on the script below. Click to add the four obvious triggers. You're done. However. ...
- Modified
- 28 Aug at 18:16
How to use IRequiresRequest to inject IRequest in ServiceStack?
I need to access request context, specifically the Items inside my custom class and I don't want to do have it either inheriting from `ServiceStack` Service or having the set it up inside the my Servi...
- Modified
- 7 Jun at 00:55
Docker: Container keeps on restarting again on again
I today deployed an instance of MediaWiki using the appcontainers/mediawiki docker image, and I now have a new problem for which I cannot find any clue. After trying to attach to the mediawiki front c...
- Modified
- 26 May at 22:14
You must add a reference to assembly mscorlib, version=4.0.0
I'm having some trouble migrating a web project from RC1 to RC2. When I switched, I'm getting a bunch of these errors throughout the project. > The type 'Func<,>' is defined in an assembly that is no...
- Modified
- 4 Jun at 23:31
Jenkins Pipeline Wipe Out Workspace
We are running Jenkins 2.x and love the new Pipeline plugin. However, with so many branches in a repository, disk space fills up quickly. Is there any plugin that's compatible with Pipeline that I...
- Modified
- 2 Dec at 07:20
Renaming multiple files in a directory using Python
I'm trying to rename multiple files in a directory using this Python script: ``` import os path = '/Users/myName/Desktop/directory' files = os.listdir(path) i = 1 for file in files: os.rename(fi...
ADAL.NET v3 does not support AcquireToken with UserCredential?
In ADAL.NET 2.x, we use the below code to acquire token from Azure AD using `UserCredential` and it works perfectly: ``` var authContext = new AuthenticationContext(Authority); var userCredential = ...
- Modified
- 26 May at 16:14
How to uninstall Docker completely from a Mac?
I would like to remove the Docker toolbox completely from my Mac. I tried to remove Docker from the `/Applications` folder, but it didn't work out.
- Modified
- 12 Feb at 01:15
how do add a project to source control within an existing solution
I've recently noticed that my ..LibraryTests project is not under source control: [](https://i.stack.imgur.com/SpNo9.png) When I try to do a checkin (by right clicking on the solution and pressing )...
- Modified
- 26 May at 14:56
Using repository pattern to eager load entities using ThenIclude
My application uses Entity Framework 7 and the repository pattern. The GetById method on the repository supports eager loading of child entities: ``` public virtual TEntity GetById(int id, params Expr...
- Modified
- 10 Sep at 11:8
Update a Cell with C# and Sheets API v4
Does anyone have a good C# example for updating a cell with the v4 API? I have the get cell values c# example from the developer website working with Google Sheets API v4. I am trying to modify the ...
- Modified
- 20 Sep at 14:52