PCF and servicestack
Our company is using Pivotal Cloud Foundry and currently we are using WebApi for our endpoints. I have used serviceStack in the past (although it has been a few years ago) and wanted to know if anyon...
- Modified
- 5 Feb at 09:11
How can I execute a python script from an html button?
I have a number of python scripts that I have saved on my computer, out of curiosity I have created a html file that just has one button. Instead on going into the terminal and running `python <path t...
- Modified
- 21 Feb at 17:7
Failed linking file resources
``` package com.example.daksh.timetable; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Ima...
- Modified
- 23 Jul at 18:44
API is returning error when using RESTSHARP
When use RestSharp to call an API I get this error: > The underlying connection was closed: An unexpected error occurred on a send. I've verified that my client ID, secret, username, and password ...
OrmLite LocalDate to DateTime Converter Not Being Applied On Where Clause For SqlLite In-Memory Db
[Referenced Code](https://gist.github.com/WardenUnleashed/ca25d2ae44d9c8c3c33731e5c8ae5cad) Make `ValuationsCommanderTests.SetTransactionAndRelatedEmbeddedDerivativevaluationsToBad_ValidInput_Corre...
- Modified
- 31 Jan at 17:35
ServiceStack client send OPTION instead of Get or post
I am trying to configure servicestack CorsPlugin with typescript JsonServiceClient. Client side code looks like: ``` const client = new JsonServiceClient( 'http://localhost:5000' ); client.pa...
- Modified
- 31 Jan at 17:26
What is linux equivalent of "host.docker.internal"
On Mac and Windows it is possible to use `host.docker.internal` (Docker 18.03+) inside container. Is there one for Linux that will work out of the box without passing env variables or extracting it us...
- Modified
- 14 Nov at 07:54
How to add Document with Custom ID to firestore
Is there any chance to add a document to firestore collection with custom generated id, not the id generated by firestore engine?
- Modified
- 12 Feb at 17:13
How to use Swagger Codegen with .net core
I am able to integrate the Swagge UI in my web api using Swashbuckle. I also want to explore the swagger codegen feature. Can somebody help in - how I can integrate swagger codegen into my web api pro...
- Modified
- 1 Feb at 05:25
Authentication using ServiceStack 4.5.14
I'm working off of the SocialBootstrap API example (using ServiceStack 4.5.14) and trying to get authentication to work. Registration works fine, the user account get's created in the DB without any p...
- Modified
- 30 Jan at 23:42
ServiceStack logging and SSE in a single interface?
So, our project has recently started using Server Sent Events in ServiceStack. Our projects also log with log4net, using the log4net provider. Now that I've gotten through a couple of components usi...
- Modified
- 30 Jan at 19:27
IHttpHandler versus HttpTaskAsyncHandler performance
We have a webapp that routes many requests through a .NET IHttpHandler (called proxy.ashx) for CORS and security purposes. Some resources load fast, others load slow based on the large amount of compu...
- Modified
- 30 Jan at 20:43
Visual Studio Code Intellisense stopped to work on C# files
I realized that I can't use `ctrl + .` shortcut to import other `C#` classes. This shortcut works just fine for other file types like typescript. I have uninstalled and installed back again. I also i...
- Modified
- 17 May at 05:47
How to fix Could not load file or assembly 'nunit.engine, Version=3.7.0.0
I have a webappliction with a separate test-project using NUnit to run unittests. When my test-project is trying to discover tests I run into the following exception: ``` An exception occurred while ...
- Modified
- 30 Jan at 16:31
How to export swagger.json (or yaml)
How can I export a Swagger definition file? It should be a JSON or YAML file, e.g. swagger.json or swagger.yaml. Let's say I have an endpoint looking like `http://example.com//swagger/ui/index#!`: [](...
- Modified
- 2 Dec at 14:58
Getting No provider for NgControl Error after adding ReactiveFormsModule to my angular 4 app
I am getting this error - "Template parse errors: No provider for NgControl" ``` The error comes from this line of code --> <select (ngModel)="currencies" (ngModelChange)="showPurchase($event)" cla...
- Modified
- 30 Jan at 15:40
Should the package-lock.json file be added to .gitignore?
To lock the versions of dependencies that are installed over a project, the command `npm install` creates a file called `package-lock.json`. This was made since [Node.js v8.0.0](https://nodejs.org/en/...
- Modified
- 30 Jan at 14:58
Docker error: invalid reference format: repository name must be lowercase
Ran into this Docker error with one of my projects: `invalid reference format: repository name must be lowercase` What are the various causes for this generic message? I already figured it out afte...
- Modified
- 30 Jan at 13:29
Could not load file or assembly 'System.Runtime.InteropServices.RuntimeInformation
I am getting this error whenever I try and run a webjob project with application insight and entity framework. > System.IO.FileLoadException: 'Could not load file or assembly 'System.Runtime.Intero...
- Modified
- 30 Jan at 11:22
How do I select just few columns with ORMLite and c#?
I have a query involving several tables, and I need to select only few columns of the result. I've looked everywhere with no luck, the few things I tried did not work. Can someone point me to the ri...
- Modified
- 30 Jan at 10:21
Retrieving alias of a property from a Model with ORMLite and C#
I have the following class: ``` [Schema("dbo")] [Alias("accesses")] public class Acces{ [Alias("id")] public int Id { get; set; } [Alias("device_id")] public string DeviceId { get; s...
- Modified
- 30 Jan at 18:13
Server Events Client - Getting rid of the automatically appended string at the end of the URI
I am new to the Service Stack library and trying to use the Server Events Client. The server I'm working with has two URIs. One for receiving a connection token and one for listening for search reques...
- Modified
- 30 Jan at 08:45
How to implement two forms with separate BindProperties in Razor Pages?
I am using ASP.NET Core 2 with Razor Pages and I am trying to have . ``` @page @model mfa.Web.Pages.TwoFormsModel @{ Layout = null; } <form method="post"> <input asp-for="ProductName" /> ...
- Modified
- 19 Aug at 06:6
Data type conversion error: ValueError: Cannot convert non-finite values (NA or inf) to integer
I've the following dataframe ``` df1 = df[['tripduration','starttime','stoptime','start station name','end station name','bikeid','usertype','birth year','gender']] print(df1.head(2)) ``` which pri...