WCF and RESTful web service that outputs complex XML type (.NET 3.5)
Sat, 19 Apr 2008 18:17:49 -0700 (PDT)
Hi.
I'm trying to create a .NET 3.5 WCF web service .svc with a XML schema
that somewhat complex, which I'm new to.
The schema I want is, in a simplified form for example puposes,
similar to the following:
<root>
<productoffer>
<product>
<name>Name</name>
<desc>Description</desc>
...
|
Combiningg WCF, ASP.NET 3.5 and Silverlight
Fri, 18 Apr 2008 23:46:25 -0400
I have run into a frustrating problem. First I will need to cover some
background. I recently installed Windows Server 2008 Standard on a PC on the
network. I installed IIS, SQL Server 2005 and a few other packages. I also
have the ability to get to this server from outside the network via a
Dynamic DNS upda ...
|
how to implement WCF Security using custom token
Thu, 17 Apr 2008 17:20:00 -0700
i have a WCF service(hosted in IIS) with the following configuration:
basichttpbinding
MTOM
Streaming
now i want to implement a security system where i receive username/password
only once. after which i want to issue a custom generated token which should
be used for all subsequent calls to service. i also wa ...
|
DateTimes and MinOccurs
Thu, 17 Apr 2008 13:24:00 -0700 (PDT)
I'm writing a webservice where all of the data elements should have a
minOccurs = 0. I'm using VS2005.
This is fine for most of my elements, but all of my datetime elements
automatically receive a minOccurs = 1 in the auto generated WSDL
file.
For example , if these were some fields in my Web Service code: ...
|
opearation timed out error
Wed, 16 Apr 2008 07:51:04 -0700
Hi,
I'm working on a windows application. My app uses web service to connect
to the sql server db. The app and web service are running fine on my
development environment but
whe deployed on to production server, i'm receving the
'operation has timed error'.
I've tried all the possible solutions given on t ...
|
GC.Collect() not cleaning memory, how to find out what references to lots of memory still exist?
Tue, 15 Apr 2008 14:03:35 -0700
GC.Collect() not cleaning memory, how to find out what references to lots of
memory still exist?
When all my processign is done i set everything to null and then:
GC.Collect();
and then
GC.WaitForPendingFinalizers();
but it still shows that my process takes 400 MB of memory. Is there any easy
way to see w ...
|
Consuming Web Service with Nullable DateTime in .net 1.1
Tue, 15 Apr 2008 11:16:12 -0500
I am consuming a web service that was written in VS 2008 and some of the
classes have DateTime values that are declared nullable as follows
DateTime? objDateTime = null;
If there is not a value assigned to objDateTime, then it is null.
I am consuming the service from .net 1.1 and I am getting an error bef ...
|
|
|
ASP.net C# - UNC shares access ... i really need help...
Mon, 14 Apr 2008 02:07:25 -0700 (PDT)
Hi everybody.
i'm trying to access to remote shares with my webservice...;
i use IIS5, NTLM access (integrated windows authentification), "no
anonymous access", and the credentials are well transmitted to the
webservice (i checked the HttpContext.Current.User.Identity.Name );
Even if my webservice "Impers ...
|
Exporting web service request to text file
Fri, 11 Apr 2008 11:22:49 -0700 (PDT)
Hello,
I am connecting to a webservice and creating a web reference in my
vb.net 1.1 app. When I create the request object I would like to
create an XML document to log the request and, susequently, the
response object to my local machine. Below is my code (Dummified of
course):
Dim WS ...
|
Tracing a webservice source?
Fri, 11 Apr 2008 07:59:32 -0700 (PDT)
Hi, I hope I'm posting this in the right group. I have a shared .net
1.1 web service that is accessed by many applications across multiple
sites. I was wondering if there is an enterprise level tool that I
could use to identify the source application (virtual directory of the
originator, etc.). The IIS logs d ...
|