vote up 1 vote down star

In a Silverlight application I sometimes need to connect to the web site where the application is hosted. To avoid hard coding the web site in my Silverlight application I use code like this:

WebClient webClient = new WebClient();
Uri baseUri = new Uri(webClient.BaseAddress);
UriBuilder uriBuilder = new UriBuilder(baseUri.Scheme, baseUri.Host, baseUri.Port);
// Continue building the URL ...

It feels very clunky to create a WebClient instance just to get access to the URL of the XAP file. Are there any alternatives?

flag

80% accept rate

3 Answers

vote up 2 vote down check

Application.Host.Source retrieves the URI of the XAP.

link|flag
I assume you mean Application.Current.Host.Source. Anyway, thanks. – Martin Liversage Jul 24 at 15:10
Yes, sorry--I was referring to the class itself. :-) – Ben M Jul 24 at 15:19
1  
WARNING: in my experience this doesn't work as expected if you rename your .XAP file to .ZIP (to get around hosting MIME-type restrictions). Just something to be aware of - more info blogged here conceptdev.blogspot.com/2009/03/… – CraigD Jul 28 at 10:15
vote up 0 vote down

This will build the root url in ASP.NET. You would then need to pass in baseUrl via Silverlight's InitParams and add "ClientBin\silverlight.xap".

// assemble the root web site path
var baseUrl = Request.Url.Scheme + "://" + Request.Url.Authority + Request.ApplicationPath.TrimEnd ('/') + '/';
link|flag
Your code looks like ASP.NET server side code. My question is about how to get the base URL in the Silverlight client side application. – Martin Liversage Jul 24 at 15:12
you're right. I added some clarification. The other suggestion works, but gives you the Silverlight control's url, not the base url of the site. Depends which one you want, and how much parsing you want to do. – scottmarlowe Jul 24 at 18:48
vote up 0 vote down

I use,

Uri baseUri = new Uri(Application.Current.Host.Source, "/");
// Example results:
//  http://www.example.com:42/
//  or
//  https://www.example.com/

No string parsing needed! You can also use this method to create full Urls, for example,

Uri logoImageUri = new Uri(Application.Current.Host.Source, "/images/logo.jpg");
// Example result:
//  http://www.example.com/images/logo.jpg
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.