Hi Frank,
Sorry In my post I forgot to indicate that the applications are developed with wisej 2.5.
Hi Angelo,
you might try reinstalling the WebView2 component or switch to Internet Explorer in the Wisej.NET designer settings (in the toolbar).
See here
https://docs.wisej.com/docs/getting-started-1/troubleshooting#designer-error
Best regards
Frank
Hi Antonio,
Thank you for reaching out!
Unfortunately, helping with 3rd party integrations is out of scope for free support.
We would encourage you to contact us over at sales [AT] iceteagroup.com .
Best Regards,
Alaa
Hi Alaa, thanks for your answer.
If this is so simple then what is the difference in the licence activation between the express and the professional editions?
Best,
Alex
Hi Cristian,
this request is already on our backlog list for future enhancements but unfortunately I cannot tell you yet if and when it will be added.
Best regards
Frank
Hi Alex,
As stated in our blog, Licenses for Server Community Edition will be deactivated and may no longer function after December 31, 2024.
For the upgrade process, all you have to do is to get a key from our website and replace it in your web.config file.
Best Regards,
Alaa
Average load time even for large apps in Wisej.NET is about 1 second or less
This is a small azure service on the free tier with 1 core and 1.75GB
Issue is probably the database or slow connections.
Hello Kizaemon,
Currently, we don’t have a Wisej.NET component or service that allows collecting telemetry, but we would recommend using 3rd party services like Sentry.io.
Best Regards,
Alaa
Hi Nhan,
The license type is not related to the performance of your application, it’s more bound to your hardware.
The Express Server License supports up to 100 concurrent users, you can read more about it here: Server Licenses
It could also be a latency issue, which is something that is out of our control!
HTH,
Alaa
Hi Francesco,
Can you please attach the test case here?
Best Regards,
Alaa
Hi Fransesco,
When I checked out the deployed web app, the ribbonbar appears exactly the same as your attached picture.
Best Regards,
Alaa
Hi Francesco,
We offer 2 types of templates, the old .NET Framework only projects, and the newer .NET SDK project formats that support targeting multiple framework versions.
In your case, it would be better to go with the projects that target .NET Framework 4.8 only.
Best Regards,
Alaa
Hi Francesco,
RibbonBar is a free extension for everyone. Full calendar integration is free as well but if you want to use its full feature set you need to purchase a license from its vendor. We provide integrations but license fees might still apply. Please always check the vendors terms.
Best regards
Frank
Hi Adrian,
please use Application.Uri it should contain the full query string that you can then parse.
Best regards
Frank
the event handlers are ok.
To reproduce the problem (because you cannot simulate the API I call): Try a new project with an empty form and add just add in Main
Application.ApplicationRefresh += Application_ApplicationRefresh
and
private static void Application_ApplicationRefresh(object sender, EventArgs e)
{
MessageBox.Show(“Application_ApplicationRefresh:\n” + Application.Url);
}
Next, with the application running, go to address bar in the browser and add to it /?code=13 to existing address and hit enter.
You will see that the event triggers, but in Application.Url there is no code=13.
What is the problem that persists?
You can attach event handlers. I don’t know what overwriting an event means.
All the parameters are all available in Url, Uri, StartupUrl, StartupUri and QueryString. See api docs for Application properties.
If you still need more details attach a small runnable fully contained project that shows what you are trying to do.
I tried with both events, just Application.ApplicationRefresh is called, but as I told you, the Application.Url does not contains the code. See attached printscreen.
The code is:
private static void Application_ApplicationRefresh(object sender, EventArgs e)
{
Log(“Application_ApplicationRefresh:” + Application.Url);
MessageBox.Show(“Application_ApplicationRefresh:\n” + Application.Url);
}
Hi Adrian,
I don’t think I fully understood what you want to achieve.
Do you want to persist the parameters p1 and p2 that you receive when your application is launched?
If yes, just store them into your session.
For ApplicationRefresh and ApplicationHashChanged, they are regular .NET events and you can subscribe to them
like you would for any other event.
Best regards
Frank