vote up 1 vote down star
1

Hi there,

To make sure all our customers receive the latest Silverlight App, we are placing the new revision number on the url for XAP file as follows:

<param name="source" value="/ClientBin/ShoeboxViewer.xap?v=5" />

Problem is when we do this, all HyperLink controls (in the Silverlight App) that use relative URLs, throw an internal error when clicked. Here's the stack trace:

Unhandled Error in Silverlight 2 Application Specified argument was out of the range of valid values. Parameter name: baseUri at System.Uri..ctor(Uri baseUri, Uri relativeUri) at System.Windows.Controls.HyperlinkButton.GetAbsoluteUri() at System.Windows.Controls.HyperlinkButton.Navigate() at System.Windows.Controls.HyperlinkButton.OnClick() at System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp(MouseButtonEventArgs e) at System.Windows.Controls.Control.OnMouseLeftButtonUp(Control ctrl, EventArgs e) at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName)

If I remove the querystring, it works fine.

Can anyone help?

Cheers, Ash.

flag

Were you having a problem with your users not getting the latest revision? – Michael S. Scherotter Jun 12 at 16:04
If so, were these users on Macs? The empty IFrame after the object tag deals with this issue. – Michael S. Scherotter Jun 12 at 16:06
1  
The latest version issue is a problem on pc's too. It's basically because the browser uses the cached version instead of the new version. By changing the param, it tricks it into thinking it's a different uri – Jacob Adams Jun 12 at 16:08

2 Answers

vote up 1 vote down check

Jacob is right - you might also want to look at this solution to fixup relative URLs.

link|flag
vote up 0 vote down

The problem is actually that HyperlinkButtons can't use relative urls. I ran into this just the other day. It's a hack, but I got it to work by adding a click handler to the HyperlinkButton and then calling HtmlPage.Navigate, passing in a uri marked as relative

link|flag

Your Answer

Get an OpenID
or

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