472,353 Members | 1,907 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

Webservice stub class not compiling

Hi,

I'm having problems using Flash Remoting with Web Services for ASP.NET
and I've narrowed the problem down to csc.exe when it tries to compile
the stub class.

Flash Remoting (flashgateway.dll) is calling the following command line
to compile the stub class:

"csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs

If I run that command manually, it correctly generates the DLL and the
application works, so why can't it generate the DLL file when it
compiles it automatically? What's the difference between me running it
from the command line and Flash running it as the ASPNET user?

We then did some more research and have found that csc.exe is producing
the following error while trying to compile the file:

fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
long or invalid

I've searched for this error everywhere and I can't see that anyone else
has ever encountered it. I've even tried reinstalling .NET in case my
installation was messed up. Where is csc.exe getting the above string
from? (ie where do I look to fix it, and what should it be?)

I can't work out what this error means. I expect it relates to the
extraneous characters on the front of the path but I don't know why
that's happening or why those characters are there.

Do you know how I can fix this problem?

Thanks,

Nick...
Nov 21 '05 #1
5 1928
who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?

-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Ox**************@TK2MSFTNGP12.phx.gbl...
Hi,

I'm having problems using Flash Remoting with Web Services for ASP.NET and
I've narrowed the problem down to csc.exe when it tries to compile the
stub class.

Flash Remoting (flashgateway.dll) is calling the following command line to
compile the stub class:

"csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs

If I run that command manually, it correctly generates the DLL and the
application works, so why can't it generate the DLL file when it compiles
it automatically? What's the difference between me running it from the
command line and Flash running it as the ASPNET user?

We then did some more research and have found that csc.exe is producing
the following error while trying to compile the file:

fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too long
or invalid

I've searched for this error everywhere and I can't see that anyone else
has ever encountered it. I've even tried reinstalling .NET in case my
installation was messed up. Where is csc.exe getting the above string
from? (ie where do I look to fix it, and what should it be?)

I can't work out what this error means. I expect it relates to the
extraneous characters on the front of the path but I don't know why that's
happening or why those characters are there.

Do you know how I can fix this problem?

Thanks,

Nick...

Nov 21 '05 #2
> who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?
It is a macromedia thing, but the problem is with the csc compiler as
you can see from the error message. We have reproduced the problem
completely independanty of any of the Macromedia products using the
following code:

private void Page_Load(object sender, System.EventArgs e)
{
string text2 = @"C:\Inetpub\wwwroot\flashremoting\bin";
string text4 = @"ExampleWebService";
Process process2 = new Process();
process2.StartInfo.WorkingDirectory = text2;
// process2.StartInfo.FileName =
@"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc .exe";
// With the line below in place, it executes correctly,
// but the line below causes it to fail!
process2.StartInfo.FileName = "csc.exe";
process2.StartInfo.CreateNoWindow = false;
process2.StartInfo.UseShellExecute = false;
process2.StartInfo.ErrorDialog = true;
process2.StartInfo.RedirectStandardOutput = true;
string[] textArray1 = new string[5] { "/out:", text4, ".dll /t:library
", text4, ".cs" } ;
process2.StartInfo.Arguments = string.Concat(textArray1);
process2.Start();
string stderr = process2.StandardOutput.ReadToEnd();
process2.WaitForExit(30000);
Trace.Write("exit code", process2.ExitCode.ToString());
Trace.Write("stdout",stderr);
}

You can try this yourself.. just provide it with a basic CS file for it
to compile in the BIN folder called "ExampleWebService.cs" which can
probably contain any code.

On my machine this will cause the following error to appear in the Trace
output:
fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
long or invalid

So this problem is not actually related to Macromedia products in any
way - I probably shouldn't have mentionned it - it's simply what I was
working with when I noticed this problem.

Any ideas why this is happening? I'm not sure what the .rsp file is for,
but it's obviously getting an invalid path from the environment or
configuration file somewhere. Note from the comment that if you provice
the full path to the csc.exe file in the code, then it works fine (I
can't actually use that as a solution as the code above is not my code
and was obtained using Reflector).

Thanks,

Nick...

Dino Chiesa [Microsoft] wrote: who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?

-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Ox**************@TK2MSFTNGP12.phx.gbl...
Hi,

I'm having problems using Flash Remoting with Web Services for ASP.NET and
I've narrowed the problem down to csc.exe when it tries to compile the
stub class.

Flash Remoting (flashgateway.dll) is calling the following command line to
compile the stub class:

"csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs

If I run that command manually, it correctly generates the DLL and the
application works, so why can't it generate the DLL file when it compiles
it automatically? What's the difference between me running it from the
command line and Flash running it as the ASPNET user?

We then did some more research and have found that csc.exe is producing
the following error while trying to compile the file:

fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too long
or invalid

I've searched for this error everywhere and I can't see that anyone else
has ever encountered it. I've even tried reinstalling .NET in case my
installation was messed up. Where is csc.exe getting the above string
from? (ie where do I look to fix it, and what should it be?)

I can't work out what this error means. I expect it relates to the
extraneous characters on the front of the path but I don't know why that's
happening or why those characters are there.

Do you know how I can fix this problem?

Thanks,

Nick...


Nov 21 '05 #3
if I understand you properly, then
- the problem is that csc.exe is returning something strange
- it happens only when CSC is run from an ASPX page
- if you specify the fully-qualified path for CSC then no problem

Seems like you have a good workaround?

Another workaround is to specify the /noconfig option to csc.exe.
http://msdn.microsoft.com/library/en...noreCscrsp.asp

The csc.rsp string you see is not a made-up name - it is the default
"response file" for the csc command. (what is a response file? If you run
csc.exe @foo.rsp , then CSC will process options from the given rsp file,
known as a response file. ) It is using a kind-of strange UNC path syntax,
but it works in the "dir" command.

The basic problem seems to be that csc does not tolerate this syntax. If
you specify a response file with a path like \\?\C:\directory\response.rsp
, then csc.exe will choke. I am guessing that the Process.Start() is
performing a search for the "csc.exe" command when it is not qualified. it
finds it and normalizes the path to
\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\c sc.exe . (note: exe).
The csc command then looks for the rsp file from the same dir, using the
same path. Boom.

So your workaround seems appropriate - just specify the path to csc.exe, it
suppresses the search, and you get the friendly filename for csc.rsp, which
csc.exe can tolerate. or tell csc to skip the default response file
(/noconfig) .
-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Oi**************@TK2MSFTNGP11.phx.gbl...
who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?


It is a macromedia thing, but the problem is with the csc compiler as you
can see from the error message. We have reproduced the problem completely
independanty of any of the Macromedia products using the following code:

private void Page_Load(object sender, System.EventArgs e)
{
string text2 = @"C:\Inetpub\wwwroot\flashremoting\bin";
string text4 = @"ExampleWebService";
Process process2 = new Process();
process2.StartInfo.WorkingDirectory = text2;
// process2.StartInfo.FileName =
@"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc .exe";
// With the line below in place, it executes correctly,
// but the line below causes it to fail!
process2.StartInfo.FileName = "csc.exe";
process2.StartInfo.CreateNoWindow = false;
process2.StartInfo.UseShellExecute = false;
process2.StartInfo.ErrorDialog = true;
process2.StartInfo.RedirectStandardOutput = true;
string[] textArray1 = new string[5] { "/out:", text4, ".dll /t:library ",
text4, ".cs" } ;
process2.StartInfo.Arguments = string.Concat(textArray1);
process2.Start();
string stderr = process2.StandardOutput.ReadToEnd();
process2.WaitForExit(30000);
Trace.Write("exit code", process2.ExitCode.ToString());
Trace.Write("stdout",stderr);
}

You can try this yourself.. just provide it with a basic CS file for it to
compile in the BIN folder called "ExampleWebService.cs" which can probably
contain any code.

On my machine this will cause the following error to appear in the Trace
output:
fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too long
or invalid

So this problem is not actually related to Macromedia products in any
way - I probably shouldn't have mentionned it - it's simply what I was
working with when I noticed this problem.

Any ideas why this is happening? I'm not sure what the .rsp file is for,
but it's obviously getting an invalid path from the environment or
configuration file somewhere. Note from the comment that if you provice
the full path to the csc.exe file in the code, then it works fine (I can't
actually use that as a solution as the code above is not my code and was
obtained using Reflector).

Thanks,

Nick...

Dino Chiesa [Microsoft] wrote:
who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?

-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Ox**************@TK2MSFTNGP12.phx.gbl...
Hi,

I'm having problems using Flash Remoting with Web Services for ASP.NET
and I've narrowed the problem down to csc.exe when it tries to compile
the stub class.

Flash Remoting (flashgateway.dll) is calling the following command line
to compile the stub class:

"csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs

If I run that command manually, it correctly generates the DLL and the
application works, so why can't it generate the DLL file when it
compiles it automatically? What's the difference between me running it
from the command line and Flash running it as the ASPNET user?

We then did some more research and have found that csc.exe is producing
the following error while trying to compile the file:

fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
long or invalid

I've searched for this error everywhere and I can't see that anyone else
has ever encountered it. I've even tried reinstalling .NET in case my
installation was messed up. Where is csc.exe getting the above string
from? (ie where do I look to fix it, and what should it be?)

I can't work out what this error means. I expect it relates to the
extraneous characters on the front of the path but I don't know why
that's happening or why those characters are there.

Do you know how I can fix this problem?

Thanks,

Nick...


Nov 21 '05 #4
Thanks for your detailed analysis. The problem is, the code snippet that
I put in the ASPX page is actually code taken from a 3rd party DLL that
I do not have control over... I cannot edit that DLL and the code you
are seeing was not the real source code but was generated by decompiling
the DLL using Reflector. The code works fine on other people's machines
so I'm not sure why it's broken on mine. Perhaps I have different
environment variables set up, but I've tried changing the path but it
didn't make any difference.

I still don't quite understand the problem. I do not think that hard
coding the path to the csc.exe file is a good solution - because the
code will then break if it's installed on any machine which does not
have csc.exe on that exact drive/path. Currently it looks for it in the
path which is sensible behavior and seems to work OK on other people's
machines.

Nick...

Dino Chiesa [Microsoft] wrote:
if I understand you properly, then
- the problem is that csc.exe is returning something strange
- it happens only when CSC is run from an ASPX page
- if you specify the fully-qualified path for CSC then no problem

Seems like you have a good workaround?

Another workaround is to specify the /noconfig option to csc.exe.
http://msdn.microsoft.com/library/en...noreCscrsp.asp

The csc.rsp string you see is not a made-up name - it is the default
"response file" for the csc command. (what is a response file? If you run
csc.exe @foo.rsp , then CSC will process options from the given rsp file,
known as a response file. ) It is using a kind-of strange UNC path syntax,
but it works in the "dir" command.

The basic problem seems to be that csc does not tolerate this syntax. If
you specify a response file with a path like \\?\C:\directory\response.rsp
, then csc.exe will choke. I am guessing that the Process.Start() is
performing a search for the "csc.exe" command when it is not qualified. it
finds it and normalizes the path to
\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\c sc.exe . (note: exe).
The csc command then looks for the rsp file from the same dir, using the
same path. Boom.

So your workaround seems appropriate - just specify the path to csc.exe, it
suppresses the search, and you get the friendly filename for csc.rsp, which
csc.exe can tolerate. or tell csc to skip the default response file
(/noconfig) .
-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Oi**************@TK2MSFTNGP11.phx.gbl...
> who is flash remoting?
> is this a macromedia thing?
> maybe you should be checking with them?


It is a macromedia thing, but the problem is with the csc compiler as you
can see from the error message. We have reproduced the problem completely
independanty of any of the Macromedia products using the following code:

private void Page_Load(object sender, System.EventArgs e)
{
string text2 = @"C:\Inetpub\wwwroot\flashremoting\bin";
string text4 = @"ExampleWebService";
Process process2 = new Process();
process2.StartInfo.WorkingDirectory = text2;
// process2.StartInfo.FileName =
@"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc .exe";
// With the line below in place, it executes correctly,
// but the line below causes it to fail!
process2.StartInfo.FileName = "csc.exe";
process2.StartInfo.CreateNoWindow = false;
process2.StartInfo.UseShellExecute = false;
process2.StartInfo.ErrorDialog = true;
process2.StartInfo.RedirectStandardOutput = true;
string[] textArray1 = new string[5] { "/out:", text4, ".dll /t:library ",
text4, ".cs" } ;
process2.StartInfo.Arguments = string.Concat(textArray1);
process2.Start();
string stderr = process2.StandardOutput.ReadToEnd();
process2.WaitForExit(30000);
Trace.Write("exit code", process2.ExitCode.ToString());
Trace.Write("stdout",stderr);
}

You can try this yourself.. just provide it with a basic CS file for it to
compile in the BIN folder called "ExampleWebService.cs" which can probably
contain any code.

On my machine this will cause the following error to appear in the Trace
output:
fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too long
or invalid

So this problem is not actually related to Macromedia products in any
way - I probably shouldn't have mentionned it - it's simply what I was
working with when I noticed this problem.

Any ideas why this is happening? I'm not sure what the .rsp file is for,
but it's obviously getting an invalid path from the environment or
configuration file somewhere. Note from the comment that if you provice
the full path to the csc.exe file in the code, then it works fine (I can't
actually use that as a solution as the code above is not my code and was
obtained using Reflector).

Thanks,

Nick...

Dino Chiesa [Microsoft] wrote:
who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?

-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Ox**************@TK2MSFTNGP12.phx.gbl...
Hi,

I'm having problems using Flash Remoting with Web Services for ASP.NET
and I've narrowed the problem down to csc.exe when it tries to compile
the stub class.

Flash Remoting (flashgateway.dll) is calling the following command line
to compile the stub class:

"csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs

If I run that command manually, it correctly generates the DLL and the
application works, so why can't it generate the DLL file when it
compiles it automatically? What's the difference between me running it
from the command line and Flash running it as the ASPNET user?

We then did some more research and have found that csc.exe is producing
the following error while trying to compile the file:

fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
long or invalid

I've searched for this error everywhere and I can't see that anyone else
has ever encountered it. I've even tried reinstalling .NET in case my
installation was messed up. Where is csc.exe getting the above string
from? (ie where do I look to fix it, and what should it be?)

I can't work out what this error means. I expect it relates to the
extraneous characters on the front of the path but I don't know why
that's happening or why those characters are there.

Do you know how I can fix this problem?

Thanks,

Nick...

Nov 21 '05 #5
> Thanks for your detailed analysis. The problem is, the code snippet that I
put in the ASPX page is actually code taken from a 3rd party DLL that I do
not have control over...
if it's a third-party DLL, then you have something to tell that third party.
their stuff breaks under certain conditions.

I'm not saying that csc.exe is not also at fault here - it may be. you may
wish to contact MS support to file a bug. Do you have a support contract?
(sorry, I know this is frustrating - but I am not support staff and cannot
do this on your behalf).
I still don't quite understand the problem. I do not think that hard
coding the path to the csc.exe file is a good solution - because the code
will then break if it's installed on any machine which does not have
csc.exe on that exact drive/path.
I wouldn't suggest hard coding, but if you allow the code to find csc.exe by
examining the registry, that may work.

Something else to try may be: adding
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322

the the PATH for ASPNET, or whatever user the ASP.NET code is running under.
You said you mucked with the path without success.
-D
"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Of**************@TK2MSFTNGP15.phx.gbl...
I cannot edit that DLL and the code you are seeing was not the real source code but was generated by decompiling
the DLL using Reflector. The code works fine on other people's machines so
I'm not sure why it's broken on mine. Perhaps I have different environment
variables set up, but I've tried changing the path but it didn't make any
difference.

I still don't quite understand the problem. I do not think that hard
coding the path to the csc.exe file is a good solution - because the code
will then break if it's installed on any machine which does not have
csc.exe on that exact drive/path. Currently it looks for it in the path
which is sensible behavior and seems to work OK on other people's
machines.

Nick...

Dino Chiesa [Microsoft] wrote:
if I understand you properly, then
- the problem is that csc.exe is returning something strange
- it happens only when CSC is run from an ASPX page
- if you specify the fully-qualified path for CSC then no problem

Seems like you have a good workaround?

Another workaround is to specify the /noconfig option to csc.exe.
http://msdn.microsoft.com/library/en...noreCscrsp.asp

The csc.rsp string you see is not a made-up name - it is the default
"response file" for the csc command. (what is a response file? If you
run csc.exe @foo.rsp , then CSC will process options from the given rsp
file, known as a response file. ) It is using a kind-of strange UNC path
syntax, but it works in the "dir" command.

The basic problem seems to be that csc does not tolerate this syntax.
If you specify a response file with a path like
\\?\C:\directory\response.rsp , then csc.exe will choke. I am guessing
that the Process.Start() is performing a search for the "csc.exe" command
when it is not qualified. it finds it and normalizes the path to
\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\c sc.exe . (note: exe).
The csc command then looks for the rsp file from the same dir, using the
same path. Boom.

So your workaround seems appropriate - just specify the path to csc.exe,
it suppresses the search, and you get the friendly filename for csc.rsp,
which csc.exe can tolerate. or tell csc to skip the default response
file (/noconfig) .
-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Oi**************@TK2MSFTNGP11.phx.gbl...
> who is flash remoting?
> is this a macromedia thing?
> maybe you should be checking with them?

It is a macromedia thing, but the problem is with the csc compiler as
you can see from the error message. We have reproduced the problem
completely independanty of any of the Macromedia products using the
following code:

private void Page_Load(object sender, System.EventArgs e)
{
string text2 = @"C:\Inetpub\wwwroot\flashremoting\bin";
string text4 = @"ExampleWebService";
Process process2 = new Process();
process2.StartInfo.WorkingDirectory = text2;
// process2.StartInfo.FileName =
@"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\csc .exe";
// With the line below in place, it executes correctly,
// but the line below causes it to fail!
process2.StartInfo.FileName = "csc.exe";
process2.StartInfo.CreateNoWindow = false;
process2.StartInfo.UseShellExecute = false;
process2.StartInfo.ErrorDialog = true;
process2.StartInfo.RedirectStandardOutput = true;
string[] textArray1 = new string[5] { "/out:", text4, ".dll /t:library
", text4, ".cs" } ;
process2.StartInfo.Arguments = string.Concat(textArray1);
process2.Start();
string stderr = process2.StandardOutput.ReadToEnd();
process2.WaitForExit(30000);
Trace.Write("exit code", process2.ExitCode.ToString());
Trace.Write("stdout",stderr);
}

You can try this yourself.. just provide it with a basic CS file for it
to compile in the BIN folder called "ExampleWebService.cs" which can
probably contain any code.

On my machine this will cause the following error to appear in the Trace
output:
fatal error CS2021: File name
'\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
long or invalid

So this problem is not actually related to Macromedia products in any
way - I probably shouldn't have mentionned it - it's simply what I was
working with when I noticed this problem.

Any ideas why this is happening? I'm not sure what the .rsp file is for,
but it's obviously getting an invalid path from the environment or
configuration file somewhere. Note from the comment that if you provice
the full path to the csc.exe file in the code, then it works fine (I
can't actually use that as a solution as the code above is not my code
and was obtained using Reflector).

Thanks,

Nick...

Dino Chiesa [Microsoft] wrote:
who is flash remoting?
is this a macromedia thing?
maybe you should be checking with them?

-D

"Nick Gilbert" <ne**@nickgilbert.com> wrote in message
news:Ox**************@TK2MSFTNGP12.phx.gbl...
> Hi,
>
> I'm having problems using Flash Remoting with Web Services for ASP.NET
> and I've narrowed the problem down to csc.exe when it tries to compile
> the stub class.
>
> Flash Remoting (flashgateway.dll) is calling the following command
> line to compile the stub class:
>
> "csc.exe" /out:ExampleWebService.dll /t:library ExampleWebService.cs
>
> If I run that command manually, it correctly generates the DLL and the
> application works, so why can't it generate the DLL file when it
> compiles it automatically? What's the difference between me running it
> from the command line and Flash running it as the ASPNET user?
>
> We then did some more research and have found that csc.exe is
> producing the following error while trying to compile the file:
>
> fatal error CS2021: File name
> '\\?\C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\ csc.rsp...' is too
> long or invalid
>
> I've searched for this error everywhere and I can't see that anyone
> else has ever encountered it. I've even tried reinstalling .NET in
> case my installation was messed up. Where is csc.exe getting the above
> string from? (ie where do I look to fix it, and what should it be?)
>
> I can't work out what this error means. I expect it relates to the
> extraneous characters on the front of the path but I don't know why
> that's happening or why those characters are there.
>
> Do you know how I can fix this problem?
>
> Thanks,
>
> Nick...

Nov 21 '05 #6

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

Similar topics

0
by: cb4 | last post by:
I've implemented a webservice and client (static stub) that inovke methods onto my webservice..... In the webservice how can i get a client ip? ...
1
by: Bhavesh Padmani | last post by:
Hello, Currenlty we use ISAPI DLLS on our site. These dlls are making rpc calls to another NT services on that same machine. I am planning to use...
5
by: Mantorok | last post by:
Hi all I have a web service and it is going fine until I call a method that returns an object that is based on a class from a referenced .net...
9
by: Ed Gonen | last post by:
Hi, I have the following problem. I've created 2 WebServices (A and B) that reference to the same assembly - Credentials. Each WebService (A and B)...
0
by: John | last post by:
We are doing integration with an AS400 running websphere - webservices. When the customer (AS400) calls the .Net webservice the customers java code...
0
by: perschrotti | last post by:
I have simple .NET webservice coded in C# running on IIS 5 windows 2000 sp4 with .NET framework 1.1. I have a client coded in java with a...
1
by: Rodrigo C. Souza | last post by:
Hello all, I´m trying to create a simple web service to be called by a J2ME application, but when I call the tool to create the stub classes it...
1
by: UT-BadBoy | last post by:
Hi, I've been receving this error "System.InvalidOperationException: The namespace, , is a duplicate." and have been unable to locate the exact...
10
by: Phillip Taylor | last post by:
Hi guys, I'm looking to develop a simple web service in VB.NET but I'm having some trivial issues. In Visual Studio I create a web services project...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

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.