Base solution for your next web application

Activities of "lcyhjx"

I encountered same issue. I re-produced it and fixed it as following: 1 go to <a class="postlink" href="http://www.aspnetboilerplate.com/Templates">http://www.aspnetboilerplate.com/Templates</a> to create new project (AngularJs + Entity Framework) 2 run in local, works fine - abp.dll version is 0.5.5.0 3 Go to Nuget, update abp.dll version to 0.5.12.1 4 Run the project again, the exception "Cannot read property 'AbpWeb' of undefined" is thrown 5 Go to Nuget, update abp.web.dll to 0.5.12.0 6 run the project again, the issue is disapper. May help you.

1 go to <a class="postlink" href="http://www.aspnetboilerplate.com/Templates">http://www.aspnetboilerplate.com/Templates</a> to create a new project (AngularJs + EntityFramework) 2 Run it in local, works fine. the version of abp.dll is 0.5.5.0 3 go to nuget, update abp.dll to 0.5.12.1 4 run it again, the error "Cannot read property 'AbpWeb' of undefined" is thrown 5 go to nuget, update abp.web.dll to 0.5.12.0 6 run it agian, the issue is disapper, works fine agian. May help you.

Hi,

I create a sample SimpleTaskSystem project which using angualjs and entityframework. When I run it, If found, there are many SginalR http requests sent out? I didn't see any introduction about SignalR used in asp.net boilerplate in the articles. So, I would like to know, what the SignalR used for in the sample project? If I would like to use SignalR to push service notification to client by using asp.net boilerplate, Is there a sample I can follow?

Thanks your clarification. Hikalkan.

Not sure if following topic can help you or not, but for your reference.

#19

My pleasure.

Thanks Asp.Net Boilerplate first. I create a sample project from <a class="postlink" href="http://www.aspnetboilerplate.com">http://www.aspnetboilerplate.com</a> by using AngulatJS and Entity Framework, then I would like to change the navrbar with sub-menu as following: • Order • Report • Administration o User management (this is a sub-menu under Administration menu) So I make following changes in Navigation Provider class

context.Manager.MainMenu
                .AddItem(
                    new MenuItemDefinition(
                        "Order",
                        new LocalizableString("Order", BOMConsts.LocalizationSourceName),
                        url: "#/",
                        icon: "fa fa-tasks"
                        )
                )
                .AddItem(
                    new MenuItemDefinition(
                        "Report",
                        new LocalizableString("Report", BOMConsts.LocalizationSourceName),
                        url: "#/Report",
                        icon: "fa fa-bar-chart"
                        )
                )
                .AddItem(
                new MenuItemDefinition(
                    "Administration",
                    new LocalizableString("Administration", BOMConsts.LocalizationSourceName),
                    icon: "fa fa-cogs"
                    ).AddItem(
                        new MenuItemDefinition(
                            "UserManagement",
                            new LocalizableString("UserManagement", BOMConsts.LocalizationSourceName),
                           // url: "/Administration/Users",
                            icon: "fa fa-users"
                            )
                    )
                );

But when I run the project, the sub-menu 'User Management' does not display. Could you please let me know what am I missing? It is better to give me a sample code if it is possible, thanks.

Thanks. I will try.

Is there a way that I invoke the authenticated ASP.net Web API on Mobility side? For example, an android application or an HTM5 based mobility application?

Hi, I get the Module Zero project, it works fine. Thanks. But I found that the instance of IAuthenticationManager is created in web layer. Since the WEB API may not only used by Web Application, may also use by other clients, such as mobile application. So I would like to move AuthenticationManager from web layer to Web API/Application layer. In normal way, I can get instance of IAuthenticationManager in Web API layer as following: private IAuthenticationManager Authentication { get { return System.Web.Http. ApiController.Request.GetOwinContext().Authentication; } } But in Abp Framework, the Web Api is built dynamic, I do not know how to get the instance of IAuthenticationManager in Applciation layer with Abp framework, could you please give me some advice?

Showing 1 to 10 of 54 entries