473,406 Members | 2,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

COM+,WebSvc on Win2k3

Hi All, I have a COM+ Component that calls a webservice internally. It works
super on Windows 2000, unfortunately when I deployed this application to
Windows 2003 Standard Server, I am getting the error below: I am totally
rattled by it, I have given c:\windows\temp Full permission to just about
every a/c on the m/c.
Message-Server was unable to process request. ---Unable to generate a
temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be found
error CS2008: No inputs specified

Inner Exception-System.Web.Services.Protocols.SoapException: Server was
unable to process request. ---Unable to generate a temporary class
(result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be found
error CS2008: No inputs specified

at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)

Base Exception Message-Server was unable to process request. ---Unable to
generate a temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be found
error CS2008: No inputs specified

Base Stack Trace- at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)


Mar 7 '07 #1
2 2043
Dumb one: Did you restart the machine after changing the permissions (or at
least IIS Admin)?

Did you try to give Everyone full control of the temp dir? Just to test. It
seems a permission problem.

I've got those errors until I gave full control to Network Service.

"Vai2000" <no****@microsoft.comha scritto nel messaggio
news:%2****************@TK2MSFTNGP04.phx.gbl...
Hi All, I have a COM+ Component that calls a webservice internally. It
works
super on Windows 2000, unfortunately when I deployed this application to
Windows 2003 Standard Server, I am getting the error below: I am totally
rattled by it, I have given c:\windows\temp Full permission to just about
every a/c on the m/c.
Message-Server was unable to process request. ---Unable to generate a
temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

Inner Exception-System.Web.Services.Protocols.SoapException: Server was
unable to process request. ---Unable to generate a temporary class
(result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)

Base Exception Message-Server was unable to process request. ---Unable
to
generate a temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

Base Stack Trace- at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)


Mar 7 '07 #2
Gave full permission to just about every a/c on the machine, users, IIS
etc...btw there is no IIS on the server coz the webservice is hosted on a
remote box...Seems like its not able to make the call...failing before
making the call...

Will reboot again...had done that earlier
"Laura T." <LT@NOWHERE.COMwrote in message
news:uz**************@TK2MSFTNGP04.phx.gbl...
Dumb one: Did you restart the machine after changing the permissions (or
at
least IIS Admin)?

Did you try to give Everyone full control of the temp dir? Just to test.
It
seems a permission problem.

I've got those errors until I gave full control to Network Service.

"Vai2000" <no****@microsoft.comha scritto nel messaggio
news:%2****************@TK2MSFTNGP04.phx.gbl...
Hi All, I have a COM+ Component that calls a webservice internally. It
works
super on Windows 2000, unfortunately when I deployed this application to
Windows 2003 Standard Server, I am getting the error below: I am totally
rattled by it, I have given c:\windows\temp Full permission to just
about
every a/c on the m/c.
Message-Server was unable to process request. ---Unable to generate a
temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

Inner Exception-System.Web.Services.Protocols.SoapException: Server was
unable to process request. ---Unable to generate a temporary class
(result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)

Base Exception Message-Server was unable to process request. ---Unable
to
generate a temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\byg_7w25.0.cs' could not be
found
error CS2008: No inputs specified

Base Stack Trace- at
System.Web.Services.Protocols.SoapHttpClientProtoc ol.ReadResponse(SoapClient
Message message, WebResponse response, Stream responseStream, Boolean
asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters)




Mar 7 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: ptass | last post by:
Hi I've installed win2k3 sp1 on a machine where an openRead on any given file was previously working. After installation, I get a webException as follows... ..message "An exception occurred...
2
by: Vai2000 | last post by:
Hi All, I am trying 2 invoke a websvc dynamically. All I will have is the WSDL. I want to avoid the design time programming (i.e adding web reference etc). How will I achieve this goal? TIA ...
3
by: Vai2000 | last post by:
Hi All, I have a box outside the DMZ that calls my WebSvc 's. I have 2 boxes running the WebSvc's though one is like backup (so both don't run concurrent). Incase of outage when the first box is...
6
by: Vai2000 | last post by:
Hi All, I have created a COM+ Component Foo.dll, I was wondering where I can store its Config File and what should I name it? this COM+ Component calls a WebSvc too! the IDE Created an app.config...
2
by: SpockMonster | last post by:
I have a DLL called "GacMe.dll", and would like to read Configuration settings from it. For instance: strRole = System.Configuration.ConfigurationSettings.AppSettings("Role") Question: In...
1
by: | last post by:
I have an application that runs on mod_python/apache using the publisher handler. It uses an access db as the backend and connects via ADO. In a test environment on XP it runs fine, but when on a...
1
by: itskaps | last post by:
Hi all, My following program code works fine on win 2K server but the same is not working on win2K3 server. It's showing error as page cannot be displayed. After debugging, I found that...
1
by: mmark751969 | last post by:
I have a win2k3 server that i am going to need to upgrade to service pack 2. It is running sql server 2000(sem reports version 8.0 - i think that is sql server 2000). It has profiler and query...
2
by: mcfly1204 | last post by:
Our network consists of two Win2k Server DC's, with several other Win2k3 servers. I cannot find where I can configure terminal services access within the GPO for the user in question. In Win2k3...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.