Base solution for your next web application

Activities of "ianmark89"

Hi,

I added new property called "Domain" to Tenant entity and updated TenantIdAccessor to find tenant by domain, but you've removed this class in version 3.1.0. Where can I put my changes to find tenant by domain?

To sign-in to our mobile app, user must sign-in by their facebook and provide phone number if not existed. We use facebook account kit to verify entered phone number, how should we update verified phone number after user verified? Should we call UpdateCurrentUserProfile method to update phone number?

Hi,

Firstly, I created a simple signal R hub then I built a console client hub connection successfully connect to that hub without any authentication. E.g: static void Main(string[] args) { var querystringData = new Dictionary<string, string>(); querystringData.Add("foo", "bar"); var hubConnection = new HubConnection("http://localhost:62114/", querystringData); IHubProxy stockTickerHubProxy = hubConnection.CreateHubProxy("MySampleHub"); stockTickerHubProxy.On<string>("messageRecieved", str => { Console.WriteLine("New Message: \n" + str); }); ServicePointManager.DefaultConnectionLimit = 100; hubConnection.Start(new LongPollingTransport()).GetAwaiter(); Console.ReadKey(); }

I need all clients connect to my hub must be authenticated then I set GlobalHost.HubPipeline.RequireAuthentication() in Web.Mvc project - Startup.cs file. The console client now can't receive message from server hub, by how I can have my console client authenticated :( ?

Any help would be appreciated. Thanks

I want to make my native mobile app (Xamarin) can login by facebook, is there any sample code or how can I do it?

I want to get posts on some facebook group then push to the listviews on our clients mobile app, but I have not any experience about this. Is there any advice? Should I use SignalR with Redis?

I've got an issue when creating new tenant with database on other azure subscription, but database on the same Azure account is OK. I've tried to configure the azure database by turn on "Allow access to Azure services" but I got error message "The timeout period elapsed prior to completion of the operation or the server is not responding." When I updated "Connection Timeout" to 60 instead of 30 I got error message "An exception has been raised that is likely due to a transient failure. If you are connecting to a SQL Azure database consider using SqlAzureExecutionStrategy"

After upgrading chrome to the latest version (54), I've got error when call app services to postback to server. Other browser is fine.

"details": "The following errors were detected during validation.\r\n - input is null!\r\n",

When user does not have permissions to access Users controller, server responses {"result":null,"targetUrl":null,"success":false,"error":{"code":0,"message":"Required permissions are not granted. At least one of these permissions must be granted: Pages.Administration.Users","details":null,"validationErrors":null},"unAuthorizedRequest":true,"__abp":true}

It's working as expected if I update public async Task<ActionResult> Index()

to

public ActionResult Index()

Hi,

I want to create seat plan inside modal like attached image, the chart is using for selecting seat when booking but I am not good at front end. Can you give me some advice like which library can I use for rendering seating chart?

I'm using ASP.Net Core version.

Thanks.

Question

Sorry for duplicating post. I've posted in wrong forum. #1914

I found IsPhoneNumberConfirmed column in database. Does the current system support phone verification? I want to let user register by phone, can you please give me some idea about this function?

Showing 1 to 10 of 16 entries