Hello ,
published the project and ran test email under email tab
it throws an internal server error says 500
<a class="postlink" href="http://localhost:6240/api/services/app/">http://localhost:6240/api/services/app/</a> ... dTestEmail
when i click on this link it shows
{"message":"An error has occurred.","exceptionMessage":"There is an action SendTestEmail defined for api controller app/hostSettings but with a different HTTP Verb. Request verb is GET. It should be Post","exceptionType":"Abp.AbpException","stackTrace":" at Abp.WebApi.Controllers.Dynamic.Selectors.AbpApiControllerActionSelector.GetActionDescriptorByActionName(HttpControllerContext controllerContext, DynamicApiControllerInfo controllerInfo, String actionName) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Selectors\AbpApiControllerActionSelector.cs:line 103\r\n at Abp.WebApi.Controllers.Dynamic.Selectors.AbpApiControllerActionSelector.SelectAction(HttpControllerContext controllerContext) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Selectors\AbpApiControllerActionSelector.cs:line 56\r\n at System.Web.Http.ApiController.ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at Castle.Proxies.DynamicApiController1Proxy_6.ExecuteAsync_callback(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at Castle.Proxies.Invocations.ApiController_ExecuteAsync_6.InvokeMethodOnTarget()\r\n at Castle.DynamicProxy.AbstractInvocation.Proceed()\r\n at Abp.WebApi.Controllers.Dynamic.Interceptors.AbpDynamicApiControllerInterceptor
1.Intercept(IInvocation invocation) in D:\Halil\GitHub\aspnetboilerplate\src\Abp.Web.Api\WebApi\Controllers\Dynamic\Interceptors\AbpDynamicApiControllerInterceptor.cs:line 57\r\n at Castle.DynamicProxy.AbstractInvocation.Proceed()\r\n at Castle.Proxies.DynamicApiController`1Proxy_6.ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken)\r\n at System.Web.Http.Dispatcher.HttpControllerDispatcher.
Where do i setup the email configuration. example my email id is <a href="mailto:[email protected]">[email protected]</a> and pwd is xxx123 so do your have a default setup which copies current server config or do i have to setup email configuration please advise.
currently in the login page when i click email activation it throws server error i
Thanks Anwar
Hello
how do i call a function from a view in frontend the funtion is defined in the controller as follows
using Abp.Domain.Uow;
using Samit.CmsProTest.School.Courses;
using Samit.CmsProTest.School.Courses.Dto;
using Samit.CmsProTest.Web.Models;
using Samit.CmsProTest.Web.Models.FeedBack;
using System.Web.Mvc;
namespace Samit.CmsProTest.Web.Controllers
{
public class FeedBackController : CmsProTestControllerBase
{
private readonly ICourseDtlAppService _courseDtlAppService;
public FeedBackController(ICourseDtlAppService courseDtlAppService)
{
_courseDtlAppService = courseDtlAppService;
}
public ActionResult Index(FeedBackViewModel feedbackViewModel)
{
var model = new FeedBackViewModel();
return View(model);
}
public ActionResult FeedBack(FeedBackViewModel feedbackViewModel)
{
var model = new FeedBackViewModel();
return View(model);
}
}
}
Hello Brother
How can i display site statistics like total number of visitors visited my site.
Regards Anwar
Hello
Can you show me how i can send email from a FrontEnd page using EmailSender.
Thanks
Anwar
Hello i am using a daterangepicker and the statement is as follows
<label>@L("Date")</label>
<input date-range-picker="" name="StartDate" id="StartDate" class="form-control date-picker ng-pristine ng-valid ng-isolate-scope ng-touched" type="text" ng-model="vm.coursedetails.startDate" options="{singleDatePicker: true}" required="" ng-class="{'edited':vm.coursedetails.startDate}">
it works fine if language is english but when language is switched to arabic it allows selection but when saves it keeps the date unchanged when updating i have checked the input on the form it is the new selected date but when it goes to appservice the input retains the old date when updation is called
please tell me how to overcome this please
regards Anwar
Hello
Can i pass an array from index,js page to AppService page
public async Task<Int32> CreateBasketHdrPAsync(CreateBasketHdrInput input)
regards Anwar
Hi
i have an array which is a shopcart with x number of items when the user checks out of the cart i want to insert the cart items into a table called basket and the totals of the shopcart items into a table called baskethdr.
i need all record to be inserted on rollbacked if fail. In examples shown in the step by step we are adding 1 by 1 item but that is not how i need. please can you assist me here.
my
hello
how can i check what is the current language from AppService in Application project and also how to check the language fro frontend controllers .
Thanks Anwar