Base solution for your next web application

Activities of "terry bentley"

I see that you have used XML files to define the translations for variables. I did see a brief description on how to configure the ASP.Net boiler plate to use RESX files and did get it working but it took a bit of work. I am now planning on developing a real production application using ASP.Net Zero and before I use the "standard" RESX files I would just like to know why XML files seem to be the preferred method of localization in the ASP.Net boilerplate?

Thanks... Terry

I have just started developing using the ASP.Net Iteration Zero and have added a few entities. I do an Ajax call to get an entity. When I get an error on the browser, it is just a popup with a big "X" saying [object Object] Internal Server Error

Is there a configuration parameter to allow me to display more information on the popup while debugging? I have to use Firebug in Firefox or the developer tools in Google Chrome to get more information. In this case the error from the POST is "The 'ObjectContent`1' type failed to serialize the response body for content type 'application/json; charset=utf-8'"

I have been going through applying the latest changes to the Module Zero to my code using WinMerge and have messed something up and been spending days trying to figure out what is causing it. I was hoping someone may be able to point me in the right direction.

After I log in I get the following errors in the FIrefox Console or Visual Studio debug and the web page display is blank.

TypeError: $.fn.selectpicker is undefined multipleSeparator: ', ' default-en_US.js?v=... (line 39, col 5)

ReferenceError: App is not defined var resBreakpointMd = App.getResponsiveBreakpoint('md'); layout.js (line 10, col 9)

ReferenceError: App is not defined App.setAssetsPath(abp.appPath + 'metronic/assets/'); app.js (line 32, col 1)

It looks like the first error is an issue with not referencing the \libs\bootstrap-select\bootstrap-select.js

The second two errors appear to be an issue with \metronic\assets\global\scripts\app.js being called at the right time?

Not sure where to properly fix this though. Thanks...Terry

Hi Yes. That is what I first thought that the permissions were somehow lost but that is not the case. The user and role have access to the entities. I even tried removing and re-adding and it made no difference. It appears I can see the "builtin" menu items like Tenant, Administration (and all its children) but not able to see all "my" entities that I used to be able to see and that still show up fine in the Permissions section.

Thanks...Terry

Problem solved. The AppNavigationProvider.cs class was in the /App_Start/Navigation folder and when I made the changes to add the new features it looks like this class changed folders (?) Anyway, I had not moved my copy of the class to the /App/Startup and so it was using your copy. As soon as I replaced your copy with my copy, all was good.

Thanks... Terry

I just upgraded to the latest version of Abp and Abp.Zero 0.8.1.0. This required an upgrade to .Net Framework 4.6.1 The app runs well on my local work station under both Visual studio 2013 and 2015. Unfortunately when I publish to Azure I get the following error.

Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0012: The type 'System.Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.

When I add this assembly reference entry to the web.config and republish I get just a 500 error with no further information. So I don't know whether it got any further or not as far.

Does anyone have any ideas. I don't like the idea of having to rollback my changes to Abp.

Thanks.

I thought I may have missed one or more files in the "include in project" so I published the application to a file system and copied the published file structure to another workstation. I installed the application from scratch and was surprised that it worked right away. Obviously it is not missing files.

Was able to solve the problem. I published the web application to another local workstation and discovered that the "compilation" entry that I added to web.config to fix the first error resulted in a duplicate compilation entry (which was causing the 500 error on Azure) . I fixed this error and everything worked!

I was wondering if you had a list of features that you will be adding in the next 6 month? By the way, the ones you have added over the last six months have been great. Excellent job! I would like to set user and role permission at a product level. Only specific roles and users would be able to view, update, delete, ... particular products. If this is something on your "to do list" I will hold off adding it. If not I will get started on it now. Thanks... Terry

I have been trying to figure out how to have a user time zone in addition to the current local machine time zone and UTC server time zone. As I was working through the abp moment enhancements I see that there are two different copies of abp.timing.convertToUserTimezone. They are in: Web\Abp\Framework\scripts\libs\abp.moment.js Web\Abp\Framework\scripts\abp.js The first returns a moment date object and the second returns a date. Was this intentional?

I was planning on using the moment.tz.setDefault to change the user time zone. Any ideas if this is the way to go?

Thanks

Showing 1 to 10 of 37 entries