-
Is it possible to run the report from browser using URL ? I need href to run Detail-Report from the saved Master-report in a html-format. This is the scenario, which I use in MS SSRS and I wish to reproduce it in SealReport. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 11 replies
-
you can use it if you are already connected, please check https://sealreport.org/Recipes#lineIntegration_swi |
Beta Was this translation helpful? Give feedback.
-
"use the Seal Web Interface API to execute reports from JavaScript." ОК, I got it. But what about using the GET method using URL in a browser URL bar, not the POST with a form? Is it a working way? |
Beta Was this translation helpful? Give feedback.
-
I don't know if it works with a GET but you need at least javascript to get the session id from the login, it may work |
Beta Was this translation helpful? Give feedback.
-
ОК, got it. How to "bypass the security"? \SealWebServer\Controlle\HomeController.cs - public bool IsAuthenticated ? Probably this way? /// <summary>
/// True if the user is authenticated and part of a group
/// </summary>
public bool IsAuthenticated
{
//bypass the security
get {return true;}
//get { return string.IsNullOrEmpty(SecurityCode) && SecurityGroups.Count > 0; }
} |
Beta Was this translation helpful? Give feedback.
-
yes, pehaps better to change:
and to add add a security group to your WebUser:
|
Beta Was this translation helpful? Give feedback.
-
Yes, there are perhaps side effects, it is too difficult to answer to your scenario just by chatting..it has to be prototyped and will take time from my side. You can get consulting through Ariacom (https://ariacom.com/SealReport) if you wish. |
Beta Was this translation helpful? Give feedback.
-
Well done if you manage to do it. |
Beta Was this translation helpful? Give feedback.
Well done if you manage to do it.
Could be an evolution to support direct execution through URL but I guess we have to add a security token (with expiration) to handle the security, or even better, encrypt the URL generated,
I note that for the roadmap of the product...contributors are welcome !