Problems with DataProcessingResult
-
- Posts: 32
- Joined: Tue Jul 03, 2012 2:16 pm
Problems with DataProcessingResult
Hi, I'm having some doubts about the StiMvcDesignerHelper.DataProcessingResult.
First of all, I belive that this method's documentation it's wrong, it's saying the same as GoogleDocsResult.
Then, when I create a new connection in client side, it only shows two options: Xml and MySQL.
How do I do to connect to SQL Server?
Regards and Thanks,
Daniel Schmitz
First of all, I belive that this method's documentation it's wrong, it's saying the same as GoogleDocsResult.
Then, when I create a new connection in client side, it only shows two options: Xml and MySQL.
How do I do to connect to SQL Server?
Regards and Thanks,
Daniel Schmitz
Re: Problems with DataProcessingResult
Hello,
Thank you.
Can you say which type of doubts do you have with StiMvcDesignerHelper.DataProcessingResult ?Hi, I'm having some doubts about the StiMvcDesignerHelper.DataProcessingResult.
You have this problem in Stimulsoft Reports.Mvc ?Then, when I create a new connection in client side, it only shows two options: Xml and MySQL.
Thank you.
-
- Posts: 32
- Joined: Tue Jul 03, 2012 2:16 pm
Re: Problems with DataProcessingResult
Hi, my doubt it's about DataProcessingResult's documentation.
And yes, the problem occurs in Stimulsoft Reports.Mvc.
Thanks.
And yes, the problem occurs in Stimulsoft Reports.Mvc.
Thanks.
Re: Problems with DataProcessingResult
Hello, Daniel
Yes, this bug has been in the release version. An error has been fixed, please download the latest prerelease build from our site.
Thank you.
Yes, this bug has been in the release version. An error has been fixed, please download the latest prerelease build from our site.
Thank you.
-
- Posts: 32
- Joined: Tue Jul 03, 2012 2:16 pm
Re: Problems with DataProcessingResult
Hi, I downloaded the file, and It is the same version I'm using.
I forgot to mention, I'm using trial version until We buy a license, doesn't It influence in anything?
Thanks.
I forgot to mention, I'm using trial version until We buy a license, doesn't It influence in anything?
Thanks.
Re: Problems with DataProcessingResult
Hello.
Please try to download latest prerelease build from here: http://stimulsoft.com/ReportsWebMvcDownloads.aspx
Thank you.
Are you writing about release or prerelease build?Daniel Schmitz wrote:Hi, I downloaded the file, and It is the same version I'm using.
I forgot to mention, I'm using trial version until We buy a license, doesn't It influence in anything?
Please try to download latest prerelease build from here: http://stimulsoft.com/ReportsWebMvcDownloads.aspx
Thank you.
-
- Posts: 32
- Joined: Tue Jul 03, 2012 2:16 pm
Re: Problems with DataProcessingResult
Hi, really, i was downloading the release version.
With the prerelease build it worked well, but the DataProcessingResult continues with GoogleDocsResult's documentation.
Thanks for the attention.
With the prerelease build it worked well, but the DataProcessingResult continues with GoogleDocsResult's documentation.
Thanks for the attention.
Re: Problems with DataProcessingResult
Hello, Daniel
We have checked the documentation:
Thank you.
We have checked the documentation:
Also we checked the work of these actions. What kind of question you have about this issue?DataProcessing
The action DataProcessing is used to process the data on the server side requested with the web designer. These data are processing requests, related to testing of the database connection, getting data columns, getting images for certain report components, etc. If this action is not specified, then the above functionality is not available. This action is defined in the view controller as follows:
Controller:
public ActionResult DataProcessing()
{
return StiMvcDesignerHelper.DataProcessingResult(this.Request);
}
GoogleDocs
With help of the action GoogleDocs you can handle requests of the web designer for working with cloud storage Google Docs, where you can save report templates. If this action is not specified, then this functionality of working with Google Docs will not be available. This action is defined in the view controller as follows:
Controller:
public ActionResult GoogleDocs()
{
return StiMvcDesignerHelper.GoogleDocsResult(this.Request);
}
Thank you.