Web services and security
Thu, 5 Jun 2008 07:32:20 -0700 (PDT)
Hi all
I need to build a web service and ensure that it can only be used by
those who are authorised to use it
I believe I can go with WSE or WCF. What are the differences and which
one should I go with?
My application is developed using Visual Studio 2008, C# and .Net
framework 3.5
What other options ...
|
What is the best practise for passing objects from and to web
services?
Thu, 5 Jun 2008 05:31:48 -0700 (PDT)
Hi all
What are the best practises for passing custom objects to and from
from services? In particular:
1)Should datasets be passed, or custom objects be passed?
2)When it comes to passing collections of objects what options are
there? Should datasets be used here or should a generic list
collection be use ...
|
I have the same problem.
Wed, 04 Jun 2008 13:57:04 -0700
Anyone found a solution?. Thanks. ...
|
WCF Custom Serialization
Wed, 4 Jun 2008 05:21:15 -0700 (PDT)
Hi
I am using WCF RESTful services for my application.
However the services are required to return either JSON or XML
depending on a parameter that is passed to the service. So I cannot
use the ResponseFormat property of the WebInvoke attribute directly.
Can anyone tell me what is the best way to achieve ...
|
Architecture question
Wed, 4 Jun 2008 10:51:11 +0200
Hi
Assumption: I need to develop two applications - windows forms and ASP web
page.
Architecture: I developed web service which is being consumed by windows
forms application. The communication with database is between web service
and database.
Question: Is that possible to use the same web service wh ...
|
Example of Async Web Service with asmx?
Tue, 3 Jun 2008 16:54:01 -0700
Hi,
I've been looking around for a day for some good examples of using async web
services with asmx using the Async and Completed events. I need to understand
how to use these and how to get an object back from the service and make it
available for the main thread. Any pointers would be greatly appreciated. ...
|
WCF: WSHttpBinding Transport security with Windows Credentials
Mon, 2 Jun 2008 07:26:01 -0700
Good morning,
I am creating WCF services for an intranet environment that requires that
the services be hosted in IIS 6 in order to take advantage of an
enterprise-mandated ISAPI security filter (Oracle Access Manager or CoreID).
When calling .NET 2.0 web services wrapped by this filter, you had to force
...
|
|
|
WCF: Asynch operation not firering
Mon, 02 Jun 2008 12:26:58 +0200
Hello out there,
I have 2 services running. The first one runs in session mode and the
2nd not.
The first one should call an operation of the 2nd one asynchronously,
because this is doing some long running calculations.
If this call is synchronously, everything is running okay. If it's call
async the op ...
|
after serialization event
Sun, 1 Jun 2008 22:08:53 -0700 (PDT)
Hi!
I have a webservice class that returns an object.
This object loads dependent objects through parameters dynamically.
A simplified version would look like this:
private EntityAssociation<Page> _pages;
[XmlIgnore, SoapIgnore]
public EntityAssociation<Page> pages
{
get
{
if (_pages == n ...
|
WCF problem maintaining principal across service calls
Sun, 1 Jun 2008 09:53:14 -0700 (PDT)
Hi everyone,
I'm using WCF authentication services in my current project. I used
the following information as a starting point:
http://msdn.microsoft.com/en-us/library/bb398990.aspx
Unfortunately, I can't manage to get/set the generic principal when I
call other services. The authentication cookie is always ...
|