Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "kwanp"

Hi i got work for create DisplayCode Field to the DB.

i also update

OrganizationUnitDto.cs Class

[AutoMapFrom(typeof(OrganizationUnit))]
    public class OrganizationUnitDto : AuditedEntityDto<long>
    {
        public long? ParentId { get; set; }

        public string Code { get; set; }

        public string DisplayName { get; set; }

        public int MemberCount { get; set; }

        public string DisplayCode { get; set; }
    }

then run nswag/refresh.bat file and also modify the angular side to display DisplayCode Field but when i run the page DisplayCode Field is empty

i also check the service-proxies.ts file DisplayCode also show

xport class OrganizationUnitDto { 
    parentId: number; 
    code: string; 
    displayName: string; 
    memberCount: number; 
    displayCode: string; 
    lastModificationTime: moment.Moment; 
    lastModifierUserId: number; 
    creationTime: moment.Moment; 
    creatorUserId: number; 
    id: number;
    constructor(data?: any) {
        if (data !== undefined) {
            this.parentId = data["parentId"] !== undefined ? data["parentId"] : null;
            this.code = data["code"] !== undefined ? data["code"] : null;
            this.displayName = data["displayName"] !== undefined ? data["displayName"] : null;
            this.memberCount = data["memberCount"] !== undefined ? data["memberCount"] : null;
            this.displayCode = data["displayCode"] !== undefined ? data["displayCode"] : null;
            this.lastModificationTime = data["lastModificationTime"] ? moment(data["lastModificationTime"].toString()) : null;
            this.lastModifierUserId = data["lastModifierUserId"] !== undefined ? data["lastModifierUserId"] : null;
            this.creationTime = data["creationTime"] ? moment(data["creationTime"].toString()) : null;
            this.creatorUserId = data["creatorUserId"] !== undefined ? data["creatorUserId"] : null;
            this.id = data["id"] !== undefined ? data["id"] : null;
        }
    }

How can i solve this issue Thank you

Hi I got it work by Modify IIS

Open IIS (my version 8.5)

  1. Delete WebDAVModule on Handle Mapping
  2. Delete WebDAVModule on Modules

Thank you

Hi i got it working now, i just copy source to new folder and build it again

Thank you

Hi After i remove ending "/" from ClientRootAddress of my Publish folder on server side and Restart the IIS, the error still show

did i config any not correct or should i use other local web server to publish the project

Thank you

After i check it again show this Error

DEBUG 2017-06-21 14:00:28,224 [1    ] Abp.Modules.AbpModuleManager             - Loading Abp modules...
DEBUG 2017-06-21 14:00:28,240 [1    ] Abp.Modules.AbpModuleManager             - Found 18 ABP modules in total.
DEBUG 2017-06-21 14:00:28,250 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: KWANP.Web.Startup.KWANPWebHostModule, KWANP.Web.Host, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,251 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: KWANP.Web.KWANPWebCoreModule, KWANP.Web.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,251 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: KWANP.KWANPApplicationModule, KWANP.Application, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,251 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: KWANP.KWANPCoreModule, KWANP.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Zero.AbpZeroCoreModule, Abp.ZeroCore, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Zero.AbpZeroCommonModule, Abp.Zero.Common, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.AbpKernelModule, Abp, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Zero.Ldap.AbpZeroLdapModule, Abp.Zero.Ldap, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.AutoMapper.AbpAutoMapperModule, Abp.AutoMapper, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.MailKit.AbpMailKitModule, Abp.MailKit, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,252 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: KWANP.EntityFrameworkCore.KWANPEntityFrameworkCoreModule, KWANP.EntityFrameworkCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Zero.EntityFrameworkCore.AbpZeroCoreEntityFrameworkCoreModule, Abp.ZeroCore.EntityFrameworkCore, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule, Abp.EntityFrameworkCore, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.AspNetCore.AbpAspNetCoreModule, Abp.AspNetCore, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Web.AbpWebCommonModule, Abp.Web.Common, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Web.SignalR.AbpWebSignalRModule, Abp.Web.SignalR, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Runtime.Caching.Redis.AbpRedisCacheModule, Abp.RedisCache, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,253 [1    ] Abp.Modules.AbpModuleManager             - Loaded module: Abp.Hangfire.AbpHangfireAspNetCoreModule, Abp.HangFire.AspNetCore, Version=2.0.1.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:28,256 [1    ] Abp.Modules.AbpModuleManager             - 18 modules loaded.
DEBUG 2017-06-21 14:00:28,316 [1    ] o.Configuration.LanguageManagementConfig - Converted Abp (Abp.Localization.Dictionaries.DictionaryBasedLocalizationSource) to MultiTenantLocalizationSource
DEBUG 2017-06-21 14:00:28,316 [1    ] o.Configuration.LanguageManagementConfig - Converted AbpZero (Abp.Localization.Dictionaries.DictionaryBasedLocalizationSource) to MultiTenantLocalizationSource
DEBUG 2017-06-21 14:00:28,316 [1    ] o.Configuration.LanguageManagementConfig - Converted KWANP (Abp.Localization.Dictionaries.DictionaryBasedLocalizationSource) to MultiTenantLocalizationSource
DEBUG 2017-06-21 14:00:28,316 [1    ] o.Configuration.LanguageManagementConfig - Converted AbpWeb (Abp.Localization.Dictionaries.DictionaryBasedLocalizationSource) to MultiTenantLocalizationSource
DEBUG 2017-06-21 14:00:28,617 [1    ] ameworkCore.AbpEntityFrameworkCoreModule - Registering DbContext: KWANP.EntityFrameworkCore.KWANPDbContext, KWANP.EntityFrameworkCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
DEBUG 2017-06-21 14:00:29,020 [1    ] Abp.Localization.LocalizationManager     - Initializing 4 localization sources.
DEBUG 2017-06-21 14:00:29,026 [1    ] Abp.Localization.LocalizationManager     - Initialized localization source: Abp
DEBUG 2017-06-21 14:00:29,030 [1    ] Abp.Localization.LocalizationManager     - Initialized localization source: AbpZero
DEBUG 2017-06-21 14:00:29,043 [1    ] Abp.Localization.LocalizationManager     - Initialized localization source: KWANP
DEBUG 2017-06-21 14:00:29,044 [1    ] Abp.Localization.LocalizationManager     - Initialized localization source: AbpWeb
DEBUG 2017-06-21 14:00:29,089 [1    ] Abp.BackgroundJobs.BackgroundJobManager  - Start background worker: Abp.BackgroundJobs.BackgroundJobManager
DEBUG 2017-06-21 14:00:29,141 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - Found 32 classes define auto mapping attributes
DEBUG 2017-06-21 14:00:29,141 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Web.Models.TokenAuth.ExternalLoginProviderInfoModel
DEBUG 2017-06-21 14:00:29,144 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Sessions.Dto.TenantLoginInfoDto
DEBUG 2017-06-21 14:00:29,144 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Sessions.Dto.UserLoginInfoDto
DEBUG 2017-06-21 14:00:29,144 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.People.Dto.AddPhoneInput
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.People.Dto.CreatePersonInput
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.People.Dto.PersonListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.People.Dto.PhoneInPersonListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Organizations.Dto.OrganizationUnitDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Organizations.Dto.OrganizationUnitUserListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Notifications.Dto.NotificationSubscriptionWithDisplayNameDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.MultiTenancy.Dto.TenantEditDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.MultiTenancy.Dto.TenantListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Localization.Dto.ApplicationLanguageEditDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Localization.Dto.ApplicationLanguageListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Friendships.Dto.FriendDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Editions.Dto.EditionEditDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Editions.Dto.EditionListDto
DEBUG 2017-06-21 14:00:29,145 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Editions.Dto.FlatFeatureDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Chat.Dto.ChatMessageDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Chat.Dto.ChatUserDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Chat.Dto.ChatUserWithMessagesDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Users.Profile.Dto.CurrentUserProfileEditDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Users.Dto.UserListDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Users.Dto.UserLoginAttemptDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Roles.Dto.RoleEditDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Roles.Dto.RoleListDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Permissions.Dto.FlatPermissionDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Permissions.Dto.FlatPermissionWithLevelDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Accounts.Dto.CurrentTenantInfoDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Auditing.Dto.AuditLogListDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Authorization.Users.Dto.UserListDto+UserListRoleDto
DEBUG 2017-06-21 14:00:29,146 [1    ] Abp.AutoMapper.AbpAutoMapperModule       - KWANP.Friendships.Cache.FriendCacheItem
INFO  2017-06-21 14:00:30,050 [1    ] pendencyInjection.DataProtectionServices - User profile is available. Using 'C:\Windows\system32\config\systemprofile\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
DEBUG 2017-06-21 14:00:31,674 [1    ] soft.AspNetCore.Hosting.Internal.WebHost - Hosting starting
DEBUG 2017-06-21 14:00:31,718 [1    ] soft.AspNetCore.Hosting.Internal.WebHost - Hosting started
DEBUG 2017-06-21 14:00:31,909 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" started.
INFO  2017-06-21 14:00:31,968 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/  
DEBUG 2017-06-21 14:00:32,022 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/ does not match a supported file type
DEBUG 2017-06-21 14:00:32,243 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,264 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,264 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,264 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,265 [4    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,278 [4    ] NetCore.StaticFiles.StaticFileMiddleware - Sending file. Request path: '/index.html'. Physical path: 'N/A'
DEBUG 2017-06-21 14:00:32,323 [4    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
DEBUG 2017-06-21 14:00:32,325 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" started.
INFO  2017-06-21 14:00:32,325 [13   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/css/reset.css  
DEBUG 2017-06-21 14:00:32,325 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" started.
DEBUG 2017-06-21 14:00:32,325 [13   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/css/reset.css does not match an existing file
DEBUG 2017-06-21 14:00:32,325 [13   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,325 [13   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,325 [13   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,325 [13   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,325 [13   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,325 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/css/screen.css  
DEBUG 2017-06-21 14:00:32,325 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/css/screen.css does not match an existing file
DEBUG 2017-06-21 14:00:32,326 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,326 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,326 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,326 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,326 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,326 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 363.8595ms 200 text/html
INFO  2017-06-21 14:00:32,326 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /css/screen.css was not modified
INFO  2017-06-21 14:00:32,326 [13   ] NetCore.StaticFiles.StaticFileMiddleware - The file /css/reset.css was not modified
DEBUG 2017-06-21 14:00:32,327 [13   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /css/reset.css
DEBUG 2017-06-21 14:00:32,327 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /css/screen.css
INFO  2017-06-21 14:00:32,328 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/css/typography.css  
DEBUG 2017-06-21 14:00:32,329 [13   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
DEBUG 2017-06-21 14:00:32,329 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/css/typography.css does not match an existing file
DEBUG 2017-06-21 14:00:32,329 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,329 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 3.2539ms 304 text/css
INFO  2017-06-21 14:00:32,329 [13   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 3.7109ms 304 text/css
DEBUG 2017-06-21 14:00:32,329 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,329 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,329 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,329 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,329 [4    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,329 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The file /css/typography.css was not modified
DEBUG 2017-06-21 14:00:32,329 [4    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /css/typography.css
DEBUG 2017-06-21 14:00:32,329 [4    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,329 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.4886ms 304 text/css
INFO  2017-06-21 14:00:32,330 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/object-assign-pollyfill.js  
DEBUG 2017-06-21 14:00:32,330 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/object-assign-pollyfill.js does not match an existing file
DEBUG 2017-06-21 14:00:32,330 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
INFO  2017-06-21 14:00:32,330 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/jquery-1.8.0.min.js  
DEBUG 2017-06-21 14:00:32,330 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,330 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,330 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/jquery.slideto.min.js  
DEBUG 2017-06-21 14:00:32,330 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/jquery-1.8.0.min.js does not match an existing file
INFO  2017-06-21 14:00:32,330 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/object-assign-pollyfill.js was not modified
DEBUG 2017-06-21 14:00:32,330 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/object-assign-pollyfill.js
DEBUG 2017-06-21 14:00:32,330 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/jquery.slideto.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,330 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
DEBUG 2017-06-21 14:00:32,330 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,330 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
INFO  2017-06-21 14:00:32,330 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.4895ms 304 application/javascript
DEBUG 2017-06-21 14:00:32,330 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [9    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
DEBUG 2017-06-21 14:00:32,330 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,330 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,330 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,330 [4    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,330 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/jquery.slideto.min.js was not modified
DEBUG 2017-06-21 14:00:32,330 [9    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/jquery.slideto.min.js
INFO  2017-06-21 14:00:32,330 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/jquery-1.8.0.min.js was not modified
DEBUG 2017-06-21 14:00:32,330 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,330 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3846ms 304 application/javascript
DEBUG 2017-06-21 14:00:32,330 [4    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/jquery-1.8.0.min.js
DEBUG 2017-06-21 14:00:32,331 [4    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,331 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.5725ms 304 application/javascript
INFO  2017-06-21 14:00:32,332 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/handlebars-4.0.5.js  
INFO  2017-06-21 14:00:32,332 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/jquery.ba-bbq.min.js  
DEBUG 2017-06-21 14:00:32,332 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/handlebars-4.0.5.js does not match an existing file
DEBUG 2017-06-21 14:00:32,332 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/jquery.ba-bbq.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,332 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,332 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,332 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
DEBUG 2017-06-21 14:00:32,332 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,332 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
INFO  2017-06-21 14:00:32,332 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/handlebars-4.0.5.js was not modified
DEBUG 2017-06-21 14:00:32,332 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/handlebars-4.0.5.js
DEBUG 2017-06-21 14:00:32,332 [4    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,332 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/jquery.ba-bbq.min.js was not modified
DEBUG 2017-06-21 14:00:32,332 [4    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/jquery.ba-bbq.min.js
DEBUG 2017-06-21 14:00:32,332 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,332 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.4212ms 304 application/javascript
DEBUG 2017-06-21 14:00:32,332 [4    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,332 [3    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/jquery.wiggle.min.js  
INFO  2017-06-21 14:00:32,332 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.4681ms 304 application/javascript
DEBUG 2017-06-21 14:00:32,332 [3    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/jquery.wiggle.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,332 [3    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [3    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,332 [3    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,332 [3    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,332 [3    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,332 [3    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/jquery.wiggle.min.js was not modified
DEBUG 2017-06-21 14:00:32,332 [3    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/jquery.wiggle.min.js
DEBUG 2017-06-21 14:00:32,332 [3    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
INFO  2017-06-21 14:00:32,332 [3    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3404ms 304 application/javascript
INFO  2017-06-21 14:00:32,333 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/backbone-min.js  
DEBUG 2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/backbone-min.js does not match an existing file
INFO  2017-06-21 14:00:32,334 [8    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/lodash.min.js  
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [9    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/backbone-min.js was not modified
DEBUG 2017-06-21 14:00:32,334 [8    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/lodash.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/backbone-min.js
DEBUG 2017-06-21 14:00:32,334 [8    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [8    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [8    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [8    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,334 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.5533ms 304 application/javascript
INFO  2017-06-21 14:00:32,334 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/swagger-ui.min.js  
DEBUG 2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/swagger-ui.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [8    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,334 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,334 [9    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The file /swagger-ui.min.js was not modified
DEBUG 2017-06-21 14:00:32,334 [9    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /swagger-ui.min.js
DEBUG 2017-06-21 14:00:32,334 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
INFO  2017-06-21 14:00:32,334 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3596ms 304 application/javascript
INFO  2017-06-21 14:00:32,334 [8    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/lodash.min.js was not modified
DEBUG 2017-06-21 14:00:32,335 [8    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/lodash.min.js
DEBUG 2017-06-21 14:00:32,335 [8    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,335 [8    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.9714ms 304 application/javascript
INFO  2017-06-21 14:00:32,335 [12   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/highlight.9.1.0.pack.js  
DEBUG 2017-06-21 14:00:32,335 [12   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/highlight.9.1.0.pack.js does not match an existing file
DEBUG 2017-06-21 14:00:32,335 [12   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,335 [12   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,335 [12   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,335 [12   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,335 [12   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,335 [12   ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/highlight.9.1.0.pack.js was not modified
DEBUG 2017-06-21 14:00:32,335 [12   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/highlight.9.1.0.pack.js
DEBUG 2017-06-21 14:00:32,335 [12   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,335 [12   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3748ms 304 application/javascript
INFO  2017-06-21 14:00:32,336 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/highlight.9.1.0.pack_extended.js  
DEBUG 2017-06-21 14:00:32,336 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/highlight.9.1.0.pack_extended.js does not match an existing file
DEBUG 2017-06-21 14:00:32,336 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,336 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
INFO  2017-06-21 14:00:32,336 [8    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/jsoneditor.min.js  
DEBUG 2017-06-21 14:00:32,336 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,336 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,336 [9    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,336 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/highlight.9.1.0.pack_extended.js was not modified
DEBUG 2017-06-21 14:00:32,336 [8    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/jsoneditor.min.js does not match an existing file
DEBUG 2017-06-21 14:00:32,336 [9    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/highlight.9.1.0.pack_extended.js
DEBUG 2017-06-21 14:00:32,337 [8    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,337 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
INFO  2017-06-21 14:00:32,337 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.5203ms 304 application/javascript
DEBUG 2017-06-21 14:00:32,337 [8    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,337 [8    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,337 [8    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,337 [8    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,337 [8    ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/jsoneditor.min.js was not modified
DEBUG 2017-06-21 14:00:32,337 [8    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/jsoneditor.min.js
DEBUG 2017-06-21 14:00:32,337 [8    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,337 [8    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.8228ms 304 application/javascript
INFO  2017-06-21 14:00:32,338 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/marked.js  
DEBUG 2017-06-21 14:00:32,338 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/marked.js does not match an existing file
DEBUG 2017-06-21 14:00:32,338 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,338 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,338 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,338 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,338 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,338 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/marked.js was not modified
DEBUG 2017-06-21 14:00:32,338 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/marked.js
DEBUG 2017-06-21 14:00:32,339 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,339 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3975ms 304 application/javascript
INFO  2017-06-21 14:00:32,340 [13   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/lib/swagger-oauth.js  
DEBUG 2017-06-21 14:00:32,340 [13   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/lib/swagger-oauth.js does not match an existing file
DEBUG 2017-06-21 14:00:32,340 [13   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,340 [13   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,340 [13   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,340 [13   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,340 [13   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,340 [13   ] NetCore.StaticFiles.StaticFileMiddleware - The file /lib/swagger-oauth.js was not modified
DEBUG 2017-06-21 14:00:32,340 [13   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /lib/swagger-oauth.js
DEBUG 2017-06-21 14:00:32,340 [13   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
INFO  2017-06-21 14:00:32,340 [13   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3739ms 304 application/javascript
INFO  2017-06-21 14:00:32,341 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/images/logo_small.png  
DEBUG 2017-06-21 14:00:32,341 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/images/logo_small.png does not match an existing file
DEBUG 2017-06-21 14:00:32,341 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,341 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,341 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,341 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,341 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,341 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /images/logo_small.png was not modified
DEBUG 2017-06-21 14:00:32,341 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /images/logo_small.png
DEBUG 2017-06-21 14:00:32,341 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,341 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3752ms 304 image/png
INFO  2017-06-21 14:00:32,343 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/css/print.css  
DEBUG 2017-06-21 14:00:32,343 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/css/print.css does not match an existing file
DEBUG 2017-06-21 14:00:32,343 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,343 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,343 [4    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,343 [4    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,343 [4    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,343 [4    ] NetCore.StaticFiles.StaticFileMiddleware - The file /css/print.css was not modified
DEBUG 2017-06-21 14:00:32,343 [4    ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /css/print.css
DEBUG 2017-06-21 14:00:32,343 [4    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" completed keep alive response.
INFO  2017-06-21 14:00:32,343 [4    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3685ms 304 text/css
INFO  2017-06-21 14:00:32,493 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/v1/swagger.json  
DEBUG 2017-06-21 14:00:32,493 [9    ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/v1/swagger.json does not match an existing file
DEBUG 2017-06-21 14:00:32,494 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,494 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,494 [9    ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,494 [9    ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,494 [9    ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,551 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request starting HTTP/1.1 GET http://192.168.1.127:2000/swagger/images/favicon-16x16.png  
DEBUG 2017-06-21 14:00:32,551 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The request path /swagger/images/favicon-16x16.png does not match an existing file
DEBUG 2017-06-21 14:00:32,552 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'defaultWithArea' and template '{area}/{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,552 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,552 [11   ] Microsoft.AspNetCore.Routing.RouteBase   - Request successfully matched the route with name 'default' and template '{controller=Home}/{action=Index}/{id?}'.
DEBUG 2017-06-21 14:00:32,552 [11   ] .AspNetCore.Mvc.Internal.MvcRouteHandler - No actions matched the current request
DEBUG 2017-06-21 14:00:32,552 [11   ] soft.AspNetCore.Builder.RouterMiddleware - Request did not match any routes.
INFO  2017-06-21 14:00:32,552 [11   ] NetCore.StaticFiles.StaticFileMiddleware - The file /images/favicon-16x16.png was not modified
DEBUG 2017-06-21 14:00:32,552 [11   ] NetCore.StaticFiles.StaticFileMiddleware - Handled. Status code: 304 File: /images/favicon-16x16.png
DEBUG 2017-06-21 14:00:32,552 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" completed keep alive response.
INFO  2017-06-21 14:00:32,552 [11   ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 0.3926ms 304 image/png
DEBUG 2017-06-21 14:00:32,778 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" completed keep alive response.
INFO  2017-06-21 14:00:32,778 [9    ] soft.AspNetCore.Hosting.Internal.WebHost - Request finished in 292.1398ms 200 application/json
DEBUG 2017-06-21 14:02:33,059 [11   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" disconnecting.
DEBUG 2017-06-21 14:02:33,060 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" sending FIN.
DEBUG 2017-06-21 14:02:33,066 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" sent FIN with status "0".
DEBUG 2017-06-21 14:02:33,070 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7P" stopped.
DEBUG 2017-06-21 14:02:34,042 [9    ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" disconnecting.
DEBUG 2017-06-21 14:02:34,042 [10   ] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" disconnecting.
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" sending FIN.
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" sending FIN.
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" sent FIN with status "0".
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7R" stopped.
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" sent FIN with status "0".
DEBUG 2017-06-21 14:02:34,042 [libuv] Microsoft.AspNetCore.Server.Kestrel      - Connection id "0HL5OECQIPQ7Q" stopped.

Thank you

i check logs.txt no error show on the file

On Folder that i Publishes\App_Data\Logs

Thank you

Hi After i change the value of CorsOrigins,

The error show: Error detail not sent by server

Thank you

Hi I got it work on my local machine but when my clients access with ip address of my machine it not working

Thank you

What is the version of your AspNet Zero ? i use ASP.NET CORE + ANGULAR 4.X with VS2017 Dev Tool

after i run this command "robocopy C:\Mahachula\TestMerge\KWANP\aspnet-core\src\KWANP.Web.Host\wwwroot\dist\ C:\Mahachula\TestMerge\KWANP\aspnet-core\src\KWANP.Web.Host\wwwroot\ /S /E /MOVE"

error show: The system cannot find the file specified. then i create dist folder then run command again error gone

Then i create dist folder and try to Publish in VS2017 the error show again.

" Ended : Mon Jun 12 11:24:35 2017 C:\Mahachula\TestMerge\KWANP\aspnet-core\src\KWANP.Web.Host\KWANP.Web.Host.csproj(5,5): Error MSB3073: The command "robocopy C:\Mahachula\TestMerge\KWANP\aspnet-core\src\KWANP.Web.Host\wwwroot\dist\ C:\Mahachula\TestMerge\KWANP\aspnet-core\src\KWANP.Web.Host\wwwroot\ /S /E /MOVE" exited with code 3.

6>Publish failed due to build errors. Check the error list for more details. ========== Build: 5 succeeded or up-to-date, 0 failed, 0 skipped ========== ========== Publish: 0 succeeded, 1 failed, 0 skipped ========== "

pls help what i did wrong

Thank you

Showing 31 to 39 of 39 entries