Activities of "rwright-ruhealth"

hi

I have made it work

Please invite me to your GitHub repository.

GranTrakv4a.git

http://localhost/authserver/ http://localhost/api/ https://localhost/web https://localhost/web-public

This is really good news so far. I had to make many changes and I would like to see what can be done differently. I invited you as a collaborator on my GitHub account (RICKISWRIGHT).

So far, builds are inconsistent when adding sources. I'm using ABP Studio and 8.2.1 ABP Sources. ABP Studio leaves a lot of version 7 .dotnet stuff in place as well. I am going to close this ticket and wait for additional improvements to ABP Studio. ABP Suite and ABP Studio do not pull the same bits. This is clear from my experience and research into both projects.

AS for the Virtual Directory /Subdirectory tiered site where you have a separate auth server, web site and api host as in: mywebsite.com/dogs-authserver mywebsite.com/dogs-apihost mywebsite.com/dogs-website where the prefix "dogs" is just to let us know these sites work together in a dependency. the next site on this server could very well be: mywebsite.com/cats-authserver mywebsite.com/cats-apihost mywebsite.com/cats-website

WE prefer not to use multiple DNS FQDN names, i.e., dogs-apihost.mywebsite.com dogs-authserver.mywebsite.com dogs-website.mywebsite.com etc.

Additionally, 8.2.1 version with STUDIO seems to REQUIRE REDIS and RabbitMQ if you do anything tiered. Version 8.1.5 Does not.

Where can I report BUGS directly for quality improvement of ABP STUDIO now on version 0.7.6 with many of the same issues as its predecessors? Thanks, ABP TEAM.

  • ABP Framework version: v0.7.6 ABP Studio Business Edition (BETA) 0.7.6
  • UI TypeMVC
  • Database System: EF Core (SQL Server,)
  • Tiered (for MVC) or Auth Server Separated (for Angular): Tiered MVC
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

I am using the latest update of ABP Studio. This issue does occur in 0.7.5 and 0.7.4 as well. I created a new MVC/SQL Server Tiered project as specified above. I installed all modules from the checklist. Built and ran project. All is fine.

When I attempted to add the source for the Volo.Abp.AuditLogging.Pro module, a popup dialog informed me: Title: Source code replace warning - Message: "You don't have to access to the source code of this module." (Grammar mistake included).

Next, I opened ABP Suite from ABP Studio Business Edition (BETA) 0.7.6 and I was able to install the AuditLogging.Pro module from ABP Suite. Problem is: ABP Studio never recognizes that ABP Suite installed the source.

Other issues: Attempts to remove sources after installing render the project unusable and many times ABP Studio crashes. Please consider this info a bug report and not a support ticket to count against our allotment.

Am am able to install all other PRO module source code projects. Thank you.

I emailed a WeTransfer project to you. Completely working without binaries. Requires RabbitMq and REDIS.

Please share your RabbitMQ configuration in appsettins.json

I am working on recreating a new project with the same configuration. Purpose is to create an error log after each source code module is installed. Current setup has RabbitMQ and Redis installed on the IIS server. Discovered the RabbitMQ server was stopped which caused the RabbitMQ errors. Started the RabbitMQ and other issues popped up. Could not login. Will Reinstall fresh and Track the progress for each module install. Something seems to break when adding sources instead of the packages. Will attach logs to this ticket. Via WeTransfer if preferred. Also, can attach a project stripped of the binaries, if needed.

hi

Sorry for your bad experience.

Can you try to test your app without IIS virtual app directory?

can't login. Swagger breaks. images break.

If you can share details, we will fix this problem asap.

My app works swimmingly when it is deployed to as a root level application, i.e., https://localhost:44332/ or https://www.example.com/

The problems happen when you try to add a subdirectory i.e., a virtual directory into the mix. as in https://localhost:44332/myapp or https://www.example.com/myapp That's when all the problems happen. It really gets bad if you try to include the Account Pro and Identity Pro source code. Try it and see for yourself. I can send you WEtransfer project where everything works with source code perfectly(Account PRO, Identity PRO, CHAT PRO, FileManager Pro, GDPR) source code projects until I try moving to a subdirectory or virtual directory. Then, it all breaks. As you know, it is a very unrealistic expectation that a web application is served solely as the root level application. Especially when working within an organization. Another Issue: ABP 8.2.1 has too many bugs in the source code installations. I could not log in if I used the Account Pro and Identity Pro source modules directly installed via ABP Pro in a tiered or multi-project app. CHAT Pro also fails. I downgraded to 8.1.5 as it seems to be the most stable version.

  • ABP Framework version: v8.1.5
  • UI Type: MVC
  • Database System: EF Core (SQL Server, )
  • Tiered (for MVC) or Auth Server Separated (for Angular): NOT separated. Multiple project solution
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Create an bookstore app based on tutorial. Install Account and Identity sources. I need these for customizations for the logins, etc. and AD. Attempt to serve the bookstore app from a virtual directory i.e., https://myserver/bookstore can't login. Swagger breaks. images break. I have asked this question many times and still have not received a response.
Is this possible without a lot of headache. I had to jump through hoops to get a version 7.4 app working. It won't upgrade properly due to all of the mods I had to make. Can you provide a working solution that demonstrates running properly from a IIS virtual app directory? Thank you.

Yes, I have downloaded your logs.

The main problem currently is RabbitMQ

No connection could be made because the target machine actively refused it.

What is your RabbitMQ configuration? Does it need a username and password?

My RabbitMQ is using the ABP out of the box configuration. Where would a password be set?

hi

However, once I installed the CHAT source, I am no longer able to login again. This is really buggy.

Can you share the logs?

The logs you have shared show the RabbitMQ error causing the 500 error.

What is your RabbitMQ configuration? Does it need username and password?

RabbitMQ.Client.Exceptions.BrokerUnreachableException: None of the specified endpoints were reachable ---> System.AggregateException: One or more errors occurred. (Connection failed) ---> RabbitMQ.Client.Exceptions.ConnectFailureException: Connection failed ---> System.Net.Sockets.SocketException (10061): No connection could be made because the target machine actively refused it.

I sent the logs via wetransfer. I believe the issues arise when the project is tiered with separate openiddict server and host api. I downgraded to 8.1.5 and I am using a non-tiered but layered MVC / EF project and installing and testing piece by piece. On 8.2.1 ABP even GDPR fails to load. Too many issues arose trying to go tiered. Then, when I added the (should be standard) virtual directory in IIS, everything goes from bad to worse.

hi

Change your ChatMessageConsts as code below:

namespace Volo.Chat.Messages; 
 
public static class ChatMessageConsts 
{ 
    public static int MaxTextLength { get; set; } = 4 * 1024; //4KB 
    public static int MinTextLength { get; set; } = 1; 
} 
 

These Const declarations exist already in a new 8.2.1 project.

Showing 1 to 10 of 58 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13