Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Can no longer publish my web site project

Reply
Thread Tools

Can no longer publish my web site project

 
 
Jason
Guest
Posts: n/a
 
      05-04-2007
Hi all,

I am no longer able to publish a web site project using Visual Studio 2005
Professional.

I am publishing it to an FTP url, and this used to work just fine.

I enter the username and password and select "passive mode" when publishing
the site, like I have always done. Visual Studio deletes the existing files,
but then doesn't write the new ones, though it tells me the operation was
successful:


------ Build started: Project: C:\WebDev\WebNet\, Configuration: Debug
..NET ------
Pre-compiling Web Site

Building directory '/WebNet/admin/'.

Building directory '/WebNet/UserControls/'.

Pre-compilation Complete

------ Publish started: Project: C:\WebDev\WebNet\, Configuration: Debug
..NET ------

========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========

========== Publish: 1 succeeded, 0 failed, 0 skipped ==========



I have tried resetting the permissions on the web folder, and also deleted
an re-created the Server Extensions 2002 Web, but to no avail.

Any ideas?

Thanks very much


 
Reply With Quote
 
 
 
 
Alvin Bruney [MVP]
Guest
Posts: n/a
 
      05-05-2007
Can you ping the site for the machine, i'd check that first. VS writes an
error log out to disk that you can examine. Another option is to debug the
publish process. Open another copy of visual studio and attach it to the
first copy of visual studio, set it to break on all exceptions. Run the
publish process from the first copy and see what exceptions are thrown in
the second copy when the debug breakpoint catches.

--
Regards,
Alvin Bruney
------------------------------------------------------
Shameless author plug
Excel Services for .NET is coming...
OWC Black book on Amazon and
www.lulu.com/owc
Professional VSTO 2005 - Wrox/Wiley


"Jason" <> wrote in message
news:...
> Hi all,
>
> I am no longer able to publish a web site project using Visual Studio 2005
> Professional.
>
> I am publishing it to an FTP url, and this used to work just fine.
>
> I enter the username and password and select "passive mode" when
> publishing the site, like I have always done. Visual Studio deletes the
> existing files, but then doesn't write the new ones, though it tells me
> the operation was successful:
>
>
> ------ Build started: Project: C:\WebDev\WebNet\, Configuration: Debug
> .NET ------
> Pre-compiling Web Site
>
> Building directory '/WebNet/admin/'.
>
> Building directory '/WebNet/UserControls/'.
>
> Pre-compilation Complete
>
> ------ Publish started: Project: C:\WebDev\WebNet\, Configuration: Debug
> .NET ------
>
> ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped
> ==========
>
> ========== Publish: 1 succeeded, 0 failed, 0 skipped ==========
>
>
>
> I have tried resetting the permissions on the web folder, and also deleted
> an re-created the Server Extensions 2002 Web, but to no avail.
>
> Any ideas?
>
> Thanks very much
>



 
Reply With Quote
 
 
 
 
Walter Wang [MSFT]
Guest
Posts: n/a
 
      05-07-2007
Hi Jason,

Are you using IIS's ftp server ? Besides Alvin's suggestion, I would also
suggestion to check the ftp server's log to see if there's anything wrong.

#How to enable logging in Internet Information Services (IIS)
http://support.microsoft.com/kb/313437


Regards,
Walter Wang (, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      05-07-2007
Hi Alvin,

Thanks for your response. Trying to ping the machine from the command line
yields "Request timed out."

I am able to connect to the machine via ftp from the command line and
another ftp client, CuteFtp, though.

As for the error log that VS writes out - where is that file written? I
couldn't find anything in the Visual Studio help docs.

And as for attaching to another process, the help docs mention:

"...choose Attach to Process from the Tools menu..."

which doesn't exist. How do I go about attaching to another process?

Thanks for your help

/jason

"Alvin Bruney [MVP]" <some guy without an email address> wrote in message
news:...
> Can you ping the site for the machine, i'd check that first. VS writes an
> error log out to disk that you can examine. Another option is to debug the
> publish process. Open another copy of visual studio and attach it to the
> first copy of visual studio, set it to break on all exceptions. Run the
> publish process from the first copy and see what exceptions are thrown in
> the second copy when the debug breakpoint catches.
>
> --
> Regards,
> Alvin Bruney
> ------------------------------------------------------
> Shameless author plug
> Excel Services for .NET is coming...
> OWC Black book on Amazon and
> www.lulu.com/owc
> Professional VSTO 2005 - Wrox/Wiley
>
>
> "Jason" <> wrote in message
> news:...
>> Hi all,
>>
>> I am no longer able to publish a web site project using Visual Studio
>> 2005 Professional.
>>
>> I am publishing it to an FTP url, and this used to work just fine.
>>
>> I enter the username and password and select "passive mode" when
>> publishing the site, like I have always done. Visual Studio deletes the
>> existing files, but then doesn't write the new ones, though it tells me
>> the operation was successful:
>>
>>
>> ------ Build started: Project: C:\WebDev\WebNet\, Configuration: Debug
>> .NET ------
>> Pre-compiling Web Site
>>
>> Building directory '/WebNet/admin/'.
>>
>> Building directory '/WebNet/UserControls/'.
>>
>> Pre-compilation Complete
>>
>> ------ Publish started: Project: C:\WebDev\WebNet\, Configuration: Debug
>> .NET ------
>>
>> ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped
>> ==========
>>
>> ========== Publish: 1 succeeded, 0 failed, 0 skipped ==========
>>
>>
>>
>> I have tried resetting the permissions on the web folder, and also
>> deleted an re-created the Server Extensions 2002 Web, but to no avail.
>>
>> Any ideas?
>>
>> Thanks very much
>>

>
>



 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      05-07-2007
OK I figured out how to attach to another process - just opened up a new
blank web application project, and from there was able to attach to the
other devenv.exe process. Easy enough.

There is a "Break All" option on the debug menu - is that what you mean by
"set it to break on all exceptions" ? I tried setting that but the first
devenv.exe instance hung at that point - it didn't survive far enough for me
to publish it.

Arg!

Am I doing something wrong?

/jason




"Alvin Bruney [MVP]" <some guy without an email address> wrote in message
news:...
> Can you ping the site for the machine, i'd check that first. VS writes an
> error log out to disk that you can examine. Another option is to debug the
> publish process. Open another copy of visual studio and attach it to the
> first copy of visual studio, set it to break on all exceptions. Run the
> publish process from the first copy and see what exceptions are thrown in
> the second copy when the debug breakpoint catches.
>
> --
> Regards,
> Alvin Bruney
> ------------------------------------------------------
> Shameless author plug
> Excel Services for .NET is coming...
> OWC Black book on Amazon and
> www.lulu.com/owc
> Professional VSTO 2005 - Wrox/Wiley
>
>
> "Jason" <> wrote in message
> news:...
>> Hi all,
>>
>> I am no longer able to publish a web site project using Visual Studio
>> 2005 Professional.
>>
>> I am publishing it to an FTP url, and this used to work just fine.
>>
>> I enter the username and password and select "passive mode" when
>> publishing the site, like I have always done. Visual Studio deletes the
>> existing files, but then doesn't write the new ones, though it tells me
>> the operation was successful:
>>
>>
>> ------ Build started: Project: C:\WebDev\WebNet\, Configuration: Debug
>> .NET ------
>> Pre-compiling Web Site
>>
>> Building directory '/WebNet/admin/'.
>>
>> Building directory '/WebNet/UserControls/'.
>>
>> Pre-compilation Complete
>>
>> ------ Publish started: Project: C:\WebDev\WebNet\, Configuration: Debug
>> .NET ------
>>
>> ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped
>> ==========
>>
>> ========== Publish: 1 succeeded, 0 failed, 0 skipped ==========
>>
>>
>>
>> I have tried resetting the permissions on the web folder, and also
>> deleted an re-created the Server Extensions 2002 Web, but to no avail.
>>
>> Any ideas?
>>
>> Thanks very much
>>

>
>



 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      05-07-2007
Hi Walter,

Yes, I'm using IIS's ftp server.

I enabled logging on the FTP server like you suggested...I see entries where
the _private and images folders are deleted then created, but nothing else,
like VS is not trying to write the files to the server.

Is there a setting in Visual Studio to tell it to publish files as well as
folders when publishing the web site?

/jason



"Walter Wang [MSFT]" <> wrote in message
news...
> Hi Jason,
>
> Are you using IIS's ftp server ? Besides Alvin's suggestion, I would also
> suggestion to check the ftp server's log to see if there's anything wrong.
>
> #How to enable logging in Internet Information Services (IIS)
> http://support.microsoft.com/kb/313437
>
>
> Regards,
> Walter Wang (, remove 'online.')
> Microsoft Online Community Support
>
> ==================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>



 
Reply With Quote
 
Walter Wang [MSFT]
Guest
Posts: n/a
 
      05-08-2007
Hi Jason,

I'm aware of any settings are related to how Visual Studio publishs the web
site. You're using VS2005, right?

Since you mentioned that it works before, and I cannot reproduce it on my
side, I think this should be an environment specific issue.

Have you tried not using PASV mode?

We need to first determine if it's related to the ftp server or the VS2005
instance. To do that, we will need another VS2005 and ftp server. With the
correct combination, we should be able to narrow down the issue.

At last, please note for such non-reproducible issue, what I can help in
newsgroup is to see if there's any similar issue in our support database,
and give some suggestion to try. Therefore, the progress may not be very
satisfying. I hope you could understand that. Thanks.


Regards,
Walter Wang (, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      05-09-2007
Walter I appreciate your help.

Yes I am using VS 2005.

I created another WebSite project and was also unable to publish that as
well via ftp.

However I can ftp files to the folder just fine with CuteFTP using the same
username and password.

I tried to publish to in Visual Studio with "Connect using passive mode"
unchecked, and Visual Studio went into some kind of horrible loop. I had to
use Task Manager to bring it down - not very pretty.

I removed the 2002 Server Extensions from the folder in IIS, and Removed the
virtual application via the properties pages. I then republish the site and
Visual Studio tells me:

========== Publish: 1 succeeded, 0 failed, 0 skipped ==========

I check the folder on the server and nothing is there, so VS is incorrectly
reporting that the process succeeded.

So yes, it does seem to be specific to my Visual Studio Development
Environment.

Despite my frustration, I'm not ready to throw Visual Studio in the trash
yet. I will give MS a call and see if they can sort it out. I'll let you
know what the solution is.

Again, I appreciate your help,

/jason

"Walter Wang [MSFT]" <> wrote in message
news:...
> Hi Jason,
>
> I'm aware of any settings are related to how Visual Studio publishs the
> web
> site. You're using VS2005, right?
>
> Since you mentioned that it works before, and I cannot reproduce it on my
> side, I think this should be an environment specific issue.
>
> Have you tried not using PASV mode?
>
> We need to first determine if it's related to the ftp server or the VS2005
> instance. To do that, we will need another VS2005 and ftp server. With the
> correct combination, we should be able to narrow down the issue.
>
> At last, please note for such non-reproducible issue, what I can help in
> newsgroup is to see if there's any similar issue in our support database,
> and give some suggestion to try. Therefore, the progress may not be very
> satisfying. I hope you could understand that. Thanks.
>
>
> Regards,
> Walter Wang (, remove 'online.')
> Microsoft Online Community Support
>
> ==================================================
> When responding to posts, please "Reply to Group" via your newsreader so
> that others may learn and benefit from your issue.
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>



 
Reply With Quote
 
Jason
Guest
Posts: n/a
 
      05-09-2007
OK, I decided to try one more thing before getting in touch with MS:
converting the web site project to a web application project.

And that did the trick.

Here's the link I used:

http://webproject.scottgu.com/CSharp...igration2.aspx

Thanks again for the help!

jason

"Jason" <> wrote in message
news:%...
> Walter I appreciate your help.
>
> Yes I am using VS 2005.
>
> I created another WebSite project and was also unable to publish that as
> well via ftp.
>
> However I can ftp files to the folder just fine with CuteFTP using the
> same username and password.
>
> I tried to publish to in Visual Studio with "Connect using passive mode"
> unchecked, and Visual Studio went into some kind of horrible loop. I had
> to use Task Manager to bring it down - not very pretty.
>
> I removed the 2002 Server Extensions from the folder in IIS, and Removed
> the virtual application via the properties pages. I then republish the
> site and Visual Studio tells me:
>
> ========== Publish: 1 succeeded, 0 failed, 0 skipped ==========
>
> I check the folder on the server and nothing is there, so VS is
> incorrectly reporting that the process succeeded.
>
> So yes, it does seem to be specific to my Visual Studio Development
> Environment.
>
> Despite my frustration, I'm not ready to throw Visual Studio in the trash
> yet. I will give MS a call and see if they can sort it out. I'll let you
> know what the solution is.
>
> Again, I appreciate your help,
>
> /jason
>
> "Walter Wang [MSFT]" <> wrote in message
> news:...
>> Hi Jason,
>>
>> I'm aware of any settings are related to how Visual Studio publishs the
>> web
>> site. You're using VS2005, right?
>>
>> Since you mentioned that it works before, and I cannot reproduce it on my
>> side, I think this should be an environment specific issue.
>>
>> Have you tried not using PASV mode?
>>
>> We need to first determine if it's related to the ftp server or the
>> VS2005
>> instance. To do that, we will need another VS2005 and ftp server. With
>> the
>> correct combination, we should be able to narrow down the issue.
>>
>> At last, please note for such non-reproducible issue, what I can help in
>> newsgroup is to see if there's any similar issue in our support database,
>> and give some suggestion to try. Therefore, the progress may not be very
>> satisfying. I hope you could understand that. Thanks.
>>
>>
>> Regards,
>> Walter Wang (, remove 'online.')
>> Microsoft Online Community Support
>>
>> ==================================================
>> When responding to posts, please "Reply to Group" via your newsreader so
>> that others may learn and benefit from your issue.
>> ==================================================
>>
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>

>
>



 
Reply With Quote
 
Walter Wang [MSFT]
Guest
Posts: n/a
 
      05-10-2007
Hi Jason,

I'm glad to know that you've found a workaround, thank you for sharing this
experience here.

Regards,
Walter Wang (, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Publish Web Site won't publish my doc/docx files Tim Royal ASP .Net 0 08-28-2008 01:42 AM
Help: Copy Web site vs Publish Website vs Web Deployment Project Cirene ASP .Net 4 05-08-2008 05:58 PM
How can I prevent Publish Web Site from overwriting web.config? Stan B ASP .Net 3 04-06-2007 03:23 PM
I want to publish my web site on the web ShayHk ASP .Net 3 12-22-2006 09:47 AM
Publish Web site and the web.config Graham ASP .Net 8 11-10-2005 09:31 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57