Showing posts with label build. Show all posts
Showing posts with label build. Show all posts

Monday, March 26, 2012

Strange Debug Set-up error.

I am using Microsoft's Visual Web Developer 2005 to make ASP.NET programs.

I am now able to write and build code. And the code works. The webpages
are pretty much as they should appear.

The only problem I have now is during the debug process.

When I try to debug I get this error:

It says to go the the Control Panel and (I assume) go to "Programs".
But I do not see where this "Programs" Icon is.

You're almost there..

Go into "Add or Remove Programs". You should then see a window listing all of the installed programs on the machine.

Find the "Add/Remove windows components" button and click on it.

In the new window that pops up, find "Internet Information Services (IIS)" click on the check box (you want it checked).

Click the "Details" button if you need to configure further.

Patrick

Thursday, March 22, 2012

Strange parse error calling ASP.Net WebService

By making a call to a webservice I receive the following error page, we did a
complete new build but the error still exist:

The installation of the webservice is on an win 2003 standard service pack 1
server.

Server Error in '/BackupAgentServices' Application.

------------------------

Parser Error

Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: The check of the module's hash failed for file
'System.EnterpriseServices.Thunk.dll'.

Source Error:

Line 1: <%@dotnet.itags.org. Application Codebehind="Global.asax.cs"
Inherits="BAWebService2.Global" %>

Source File: C:\Program Files\BackupAgent Server
2006\BackupAgentServices\global.asax Line: 1

------------------------

Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300 --. For more information, see Help and Support Center
at http://go.microsoft.com/fwlink/events.asp.

--
rvangeldropHello Rvangeldrop,

From your description, you have an ASP.NET web service project which is
reporting the following exception at startup time on a windows 2003
server/sp1 box, correct?

====================
Parser Error Message: The check of the module's hash failed for file
'System.EnterpriseServices.Thunk.dll'.
====================

Based on my experience, since the project is built without problem and the
error occurs at very begining of the appilcation's startup time(intialize
global.asax), it is likely an environment specific issue. Before we perform
detailed troubleshooting, I'd like to confirm the following things:

** Is the webservice project developed upon .net framework 1.1/vs2003 or
..net framework 2.0/vs 2005

** Before deploying on the windows 2003 server/sp1, is it being developed
on another box and works without any problem on it?

** Though the problem is specific to the windows 2003 server machine, you
can still create a very simple webservcie project and test it on the
problem server to see whether the problems also ocurs.

I've also searched some former issues with similar symtom, however, seems
the cause are not quite matching your case. So we need to do some general
problem isolation tests first.

Please feel free to let me know if there is any new finding or any question
you wonder.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscript...ault.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscript...rt/default.aspx.

==================================================

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

How are you doing on this issue, have you got any progress or does the
suggestion in my last reply helps some?

If there is anything else we can help, please feel free to let me know.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead

This posting is provided "AS IS" with no warranties, and confers no rights.
the solution was to completely reinstall the server. Appearently some HP
server went bad and this was one of them.

So the problem was at HP for some reason... At least that was what the
customer told me.

--
rvangeldrop

"Steven Cheng[MSFT]" wrote:

Quote:

Originally Posted by

Hello Rvangeldrop,
>
How are you doing on this issue, have you got any progress or does the
suggestion in my last reply helps some?
>
If there is anything else we can help, please feel free to let me know.
>
Sincerely,
>
Steven Cheng
>
Microsoft MSDN Online Support Lead
>
>
This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
>
>

Tuesday, March 13, 2012

Strange problem

I Have a strange problem. I have build a form in wich are some controls. Two textbox and one dropdown control.
The user can perform a search selecting a value in dropdown or inserting in textbox and click on search button.
My sub verify if dropdown control or textbox changed and build sql string.
But the strange think is that all run only when I use dropdown. If I insert value in textbox and not dropdown search don't work.
The code don't run. Why?
I have inserted OnTextChanged event in textbox html code and OnSelectedIndexChanged in dropdown html code but nothing to do!
HELP ME, PLEASE!You need to post your code so we can help you.