Introduction
Web services signal a new age of trivial distributed application development. While Web services are not intended nor do they have the power to solve every distributed application problem, they are an easy way to create and consume services over the Internet. One of the design goals for Web Services is to allow companies and developers to share services with other companies in a simple way over the Internet.
Web services take Web applications to the next level.
Using Web services, your application can publish its function or message to the rest of the world.
Web services use XML to code and decode your data and SOAP to transport it using open protocols.
With Web services, your accounting departments Win 2K servers' billing system can connect with your IT suppliers UNIX server.
Using Web services, you can exchange data between different applications and different platforms.
With Microsoft .NET platform, it is a simple task to create and consume Web Services. In this article, I am going to show how to call a published Web service inside a Web project.
I use a test published Web service; Extentrix Web Services 2.0 Application Edition that Extentrix published for the developer community to help them in testing and developing.
So I'll simply explain the functions of this Web services APIs. In general Extentrix Web Services for Citrix Presentation Server helps you get information about a published application for a specific client with the specified details, server types, and client types. It also returns the ICAfile description to be used to launch an application with a given parameter and checks the user's credentials and returns true if they are valid.
For more information, visit this website.
You can find more samples, use this web service, and test it here.
Background
Knowledge in ASP.NET is preferred.
Using the Code
Simple Steps to Consume a Web Service
- Create a Web Site project
- Add a Web Reference
- Call the Web services APIs inside the code
First Step: Create a Web Site Project
- To create a new Web Site project, choose New from File menu, then choose Web Site as shown below:
- Choose ASP.NET Web Site. Name the project and click OK:
Second Step: Add a Web Reference
After creating the Web Site project, it’s time to add a Web reference for our Web service.
- In the solution explorer, right click the project node, choose Add Web Reference:
- A new window with Add Web Reference title will be opened:
In the URL field, insert the URL for the Web service. In this tutorial, as I mentioned before, I'll use the test published Web services from Extentrix: “Extentrix Web Services 2.0 – Application Edition”.
After clicking the Go button, you will see the Web services APIs.
- Set a name for your Web service reference in the Web reference name field and click Add Reference:
Third Step: Call the Web Services APIs Inside the Code
After successfully adding to the Web service, now we are ready to call the Web services APIs inside our project.
- First we need to add the added Web reference to our class.
ExtentrixWS
is the name of the added Web service from the previous step.
using ExtentrixWS;
- Create a proxy object for our added Web service reference, where
ExtentrixWebServicesForCPS
is the name of the Web Services.
private ExtentrixWS.ExtentrixWebServicesForCPS proxy;
- As I explained before, we need credentials to pass to the Citrix Presentation Server. We will pass these credentials through the Web services APIs:
private Credentials credentials;
Initialize the proxy and the credentials objects:
proxy = new ExtentrixWebServicesForCPS();
credentials = new Credentials();
- Set the values for Citrix credentials. I set the credentials values for the test of Extentrix Web Service:
credentials.Password = "demo";
credentials.UserName = "citrixdesktop";
credentials.Domain = "testdrive";
credentials.PasswordEncryptionMethod = 0;
credentials.DomainType = 0;
Now we can call any Web services available. It is as simple as calling any ordinary function.
- Call the
GetApplicationsByCredentialsEx
Web service. This web service takes the following parameters:
- Credentials: Citrix Credential to access Citrix Presentation Server Farm
- Client Name: Pass your machine name
- Client IP: Pass your machine IP
- Desired Details : Details you asked for
- Server Types: Pass “all”
- Client Types: Pass “all”
I am not going to explain Extentrix Web services APIs, if you are interested, you can go here and look for it.
This API returns an array of ApplicationItemEx
. This class will be built for you once you add the Web reference.
This class contains the published application properties. I used this Web service to get all the published applications, and then I created an ImageButton
for each application.
ApplicationItemEx[] items = proxy.GetApplicationsByCredentialsEx
(credentials, Request.UserHostName,
Request.UserHostAddress, new string[] { "icon","icon-info"}, new string[]{ "all" },
new string[] { "all"});
for (int i = 0; i < items.Length; i++) {
System.Web.UI.WebControls.ImageButton app = new System.Web.UI.WebControls.ImageButton();
app.ImageUrl = createIcon(items[i].InternalName,items[i].Icon);
app.ToolTip = items[i].InternalName;
AppList.Controls.Add(app);
app.Click += new
System.Web.UI.ImageClickEventHandler(this.OnApplicationClicked);
}
Finally, another example in calling a Web service is to launch the published application.
In this example, in the event handler of the applications ImageButtons
I launch the clicked application.
I get the ICA file content by calling LaunchApplication
Web service. Then I write the ICA file content to the response to launch the application.
private
void OnApplicationClicked (object sender, System.EventArgs e)
{
ServicePointManager.Expect100Continue = false;
System.Web.UI.WebControls.ImageButton app =
(System.Web.UI.WebControls.ImageButton)sender;
string = proxy.LaunchApplication(app.ToolTip, credentials, Request.UserHostName,
Request.UserHostAddress);
Response.ContentType = "application/x-ica";
Response.BinaryWrite(Response.ContentEncoding.GetBytes(ica));
Response.End();
}
References