Base solution for your next web application

Activities of "kiandra"

I need to present the user with a URL that they can use in a separate application so that they can post some data back to my application.

Hello,

Is it possible to programmatically retrieve the URL of an AppService method from another AppService method? For example:

public class ActionsAppService: MyAppServiceBase, IAppService {
        
    [AbpAuthorize(AppPermissions.Pages_Actions_Edit)]
    public async Task<GetActionForEditOutput> GetActionForCreate(string actionType)
    {
        var action= new Action();

        action.PostbackUrl = [SOMETHING TO RETRIEVE URL OF THE POSTBACK METHOD BELOW];

        return action;
    }

    //This will be called by an external system
    public async Task PostBack(string formData){
        ....
    }
}

Cheers, Brad Webber

Showing 11 to 12 of 12 entries