This is a migrated thread and some comments may be shown as answers.

Native 3.5 version of Prometheus for VS2008 RTM?

15 Answers 374 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
N
Top achievements
Rank 1
N asked on 23 Nov 2007, 08:05 AM
When are you guys going to release a Native 3.5 version of Prometheus for VS2008 RTM? Ot alternatively, how can I get the current version to work with VS2008 RTM without installing the earlier standalone MS AJAX.NET?

15 Answers, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 23 Nov 2007, 08:22 AM
Hi Nuri,

The current version of the Prometheus release works as expected in VS2008 and v.3.5 of the framework. As of now you do not need new assembly compiled against the new version of the framework. Just create a new website to run with this framework and you are all set. Opening an existing website will also work, as VS2008 adds binding redirects in the web.config so no need for native build for the 3.5 version. More info is available in our blogs here.

Please do not hesitate to share any problem/issues you might have encountered with our Prometheus controls in VS2008.

All the best,
Steve
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
N
Top achievements
Rank 1
answered on 23 Nov 2007, 11:36 AM
Hi Steve,

Well for one, the current version of Prometheus (full install) did not install properly on Vista (x86). I did uninstall the previous version and it took about half an hour to uninstall which is a problem in itself! The new installation created the Prometheus title in the VS2008 RTM toolbox but there are no controls inside. If I manually add the Telerik.Web.DLL file to the toolbar, I get the error at the end of this message.

My VS2008 RTM web application uses the built-in MS AJAX and works perfectly. But If I copy the current version Prometheus Telerik.Web.Ui.dll into the bin directory of my 3.5 website, and also add this to the top of the page:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

As soon as I add this:

<telerik:RadAjaxPanel ID="RadAjaxPanel1" 
                runat="server" 
                Width="190px">

</
telerik:RadAjaxPanel>


The app won't compile and I get this error:

Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies

I don't even have System.Web.Extensions, Version=1.0.61025.0 installed on my machine so I assume its coming from your DLL right? How do I get ti working? Also, how do I add the controls to the toolbar?
0
Konstantin Petkov
Telerik team
answered on 23 Nov 2007, 11:54 AM
Hello Nuri,

We are researching similar problem at the right moment, but unfortunately cannot identify the cause of the issue yet. Would you please help us?

Can you please open the web.config file and check if there is an entry like the following?

xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"


If so, does removing it resolve the issue?

Otherwise, can you post or even better send the web.config or the website for local review? Thanks a lot for your cooperation!

Regards,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
N
Top achievements
Rank 1
answered on 23 Nov 2007, 12:02 PM
Hi Konstantin,

It's currently 11pm on Friday night here in Sydney and I'm at home. But I will try your suggestion first thing on Monday morning at the office and get back to you.

Cheers,
Nuri
0
Konstantin Petkov
Telerik team
answered on 23 Nov 2007, 12:08 PM
Hi Nuri,

Please, give the project attached to this forum thread a try when you have time. Let us know if my suggestions help.

Greetings,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Warren
Top achievements
Rank 1
answered on 24 Nov 2007, 04:57 PM
We're having a similar problem, too, except that what we're getting is both the 1.0 and 3.5 copies of ASP.NET AJAX linked in, which causes disambiguation errors when trying to compile a reference to ScriptManager, e.g.

It would appear that if a the project containing a reference path pointing to the NET2\bin directory of RadControls Q2, it will attempt to link to the copy of System.Web.Extensions.dll located in that directory, which is of the version 1.0 variety. 

0
N
Top achievements
Rank 1
answered on 26 Nov 2007, 12:38 AM
Hi Konstantin,
There was no xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"
in my web.config, but when I added the assembly binding redirects to the end of my web.config like this, it all worked:

<runtime>
<
assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <
dependentAssembly>
        <
assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
        <
bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
    </
dependentAssembly>
    <
dependentAssembly>
        <
assemblyIdentity
name="System.Web.Extensions.Design"
publicKeyToken="31bf3856ad364e35"/>
        <
bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
    </
dependentAssembly>
</
assemblyBinding>
</
runtime>

</
configuration>

0
Konstantin Petkov
Telerik team
answered on 26 Nov 2007, 06:57 AM
Hello,

@Scott,
The studio should not add reference automatically to assembly you do not need. Please, try modifying the web.config as below and let us know if you need further assistance.

@Neil,
I'm glad you've fixed the problem on your side. Thank you for sharing the solution with us. I'm sure it will help other experiencing that as well.

Best wishes,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
UT_DEV
Top achievements
Rank 1
answered on 27 Nov 2007, 02:42 PM
We got the same issue and adding code proposed by Nuri does not solve this issue
0
Warren
Top achievements
Rank 1
answered on 27 Nov 2007, 08:37 PM
The binding stuff above solved the issue for us.  Thanks.
0
Konstantin Petkov
Telerik team
answered on 28 Nov 2007, 06:21 AM
Hello,

@Scott, it's great it fixed the problem there.

@Ilya,
Can you please try the other suggestions in this thread as well? Also, can you check about the following reference in your web.config:

<add assembly="Telerik.Web.UI, Version=2007.2.1107.0, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/>


Try removing it or adding Telerik.Web.UI in the GAC and let us know about the result.

Best wishes,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
UT_DEV
Top achievements
Rank 1
answered on 28 Nov 2007, 08:58 AM
The issue there I can`t add libraries to GAC, because it can lead to the issues with other cites, so GAC is not suitable, any other ideas?
0
Konstantin Petkov
Telerik team
answered on 30 Nov 2007, 07:18 AM
Hello Ilya,

Does the problem still persist? If so, did you check about the entry I posted in my previous reply in your web.config?

If that does not help, can you please submit regular support ticket sending a sample web site, which we can give a try locally? Thank you.

Sincerely yours,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Konstantin Petkov
Telerik team
answered on 03 Dec 2007, 06:18 AM
Hello guys,

This is just to inform you that we will ship Prometheus RadControls built against v3.5 of ASP.NET AJAX for Q3 2007 release. There will be separate "Bin for VS2008" folder having additional Telerik.Web.UI and Telerik.Web.Design .DLL-s, which can be used in case of VS 2008 only and no ASP.NET AJAX 1.0 installed.

We will keep testing all the possible scenarios to avoid any problems with Prometheus controls in FW v3.5 environment.

Sincerely yours,
Konstantin Petkov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
vtech
Top achievements
Rank 1
answered on 18 Feb 2009, 07:36 AM
Just to let other visitors to this topic know, I just got caught by this one & fixed it.

Had VS 2005, old Telerik, Ajax 1.0.106... We upgraded to Telerik Q3 & VS 2008 ... hit all these bugs where Ajax misbehaved.

Solution:
Copy the Telerik.Web.UI.dll  from the bin35 folder, rather than the bin folder into our Apps "bin" folder.

Note:  If you have a "Auto Update" setting, be wary to also edit the Telerik.Web.UI.dll.refresh file located in your Web app bin folder, or ASP.NET will immediatelly overwrite your effort


Tags
Ajax
Asked by
N
Top achievements
Rank 1
Answers by
Steve
Telerik team
N
Top achievements
Rank 1
Konstantin Petkov
Telerik team
Warren
Top achievements
Rank 1
UT_DEV
Top achievements
Rank 1
vtech
Top achievements
Rank 1
Share this question
or