Base solution for your next web application

Activities of "maharatha"

We currently are working on the latest version of AspnetZero Angular and .Net Core. We are trying to use GCPDFViewer and this is where we are stuck : https://www.grapecity.com/documents-api-pdf/docs/online/configure-pdf-editor.html Look at the Step 10 and you will find the code :

We are trying to create the controller however we also want to inheirt the Abp Controller. As c# doesn't allow multiple inheritance, I am trying to figure out a reasonable solution on how can i achieve this.

Any guidance is appreciated


 using GrapeCity.Documents.Pdf.ViewerSupportApi.Controllers;
 
namespace WebApplication1_WebForms.Controllers
{
    public class SupportApiController : GcPdfViewerController
    {
 
    }}     ```                                                                                                                                                    

I was able to integrate Elsa into my Angular and the .Net Core Application. I am using the latest version.

I am trying to understand how can I protect Elsa Endpoints like //Hello-World by using AbpAuthorize data annotation.

I basically want an documentid to be posted to an endpoint which will trigger the flow, however only Authorized user can hit this end point. So how to implement it.

Hi All -

We need to have a proper documentation for Elsawith .Net Core and Angular projects. I have tried multiple times following the MVC project integration but have failed many times.

I request to provide some documentation around .Net Core and Angular project

I have added an OrganizationId ForeignKey to the tenant table.

I am now getting the list of Organization for the user

var organizationList = await UserManager.GetOrganizationUnitsAsync(await UserManager.GetUserByIdAsync(AbpSession.UserId.Value));

var query = TenantManager.Tenants
                .Include(t => t.Edition)
                .Include(t =>t.OrganizationUnit)
                .WhereIf(!input.Filter.IsNullOrWhiteSpace(), t => t.Name.Contains(input.Filter) || t.TenancyName.Contains(input.Filter))
                .WhereIf(input.CreationDateStart.HasValue, t => t.CreationTime >= input.CreationDateStart.Value)
                .WhereIf(input.CreationDateEnd.HasValue, t => t.CreationTime <= input.CreationDateEnd.Value)
                .WhereIf(input.SubscriptionEndDateStart.HasValue, t => t.SubscriptionEndDateUtc >= input.SubscriptionEndDateStart.Value.ToUniversalTime())
                .WhereIf(input.SubscriptionEndDateEnd.HasValue, t => t.SubscriptionEndDateUtc <= input.SubscriptionEndDateEnd.Value.ToUniversalTime())
                .WhereIf(input.EditionIdSpecified, t => t.EditionId == input.EditionId);

How do I filter by OrganizationList here ?

Thank You very much, this solved my 1 week of pain and agony.

I am glad I asked this question, I wish i knew this was something that was released.

Yes I am able but I don't know where to read the query string and set the TenantID in the cookie so that the Tenant changes

I am using the latest version of Aspnet Zero (Angular+.NET Core).

I will be using Okta as my SSO , so when I am sending an invite to the user I want to send the tenancyname or tenantid in the query string. So when complete registration and land back on the login page with Tenancy name or Tenantid on the query string i want to grab that and be able to select the Tenant automatically.

That's incorrect. The previous implementation only needed ClientId , Client Secret and KeyVault Name.

The tenantId is the AzureADtenantID in case you are using Certificate Thumbprint.

I made the code to work on the release candidate by copying the code from previous project.

I have downloaded the Released version today, will let you know if i come across the same issue

No that didn't work as it was somehow expecting the AzureTenantId when I am not using certificate which was not in the case in the past. So I had to use the code from my other project and make it work.

Not sure what the old approach means here. are you asking not to use the release candidate or not to use azure key vault? i can't use azure key vault with the release candidate as there is no way of passing clientid & client secret

Showing 11 to 20 of 326 entries