WCF Client Credentials
Mon, 12 May 2008 13:05:00 -0700
Hi!
The application I am using has to add some custom client credentials on the
web layer(proxy) and has to verify them on the app layer(wcf).
I tried to create a custom header as follows
--------------
Public Class CustomSoapHeader
Inherits System.ServiceModel.WSHttpBinding
-- added some public pro ...
|
WCF Client Generation Issue
Fri, 9 May 2008 10:00:01 -0700
I apologize for the length of this message. I have tried to provide all of
the potentially relavant code up front to help identify the problem. I am
relatively new to WCF and hope that I have overlooked something relatively
simple.
I am currently developing a set of WCF (.NET 3.0) services to use as the
...
|
Can't serialise a SqlCommand over WCF
Fri, 09 May 2008 10:15:54 +0200
Hello,
I'm trying to send an SqlCommand to a WCF-Service. For this I'm using
the following DataContract:
[DataContract]
[KnownType(typeof(string))]
public class SqlCommandComposite
{
SqlCommand cmd = new SqlCommand();
[DataMember(IsRequired=true)]
public SqlComman ...
|
WCF - how to provide wsdl from a file for self hosted server
Thu, 8 May 2008 07:04:01 -0700
I have created a self hosted service using WCFa and I want to provide my own
wsdl from a local file rather than the generated wsdl - how can I do this?
I actually need to produce a web service which is compatible with existing
clients build for a asmx service as explained here:
http://msdn.microsoft.com/en-u ...
|
How to get SoapException details / soap fault details
Thu, 8 May 2008 00:11:01 -0700 (PDT)
Calling a webservice using HttpWebRequest below. Only WebException
can be caught per documentation. How about SoapException - how do I
get those details. Most web services will throw soapexceptions. Any
way to accomplish this.
public HttpWebResponse SendSoapRequest(string soapEnvelope, string
url)
...
|
dll not loading in Web Service
Wed, 07 May 2008 10:11:40 -0700
We have developed a Web service and we need to add a reference to a .net
dll MyDll.dll which uses Win32 dlls. If we write a window forms
application and reference MyDll.dll and copy the Win32 dlls to the
bin/debug folder, the form works fine. However, when we add the reference
to MyDll.dll to the Web Ser ...
|
Accessing a web service - proxy problem
Wed, 7 May 2008 17:11:35 +0100
I wrote a VS 2005 C# express programme that accesses a web service. It works fine when there's a
direct connection to the internet, but on two different PCs with internet access via a proxy, I get
this exception:
System.Net.WebException: The request failed with HTTP status 407: Proxy Authentication Required.
...
|
|
|
Round-tripping a DataTable through a web service?
Wed, 7 May 2008 08:42:02 -0700
Folks,
I need to send a non-strongly typed DataTable as a parameter through my web
service to update the database with the user's changes, and need to return it
to the user's client app with any changes the database/MT made. Most
important: for new records, the client-side ID of "-1" should be replaced
w ...
|
wcf only serializing strings
Wed, 7 May 2008 08:10:01 -0700 (PDT)
I am currently using WCF, I am passing an object in to a method. When
I look in the debugger only the strings are being passed over the
wire. I am using the datacontract and datamember attributes.
Ricky ...
|
WebService App q.2
Mon, 5 May 2008 15:12:48 -0700 (PDT)
this is the error I get on the server:
System.Web.Services.Protocols.SoapException: Server was unable to
process request. ---> System.InvalidOperationException: Unable to
generate a temporary class (result=1).
error CS2001: Source file 'C:\WINDOWS\TEMP\ikpsuvjr.0.cs' could not be
found
error CS2008: No input ...
|