all groups > dotnet web services > march 2007 > threads for march 1 - 7, 2007
Filter by week: 1 2 3 4 5
Select between raw socket programming vs. WCF
Posted by Hao at 3/7/2007 11:44:29 AM
We are doing very intensive network communication. We collect data from
thousands of electric devices every minutes. The devices understand both
socket and web service. They are either embeded linux based system or
Windows based servers. WCF, as I understand, has overhead vs. native socket
.... more >>
Client found response content type of 'text/html; charset=Windows-
Posted by Kestfield at 3/7/2007 4:47:05 AM
Hi
Our company has a .Net web service that, when called via asp.net web pages
across our network works 100%! The problem is that when we try and call the
web service from a remote machine, one outside of our domain, we get the
error.. ** Client found response content type of 'text/html;
ch... more >>
HttpWebRequest Changes from .NET 1.1 to 2.0: Proxy Authentication
Posted by SimonDev at 3/6/2007 2:54:13 PM
Hi
I have a utility class, called MailHandler, that I wrote to read and operate
on emails on an Exchange server using WebDAV. The WebDAV SQL statements are
sent using an HttpWebRequest object.
This worked fine in a .NET 1.1 project. I have copied the same Mailhandler
class into a .NET... more >>
Problem with complex types when consuming Axis 1.4 web service with C# client
Posted by Philip Reimer at 3/6/2007 2:39:45 PM
Hello.
We have here a Java web service that has been created using Apache Axis
1.4, using the document/literal wrapped style, and returns complex types
in its methods.
When consuming the web service with a C# client, all the fields in the
returned objects are null. The SOAP message, however... more >>
Updating web.config.ConnectionStrings at runtime
Posted by Bragadiru at 3/5/2007 4:17:26 PM
Hi all,
I want to add a new connection string to my webservice web.config file at
runtime :
ConnectionStringSettings connStringsSettings = new
ConnectionStringSettings("sys_connection_string", myConnString);
System.Configuration.Configuration cfgRootWebConfig =
WebConfigurationManager... more >>
Unable to instantiate COM Interop from .NET Web Service
Posted by RonS at 3/5/2007 2:04:45 PM
I am attempting to use a COM Interop inside my .NET Web Service. This
same COM Interop works just fine in a VB.NET application. I've
followed the guidance given in
http://msdn2.microsoft.com/en-us/library/ms996450.aspx but to no
avail. When I execute the web method that instantiates the COM
... more >>
The underlying connection was closed: Unable to connect to the remote server
Posted by nandan at 3/2/2007 12:36:32 PM
Yes.
My client has a proxy server. That much i know. In my application I
make two kinds of calls that are affected by the proxy server
I finally got the webservice call working.
But my httpwebrequest.GetReponse() function call throws the above
error.
So here's what i do in the case it works.... more >>
.net client problem invoking Java WS-Urgent! KINDLY REPLY ASAP...
Posted by Shakti at 3/2/2007 6:01:32 AM
1. Web Service is created in Axis 1.1 and the Client is created in .NET v1.1.
2. The .NET Client reads the WSDL File and is able to send the parameters to
the Webservice
3. The server is being notified when the web service is invoked
4. But the response from the WS invokation in .NET Client is ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Framework upgrade from 1.1 to 2.0 causes exception
Posted by SP at 3/1/2007 4:00:52 PM
I have a web service application which uses 3rd party assemblies. I recently
upgraded my solution to use .NET Framework 2.0 instead of .NET Framework
1.1. The 3rd party assemblies that I refer are built on .NET Framework 1.1
(but they are supposed to work under .NET Framework 2.0)
Since upgrad... more >>
Automated requests to web service
Posted by Samuel at 3/1/2007 2:44:15 PM
Hi
I would like to set up a web service that users can request automatically
information, it seems to me that web service requests are done using the
Post method
What is the way to sort it out?
Thank you,
Samuel
... more >>
HttpContext.Current.Request.ServerVariables["LOGON_USER"];
Posted by Brad King at 3/1/2007 12:22:10 PM
I recentlly converted some web services to 2.0. So far everything has worked
great with the exception of one of the functions in an AD service.
the following code:
string sUser = HttpContext.Current.Request.ServerVariables["LOGON_USER"];
Worksk fine if debugging in VS 2005 but when I publi... more >>
|