Showing posts with label hii. Show all posts
Showing posts with label hii. Show all posts

Saturday, March 31, 2012

Web server is not running ASP.net version 1.1

Hi!
I have installed Visual studio.net on Windows XP 2002, SP 2. IIS is working properly. But when i press Asp.net web application from the new project menue the following message appears on the window:
visual studio.net has detected that the specified web server is not running ASP.Net version 1.1. You will be unable to run Asp.net web application and services.

I am new user of .Net. Can anybody tell me that why am i facing the above message?
Regards,
Mizi.

Try to register asp.net with IIS via the cmd line tool aspnet_iis -i. The cmd should be in the C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ folder.
Small correction to the above post.. The executable is named aspnet_regiis.exe

Web Server not running ASP .NET version 1.1 Error while publishin

Hi
I am getting Error " Visual studio .NET has detected that the specified
web server is not runnin ASP.NET 1.1"
When i am trying to publish the web site on the Testing server from my
development server using Copy Project, i get this Error.
Interestingly, i did publish my web site sucessfully couple of time
earlier, but noe not able to publish it.
Both my Development & Testing webserver has same version & nothing have
changed on them excpet few installation on my local computer, but ther
version of .NEt are still the same.
any ideas, what is , wrong, how does it determine which version the server
is running & what is the fix.this is a known bug when defaultredirect is specified in web.config
http://www.kbalertz.com/kb_825792.aspx
Regards,
Hermit Dave (D'way)
http://hdave.blogspot.com
"N S S" <sidhu@.newsgroups.nospam> wrote in message
news:C4943981-E361-40A6-AA4B-45E18A2A1C9A@.microsoft.com...
> Hi
> I am getting Error " Visual studio .NET has detected that the specified
> web server is not runnin ASP.NET 1.1"
> When i am trying to publish the web site on the Testing server from my
> development server using Copy Project, i get this Error.
> Interestingly, i did publish my web site sucessfully couple of time
> earlier, but noe not able to publish it.
> Both my Development & Testing webserver has same version & nothing have
> changed on them excpet few installation on my local computer, but ther
> version of .NEt are still the same.
> any ideas, what is , wrong, how does it determine which version the
server
> is running & what is the fix.

Web Server not running ASP .NET version 1.1 Error while publishin

Hi

I am getting Error " Visual studio .NET has detected that the specified
web server is not runnin ASP.NET 1.1"

When i am trying to publish the web site on the Testing server from my
development server using Copy Project, i get this Error.

Interestingly, i did publish my web site sucessfully couple of time
earlier, but noe not able to publish it.
Both my Development & Testing webserver has same version & nothing have
changed on them excpet few installation on my local computer, but ther
version of .NEt are still the same.

any ideas, what is , wrong, how does it determine which version the server
is running & what is the fix.this is a known bug when defaultredirect is specified in web.config

http://www.kbalertz.com/kb_825792.aspx

--

Regards,

Hermit Dave (D'way)
http://hdave.blogspot.com

"N S S" <sidhu@.newsgroups.nospam> wrote in message
news:C4943981-E361-40A6-AA4B-45E18A2A1C9A@.microsoft.com...
> Hi
> I am getting Error " Visual studio .NET has detected that the specified
> web server is not runnin ASP.NET 1.1"
> When i am trying to publish the web site on the Testing server from my
> development server using Copy Project, i get this Error.
> Interestingly, i did publish my web site sucessfully couple of time
> earlier, but noe not able to publish it.
> Both my Development & Testing webserver has same version & nothing have
> changed on them excpet few installation on my local computer, but ther
> version of .NEt are still the same.
> any ideas, what is , wrong, how does it determine which version the
server
> is running & what is the fix.

Wednesday, March 28, 2012

web service

Hi
I got to create a system that automatically sends out an email when the server date is equal to a date field in an sql server database. The project I am working has been built using asp but I can't find a solution using classic asp. I'm relatively new to asp.net and thought maybe using a .net web service to provide this functionality. Can anyone advise me of a way to do this asp or asp.net and whether I was on the right track with the web service idea?

Thanks in advance.Hi,

You don't require a webservice for this. Instead you can create a console application using c# or vb.net which will be an exe that will run daily at a specified time and check if the server date is equal to that in the database and then send out a mail, if it is equal.

Once you are done with the logic, you can put it in task scheduler (type tasks form command prompt) for the same to run daily.

Hope it helps.

Web service - how to?

Hi
I would like to access an ms access database located at a web site from my
desktop via web service. Is there some information available on how to do
that? Would the web service run on a shared hosting web account?
Thanks
RegardsWhere ever the web service is running will have to have file level access to
the DB, is this possible with your setup?
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"John" <john@.nospam.infovis.co.uk> wrote in message
news:%23wQKuMDPEHA.1312@.TK2MSFTNGP12.phx.gbl...
> Hi
> I would like to access an ms access database located at a web site from my
> desktop via web service. Is there some information available on how to do
> that? Would the web service run on a shared hosting web account?
> Thanks
> Regards
>
Think of a web service as a special purpose web page with a predefined
URL and output. Let's say you wrote an ASP page that would take an ID
from the URL, get some data from the database and display it on the
screen. Now, take the URL and replace it with a special XML string,
and wrap the result up the same way and you have a web service.
The Web Service code is just another ASPX page (with a different
extension and a few more lines of code). Therefore, whatever you would
need to do to get to the database in an ASPX page, you would need to
do in a web service.
On Mon, 17 May 2004 18:19:06 +0100, "John" <john@.nospam.infovis.co.uk>
wrote:

>Hi
>I would like to access an ms access database located at a web site from my
>desktop via web service. Is there some information available on how to do
>that? Would the web service run on a shared hosting web account?
>Thanks
>Regards
>

Web service - how to?

Hi

I would like to access an ms access database located at a web site from my
desktop via web service. Is there some information available on how to do
that? Would the web service run on a shared hosting web account?

Thanks

RegardsWhere ever the web service is running will have to have file level access to
the DB, is this possible with your setup?

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com

"John" <john@.nospam.infovis.co.uk> wrote in message
news:%23wQKuMDPEHA.1312@.TK2MSFTNGP12.phx.gbl...
> Hi
> I would like to access an ms access database located at a web site from my
> desktop via web service. Is there some information available on how to do
> that? Would the web service run on a shared hosting web account?
> Thanks
> Regards
Think of a web service as a special purpose web page with a predefined
URL and output. Let's say you wrote an ASP page that would take an ID
from the URL, get some data from the database and display it on the
screen. Now, take the URL and replace it with a special XML string,
and wrap the result up the same way and you have a web service.

The Web Service code is just another ASPX page (with a different
extension and a few more lines of code). Therefore, whatever you would
need to do to get to the database in an ASPX page, you would need to
do in a web service.

On Mon, 17 May 2004 18:19:06 +0100, "John" <john@.nospam.infovis.co.uk>
wrote:

>Hi
>I would like to access an ms access database located at a web site from my
>desktop via web service. Is there some information available on how to do
>that? Would the web service run on a shared hosting web account?
>Thanks
>Regards

Monday, March 26, 2012

web service authentication with active directory

hi!!
i have a windows app that uses web serivces to access data and i use
integrated windows to authenticate.
is it a way to authenticate with users in active directory ?
and how do i do that ?There is already a sample available in Quickstart guide...
http://samples.gotdotnet.com/quicks...reservices.aspx
Regards
Jignesh Desai
www.dotnetjini.com
"Geir Sanne" <GeirSanne@.discussions.microsoft.com> wrote in message
news:749DAF3F-6165-4699-B554-6D6E82DE52A0@.microsoft.com...
> hi!!
> i have a windows app that uses web serivces to access data and i use
> integrated windows to authenticate.
> is it a way to authenticate with users in active directory ?
> and how do i do that ?
hi!!
i tried the guide, but it didnt help me.
ive tried to use WSE and the UsernameTokenManager.
This works fine, except that if i dont pass any UsernameToken to the service
the user is acceptet. You know how to make the webservice call the
UsernameTokenManager even if a UsernameToken isnt passed ?
regards
geir sanne
"Jignesh Desai" wrote:

> There is already a sample available in Quickstart guide...
> http://samples.gotdotnet.com/quicks...reservices.aspx
> Regards
> Jignesh Desai
> www.dotnetjini.com
>

web service authentication with active directory

hi!!

i have a windows app that uses web serivces to access data and i use
integrated windows to authenticate.
is it a way to authenticate with users in active directory ?
and how do i do that ?There is already a sample available in Quickstart guide...

http://samples.gotdotnet.com/quicks...reservices.aspx

Regards
Jignesh Desai
www.dotnetjini.com

"Geir Sanne" <GeirSanne@.discussions.microsoft.com> wrote in message
news:749DAF3F-6165-4699-B554-6D6E82DE52A0@.microsoft.com...
> hi!!
> i have a windows app that uses web serivces to access data and i use
> integrated windows to authenticate.
> is it a way to authenticate with users in active directory ?
> and how do i do that ?
hi!!

i tried the guide, but it didnt help me.

ive tried to use WSE and the UsernameTokenManager.
This works fine, except that if i dont pass any UsernameToken to the service
the user is acceptet. You know how to make the webservice call the
UsernameTokenManager even if a UsernameToken isnt passed ?

regards
geir sanne

"Jignesh Desai" wrote:

> There is already a sample available in Quickstart guide...
> http://samples.gotdotnet.com/quicks...reservices.aspx
> Regards
> Jignesh Desai
> www.dotnetjini.com
>