Now when I run application through browser on remote computer, following is needed
This seams to be wrong for me I should install everything on server and run web application on any machine without installing services etc.
Am I doing something wrong
Regards
Edmund Herbert
|
No, it is not necessary to install Dashboard windows service on all the client machines. The windows service is meant for testing purpose alone, and we do not recommend using it in a production environment. Instead, we recommend you to host the Dashboard Service in IIS, and refer it in your application. The hostable service is available in location: %localappdata%\Syncfusion\Dashboard\Samples\Common\Service
@ViewBag.ServiceUrl=”http://IP_Addrress:Port/DashboardService.svc” Or “http://sampledashboardservice.com/DashboardService.svc”
<div style="height:700px;width:100%;"> @Html.EJ().DashboardViewer("dashboard").ServiceUrl(@ViewBag.ServiceUrl).DashboardPath(@ViewBag.dashboardPath)
</div>
Note: IP_Address should not be localhost
|
|
This is not mandatory. The sydx file can be placed in a network as well. The location where the sydx is placed should be accessible to the dashboard service. |
Hi thanks for reply
http://sampledashboardservice.com/DashboardService.svc is not up or working any reason for this
Regards
Edmund Herbert
Hi Guys,
Do you have a test Dashboard Service that I can test against, the service
http://sampledashboardservice.com/DashboardService.svc that you supplied is not working
Regards
Edmund Herbert
@ViewBag.ServiceUrl=”http://<IP_Addrress of the server>:<Port_Number>/DashboardService.svc”
<div style="height:700px;width:100%;"> @Html.EJ().DashboardViewer("dashboard").ServiceUrl(@ViewBag.ServiceUrl).DashboardPath(@ViewBag.dashboardPath)
</div>
|