1. request: processing instructions removed using http request.
hi, when sending out a xmldocument with a processing instruction to a client browser, in this case its an xslt instruction. the web service engine ignores the transmission of the processing instruction. how can i submit the xmldocument WITH the processing instruction still attached to the document being sent to the client browser? regards, michael
2. Listening to HTTP requests from a process - CSharp/C#
3. Listen to another console process's input request?
Hi all, I know how to start a process and use my own streamwriter to provide input. But now the question is, how do I know when a process/console program needs input? So for example, say there's a console program called "a.exe" that first outputs some messages and then prompts for a number for further calculation. I know how to use the proc.StandardOutput to get the message, but I have no idea when it prompts, and furthermore, control doesn't seem to flow back to my program when a.exe is prompting. Just a note that a.exe is only an example and I need to be able to handle any console programs. You can think of it more like my version of cmd.exe Any ideas are appreciated. Thanks.
4. HTTP In Process Request using com+
5. FEATURE REQUEST: C# shared .cs files in project
Hi, I have made an assembly file but i want to share some .cs files and not have to ship the dll assemblies. I want to be able to point to this .cs file in a project that is in a different directory, but it always copies the .cs file locally. Can i override this? I dont want to have to maintain 2 copies of one file. Thanks.
6. occasional "The requested name is valid, but no data of the requested type was found" - CSharp/C#
7. Accessing the HTTP Request sent to legacy ASP page in .Net C# COM
Hi, I have some legacy ASP web applications that use an unmanaged COM component to connect to a third party application. The third part application has moved to the managed code in the current release with backward compatibility with the unmanaged code. In the future releases, the vendor is going to drop backward compatibility and as a result of that all our legacy ASP applications will break. What I am trying to do is: - Create a managed COM component using the InteropServices that wraps the new managed components using C# that provides the same interfaces like the vendors old unmanaged one. - Use this component in the ASP application instead of the old one to retrieve the necessary information from the new system and pass it back to the ASP application. Unfortunately, this requires accessing the HTTP request sent to the ASP application from within the .Net component. When I tried to use the .Net System.Web.HttpContext.Current.Request it gave me an exception that "Object reference not set to an instance of an object". My questions are: - When using the managed COM in the legacy ASP, can I instantiate the .Net http request within the same context of the unmanaged client? - How can I construct a .Net http request from the ASP Request object? Thanks, Omar