Showing posts with label local. Show all posts
Showing posts with label local. Show all posts

Saturday, March 24, 2012

Deployment Problem

Recently I developed a website and used atlas for paging gridviews and some other things, all work correctly on my local host. But when I uploaded it to the host(the host supports asp.net 2.0), It doesnt work, I dont recieve any error but there is nothing like atlas there! I uploaded the dll as well as the correct configuration in web.config.

Is there anything else to do? Do you guys have any idea?

hello.

1. check if the application is configured to use asp.net 2.0

2. use fiddler to see what happens during a partial postback. it should give you some clues on what's going on,


The app uses asp.net 2.0, I have used so many features of asp.net 2.0 succesfully there. But the only problem is it do not refereshesh partially, it refereshesh totaly. It works well on local, but doesnt work on the shared host

hello again.

have you tried using fiddler to intercept the http traffic to see what you're getting on the client after a partial postback?


Hi...i'd the same problem...

Do you have URLSCAN or another security software installed in the server?

You need configure this software for allow requests with extesion .axd.

Sorry my bad english...Huh?


About URL Scan stuff, I should ask the guys in the hosting provider company, because this is a shared hosting plan, and about the fiddler no, I have not tested yet.
I used fiddler now, first when the page is loaded, for atlas .axd scripts it shows 404 error. When the partial postback is fired, it doesnt referesh all requestst but again it cannot find the scripts. If you want to take a view go tohttp://www.shokri.net/ I guess I should copy the javascript files. Do you have any idea?
With certainty, this is a problem of configuration in server. In my case, the URLSCAN blocked all attempts for any .axd scripts generating error 404.
Something more funny, On this host I cant use FreeTextBox WYSIWYG the way Ive always used, and the error comes from handlers again.
The guys from hosting compay say they have a url scan, now what is your suggestion?
They need configured the file urlscan.ini to allow request .axd extension. After, they need restart IIS.

Yeah I asked them to. Honesty for .axd file url protection is not usable, because these .axd files do not often have something secure within.

Deployment on production server : Ajax does not function; on local WorkStation is Ok

Hello,

I have just put to me to the AJAX, I installed it well on my PC, my ajax project with "Update Panel" functions locally.

I put it in production, I put the extensions in [bin]: "AjaxControlToolkit.dll"; System.Web.Extension is quite present in the GAC and when I click on the button to refresh the "update panel" in which a label update yourself. a traditional PostBack of alll the page is carried out! as if there were no Ajax!!?

Help me!


En fran?ais :

Bonjour,

Je viens de me mettre à l'AJAX, je l'ai bien installé sur mon poste, mon projet ajax avec un Update Panel fonctionne en local.

Je le mets en production, j'ai mis les extensions dans [bin] :
"AjaxControlToolkit.dll", System.Web.Extension est bien présent dans le GAC

et quand je clique sur le bouton pour rafraichir l'update panel dans lequel un label se mets à jour. un rafraichissement classique de toute la page s'effectue! comme si il n'y avait pas d'Ajax!!?

un peu d'aide ne serait pas de refus!

The first think I will ask you is to make sure the same version of Ajax is installed on the production server. I know it may sound silly, but I know several people with similar problem and they claim that they have the same version, but when they take a deeper look, they notice that there was not the same.

Delete Local Client File?

I have this upload utility that we created here at the office and I wanted to know if there is a way I can add a delete function to delete the uploaded file from the clients workstation (client side) from AJAX. We are trying to eliminate duplicate files on workstations and our web server. I created a WinForms control but it needs to have .net 2.0 configuration made to the security of every worksation so it ended up being a nightmare. Is there any other methods or tools I can use to accomplish this?

-rich

From ASP.NET or client side you cannot access the files in the client machine, sorry, you'll need to create an Active X for that
yea, kind of figured that - What's the best method in Visual Stuido 05? I've used vb 6 last time I had to create one but that was so long ago I have no idea where to begin...
You can use C++ in VS2005. A good start point is herehttp://msdn2.microsoft.com/fr-fr/library/zbwca5s6(VS.80).aspxHope this helps