Page view counter
When will Silverlight 2.0 Beta 2 be released?
Last post 05-04-2008 12:13 PM by PeterMarshall. 6 replies.
Sort Posts:
04-28-2008 10:06 AM
When will Silverlight 2.0 Beta 2 be released?

I know it could be annoying but, as my boss is also asking, I still have to ask, 

When will Silverlight 2.0 Beta 2 be released?

Because we need to plan new development on Silverlight with commercial go live license now.

Big thanks to anyone who can answer it.

 

 

lixin123

Loading...
Joined on 06-02-2007
Posts 36
04-28-2008 10:12 AM
Marked as Answer
Re: When will Silverlight 2.0 Beta 2 be released?

lixin123:
When will Silverlight 2.0 Beta 2 be released?

We are targeting late Summer

Here is a rough timeline:
Silverlight 2.0 Beta 1 (Q1CY08 with limited (non commercial) Go-Live)
Silverlight 2.0 Beta 2 (Q2CY08 with Go-Live)
Silverlight 2.0 RTM (Summer 2008) – Exact timing TBD

Silverlight v.next – We are working on a v.Next plan and have nothing to announce at this time

Silverlight for mobile – No date available

 

Ref: http://blogs.msdn.com/ashish/archive/2008/04/03/silverlight-roadmap-questions.aspx

 

(If this has answered your question, please click on "Mark as Answer" on this post. Thank you!)

Best Regards,
Michael Sync

Blog : http://michaelsync.net
Feed : http://michaelsync.net/feed

mchlSync

Loading...
Joined on 09-16-2005
Singapore
Posts 2,335
04-28-2008 2:34 PM
Re: When will Silverlight 2.0 Beta 2 be released?

would you be able to share with us what iscoming in these releases? Are these just bug fixes or do thes contain addtl. functionalities?

BlueAquarius

Loading...
Joined on 04-24-2008
Posts 34
04-29-2008 12:51 AM
Re: When will Silverlight 2.0 Beta 2 be released?

BlueAquarius:
would you be able to share with us what iscoming in these releases? Are these just bug fixes or do thes contain addtl. functionalities?
 

The link that I gave you in my previous post is the latest information that I have. AFAIK,  there will be some breaking changes between beta2 and beta1. We may have more controls in beta2. As I'm not working at Microsoft, I don't know the exact answer. maybe, someone from Microsoft may give you the exact answer.

(If this has answered your question, please click on "Mark as Answer" on this post. Thank you!)

Best Regards,
Michael Sync

Blog : http://michaelsync.net
Feed : http://michaelsync.net/feed

mchlSync

Loading...
Joined on 09-16-2005
Singapore
Posts 2,335
04-29-2008 1:01 AM
BrowserHttpWebRequest Error

HttpWebRequest request = new BrowserHttpWebRequest(new Uri("C:\\Items.xml"));

I tried implement this coding but its giving error

Error 1 'System.Net.BrowserHttpWebRequest' is inaccessible due to its protection level 

anybody give solution please

JaishreeMCA

Loading...
Joined on 02-22-2008
Posts 5
04-29-2008 1:08 AM
Re: BrowserHttpWebRequest Error

Hi, You should probably open new thread for your question. 

JaishreeMCA:

HttpWebRequest request = new BrowserHttpWebRequest(new Uri("C:\\Items.xml"));

I tried implement this coding but its giving error

Error 1 'System.Net.BrowserHttpWebRequest' is inaccessible due to its protection level 

anybody give solution please

 

Based on Silverlight 2 Breaking Changes, BrowserHttpWebRequest is removed in SL2 beta1.

For example:

HttpWebRequest request = (HttpWebRequest) WebRequest.Create(new Uri("http://contoso.com"));
request.BeginGetResponse(new AsyncCallback(ResponseCallback), request);

...

// AsyncCallback called back on UIThread
private void ResponseCallback(IAsyncResult asyncResult)
{
HttpWebRequest request = (HttpWebRequest)asyncResult.AsyncState;

HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asyncResult);
Stream content = response.GetResponseStream();

using (XmlReader reader = XmlReader.Create(new StreamReader(content)))
{
while (reader.Read())
{
if ((reader.IsStartElement()) && ("item" == reader.LocalName))
{
using (XmlReader itemReader = reader.ReadSubtree())
{
while (itemReader.Read())
{
if (itemReader.IsStartElement())
{
if ("title" == itemReader.LocalName)
{
}
else if ("link" == itemReader.LocalName)
{
}
}
}
}
}
}
}
content.Close();
}

 

(If this has answered your question, please click on "Mark as Answer" on this post. Thank you!)

Best Regards,
Michael Sync

Blog : http://michaelsync.net
Feed : http://michaelsync.net/feed

mchlSync

Loading...
Joined on 09-16-2005
Singapore
Posts 2,335
05-04-2008 12:13 PM
Re: When will Silverlight 2.0 Beta 2 be released?

 Thanks for the reply. I am waiting for this reelease now so I can progress with url's that have a semicolon in them. I hope that problem is fixed in the next release. 

Anyone  know if that bug is fixed in beta 2?

 

Peter

 

http://sliverlightlife.blogspot.com/

PeterMarshall

Loading...
Joined on 08-06-2007
Oxford
Posts 20
Microsoft Communities