Saturday, February 25, 2012

No workaround for interactive htmlfragments at all?

Hi!
I've been really happy during the week-end as I finally found a way to do
long wanted things with RS 2000. Yesterday at 22 pm, I found out that
interactive HTML fragments isn't possible, after MANY hours of developing..
Yeah, go on.. call it bad planning. :(
Anyway, would it be possible to create a disassembly of the HTML4.0 renderer
using reflector and then modifying the code to fit my project? (Links and
toggles..)
Is it legal? Has anyone done this allready and published the code? Are there
any other possibilities other than URL access you guys would recommend?
Part of the reason I need fragments is that the security is based on a
hierarchy in a self-referencing sql table. I need to use a business/security
layer to create parameters for the reports which will be generated by a
web-service on a protected server. No way to limit the results with NT or
sql server security. (well, maybe sql server, but I have to re-engineer)
Hope for good help! :)
Lars-ErikCould you elaborate what exactly you want and what problem you are having?
"Lars-Erik Aabech" <larserik@.newsgroup.nospam> wrote in message
news:uMBw6fLnFHA.3256@.TK2MSFTNGP12.phx.gbl...
> Hi!
> I've been really happy during the week-end as I finally found a way to do
> long wanted things with RS 2000. Yesterday at 22 pm, I found out that
> interactive HTML fragments isn't possible, after MANY hours of
> developing.. Yeah, go on.. call it bad planning. :(
> Anyway, would it be possible to create a disassembly of the HTML4.0
> renderer using reflector and then modifying the code to fit my project?
> (Links and toggles..)
> Is it legal? Has anyone done this allready and published the code? Are
> there any other possibilities other than URL access you guys would
> recommend?
> Part of the reason I need fragments is that the security is based on a
> hierarchy in a self-referencing sql table. I need to use a
> business/security layer to create parameters for the reports which will be
> generated by a web-service on a protected server. No way to limit the
> results with NT or sql server security. (well, maybe sql server, but I
> have to re-engineer)
> Hope for good help! :)
> Lars-Erik
>|||Hi again!
I'm trying to create an asp.net form that uses some business logic to create
parameters for a report, then uses the web-service to get the html for the
report. The parameters should not be appended to a user visible/editable url
since that will compromise security. The WebService will be running on a
secure server, and the webservice proxy will impersonate an authorized
account. The report is built with recursive detail groups and a visibility
toggle.
This means I have to pick one or the other option. If I don't want to expose
the parameters, I have to use HTML fragments, else RS will append then to
all links, including targetting each link to the report server "url access"
page. I can create a report that has everything expanded and discard the
toggling functionality, but that'll mean pretty long reports.
Hope this helps explaining.
L-E
"Smith" <smithj@.online.nospam> wrote in message
news:ebqOKhMnFHA.320@.TK2MSFTNGP09.phx.gbl...
> Could you elaborate what exactly you want and what problem you are having?
> "Lars-Erik Aabech" <larserik@.newsgroup.nospam> wrote in message
> news:uMBw6fLnFHA.3256@.TK2MSFTNGP12.phx.gbl...
>> Hi!
>> I've been really happy during the week-end as I finally found a way to do
>> long wanted things with RS 2000. Yesterday at 22 pm, I found out that
>> interactive HTML fragments isn't possible, after MANY hours of
>> developing.. Yeah, go on.. call it bad planning. :(
>> Anyway, would it be possible to create a disassembly of the HTML4.0
>> renderer using reflector and then modifying the code to fit my project?
>> (Links and toggles..)
>> Is it legal? Has anyone done this allready and published the code? Are
>> there any other possibilities other than URL access you guys would
>> recommend?
>> Part of the reason I need fragments is that the security is based on a
>> hierarchy in a self-referencing sql table. I need to use a
>> business/security layer to create parameters for the reports which will
>> be generated by a web-service on a protected server. No way to limit the
>> results with NT or sql server security. (well, maybe sql server, but I
>> have to re-engineer)
>> Hope for good help! :)
>> Lars-Erik
>|||Hi,
It's true that you will loose the interactive capabilities using HTML
fragments. An alternative would be using the ReportViewer control which
will not expose the parameters in address bar, but the parameters would
still be seen when you right-click the page and select 'View Source'.
Sincerely,
William Wang
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
This posting is provided "AS IS" with no warranties, and confers no rights.|||Hi!
Thank you for answering. Do you have any views on my actual question?
> Anyway, would it be possible to create a disassembly of the HTML4.0
> renderer
> using reflector and then modifying the code to fit my project? (Links and
> toggles..)
> Is it legal? Has anyone done this allready and published the code? Are
> there
> any other possibilities other than URL access you guys would recommend?
Lars-Erik
"William Wang[MSFT]" <v-rxwang@.online.microsoft.com> wrote in message
news:qdHZ%23OmnFHA.940@.TK2MSFTNGXA01.phx.gbl...
> Hi,
> It's true that you will loose the interactive capabilities using HTML
> fragments. An alternative would be using the ReportViewer control which
> will not expose the parameters in address bar, but the parameters would
> still be seen when you right-click the page and select 'View Source'.
> Sincerely,
> William Wang
> Microsoft Online Partner Support
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>|||To the best of my knowledge, reverse-engineering MS code is illegal.
Actually it's not recommended to pass sensitive info as part of a report
parameter to begin with. Tudor's blog entry has addressed this issue:
http://blogs.msdn.com/tudortr/archive/2004/07/20/189398.aspx
Sincerely,
William Wang
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
This posting is provided "AS IS" with no warranties, and confers no rights.|||Thank you! This was pretty helpful. :)
I'll consider running Reporting Services on the front-end server using a
custom authentication module.
Lars-Erik
"William Wang[MSFT]" <v-rxwang@.online.microsoft.com> wrote in message
news:rhnK2AloFHA.588@.TK2MSFTNGXA01.phx.gbl...
> To the best of my knowledge, reverse-engineering MS code is illegal.
> Actually it's not recommended to pass sensitive info as part of a report
> parameter to begin with. Tudor's blog entry has addressed this issue:
> http://blogs.msdn.com/tudortr/archive/2004/07/20/189398.aspx
> Sincerely,
> William Wang
> Microsoft Online Partner Support
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>|||Hi Lars,
I'm glad to hear the information provided is helpful. Please let me know if
you have any other concerns, or need anything else.
Sincerely,
William Wang
Microsoft Online Partner Support
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
This posting is provided "AS IS" with no warranties, and confers no rights.

No comments:

Post a Comment