I want crate application in which i want to have azure remote app .
let us consider the below scenario:
I have implemented the Designer application (report designer) in WPF. now i creating the website,user of this website need to design the report using the report designer application and host in my website. I planed to host my application in azure remote app using this remote app inside my remote application
Is this possible to do that ? if not how can i achieve that my client need both report designer interface and my web application?
Azure RemoteApp clients do not have an API today that allows you to input parameters (i.e.: username, password) and also there is no HTML5 client that you could embed in your website. So, I believe it is not possible to do that right now.
/cd
Related
I have WPF application(.exe), which was hosted in my remote web server.
Now I want to access WPF application from my web page by clicking respective link.
Response.Redirect(WPFLaunchUrl);
By using this, I am able lunch application in IE. But whenever I am using Google-Chrome then application downloading into my local system instead of running application from Hosted URL.
Could you please suggest me on this.
I am trying to get my company to start using SSRS for reporting but I realized something today that I have never tried to use SSRS outside the local LAN before. Our application is external facing on the internet and if I implemented SSRS, I would need to be able to access the Report Manager via an external URL.
It is setup and configured currently, but I can only use it locally on the company domain. I tried searching the web for how to configure this and what best practice is but I didn't really get anywhere.
I imagine it would not be good to set it up on the same server that the database is hosted on? Has anyone done this before? I have setup one application that was inherently not meant to be external before to be external and it was a pain in the ass. :D Course, that application had to be proxied through Tomcat to IIS.
We have a developed an intranet web application build on ASP.Net MVC 4 and SSRS 2012, which is live for past 2 years.
Now we planning to host the same in internet. We are having a bottle neck now for SSRS. As SSRS web access is not ready to use externally (internet).
I also checked for SSRS custom authentication which again not much recommended by Microsoft!
We are looking for something like a proxy (web application) to the SSRS web access, which can be hosted as a web application in IIS along with other services.
Is there any ready to use references / tools available.
Update : For better understanding
We are rendering the ssrs reports inside the Asp.Net mvc razor views using iframe.
And also we are using ssrs for export to various formats.
Use the ReportViewer control to hide the SSRS from the internet.
The connection to the SSRS is from your web servers, not from the internet
I have a webpage , that allows users to create account, login, forgot password.I also create a windows application. I want to connect this app with database that is hosted on web. how can i do this ? i need only database
Publish your website as a Web Service and access that web service in your windows application.
Have a look at this link to create webservices.
I am trying to connect to an AX-based web service through ASP.Net and C# but, when I publish my application, querying the web service results in "System.ServiceModel.FaultException: You cannot log on to Microsoft Dynamics AX." However, when I connect to the same web service through a C# console application, the querying works fine. I have copied the code from the console application into the ASP.Net application so that I have ensured that I have done nothing different.
I cannot figure out what the problem could be. I'm sure it's simple but I am at a loss. Any help?
This should be a permissions problem. When you launch the console app it executes through the current user (you, probably you have permissions to connect). When the asp.net site connects it uses an IIS user that needs to have permissions on AX too.
I have a Windows Form Application connected to a database. It does some simple select operations and shows the result on the DataGridView.
I want to send that data on the grid to a web service. I did some research on the Internet about web services and found that I can easily creat a web service, define its methods and use these methods from my Windows Form Application by using Visual Studio 2010. Unfortunately, that is not what I want. I already have a Windows Form Application with some methods in it. All I want is to send the data (xml) to a web service that I created in Visual Studio. How can I do that?
Thanks in advance.
See "How to Consume a Web Service".