I reinstalled wihtout updating the NuGet packages and it worked. Not sure if this is a long term solution.
Im getting this error in a fresh install of aspnetzero jQuery 8.4
I tried it twice with the same errors. I believe there's a DLL conflict somewhere.
Any guidance?
Thanks,
System.TypeLoadException: 'Method 'Use' in type 'Abp.AspNetCore.Threading.HttpContextCancellationTokenProvider' from assembly 'Abp.AspNetCore, Version=5.4.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.'
This exception was originally thrown at this call stack: System.Reflection.RuntimeAssembly.GetExportedTypes() Castle.Core.Internal.ReflectionUtil.GetAvailableTypes(System.Reflection.Assembly, bool) Castle.Core.Internal.ReflectionUtil.GetAvailableTypesOrdered(System.Reflection.Assembly, bool) Castle.MicroKernel.Registration.FromAssemblyDescriptor.SelectedTypes.AnonymousMethod__5_0(System.Reflection.Assembly) System.Linq.Enumerable.SelectManySingleSelectorIterator<TSource, TResult>.MoveNext() Castle.MicroKernel.Registration.FromDescriptor.Castle.MicroKernel.Registration.IRegistration.Register(Castle.MicroKernel.IKernelInternal) Castle.MicroKernel.Registration.BasedOnDescriptor.Castle.MicroKernel.Registration.IRegistration.Register(Castle.MicroKernel.IKernelInternal) Castle.MicroKernel.DefaultKernel.Register(Castle.MicroKernel.Registration.IRegistration[]) Castle.Windsor.WindsorContainer.Register(Castle.MicroKernel.Registration.IRegistration[]) Abp.AspNetCore.AbpAspNetCoreConventionalRegistrar.RegisterAssembly(Abp.Dependency.IConventionalRegistrationContext) ... [Call Stack Truncated]
But Im still trying to wrap my head around what is the REQUEST and what is the RESPONSE. So lets take the example above of a price change. What would be the payload? Is it just a boolean? or is it an actual JSON document of the previous price, the new price, timestamp, username etc.
This is supposed to be a "push" process right? The webhook pushes something to us and we are supposed to know what the payload is and then to be able to do something with it?
Greetings; This message is really meant for fellow users.
Im a relatively new developer to ABPZero and have noticed the Webhooks feature. It seems like a nice feature.
But Im trying to wrap my head around the business cases and what possibilites it may hold for me. And of course what requirements on the other end for me to integrate on my end.
So, to the group. What are the use/business cases you could/potentially could see for using web hooks? What are the possibilites? How are you implementing Webhooks in your application? Give us noobs some inspiration!
Also, what is needed on the 'host' end? Just a rest api endpoint? A rest api endpoint that only returns one record?
Thanks in advance,
--Dave
Greetings; FYI: I tried to use your search functionality but kept returning 500 error.
I am working in the Web.Public project and trying to establish my links within the FrontEndNavigationProvider.cs file
For the life of me I can't figure out what is going on. The order of the links as displayed on the website isn't the same as the order ot he MenuItemDefinitions
For example, in the code the order is (1)Home, (2)About, (3) Multiline example
but when it's run it's listed as About - Home - Multiline example
What's attributing to the order of these links?
Any guidance is appreciated,
--Dave
Here is the order on the website navigation bar
[Contact us] [How] About Home Products and Services
Here is the code:
frontEndMenu
//HOME
.AddItem(new MenuItemDefinition(
FrontEndPageNames.Home,
L("HomePage"),
url: ""
)
//ABOUT
).AddItem(new MenuItemDefinition(
FrontEndPageNames.About,
L("AboutUs"),
url: "About"
)
).AddItem(new MenuItemDefinition(
FrontEndPageNames.About,
L("Products"),
url: "Products"
)
).AddItem(new MenuItemDefinition(
FrontEndPageNames.Products,
L("How"),
url: "How"
)
).AddItem(new MenuItemDefinition(
FrontEndPageNames.How,
L("ContactUs"),
url: "ContactUs"
)
);
Greetings;
If I have a field in a (SQL Server) database as a VarBinary(MAX), what strategies could you recommend for implementing this using the AspNetZero PowerTools feature.
I've read that it's similar to a byte[], and I know you have a byte data type, wasn't sure if it's a byte or a byte[].
Many thanks (from a beginner),
--Dave
Are there any examples of integrating data you have developed in the 'main' application into the Web.Public application?
I have created entities that I want to display some data on the Web.Public application.
Guidance appreciated,
--Dave
On the page:
https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Extending-Existing-Entities
it states: Note: The UI part of this document is written for ASP.NET MVC 5.x version of ASP.NET Zero. Document will be updated for ASP.NET Core soon.
Has the ASP.NET core section been completed?
Guidance appreciated,
--Dave
Thank you for your response, but the github file you linked to me is nothing like the documentation in my orignal post.
Can you verify that the documentation here: https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Extending-Existing-Entities
is infact for asp.net mvc core / JQuery?
Please advise,
Thanks.
Greetings,
As a newbie, im trying to go through the documentation to understand the concept of extending entities for my ASP.NET MVC Core / Jquery application.
Im using the documentation located at:
https://docs.aspnetzero.com/documents/aspnet-core-mvc/latest/Extending-Existing-Entities
As Im developing a MPA, im confused by the statement" This was for SPA (Single Page Application with AngularJS). It's similar for MPA side. Just open .Web\Areas\Mpa\Views\Users\index.js and add Address field to the table as like Surname."
i cant seem to find this file as there isnt a .Web application, but there is a .Web.Core , .Web.Host, and a .Web.MVC application. I did a text search for some content and couldnt find any related text.
Any guidance is greatly appreciated.
Thanks,
Dave