Search Results

0
votes

ASP.net Web Services versus WCF

ASMX is like remoting, it's still around because it shipped with 1.0, but you shouldn't use it anymore if you are starting a new project. WCF will give you many more features and better tooling sup …
0
votes

What is the best way to create a Factory Method when using WCF?

You cannot really provide factories unless you provide libraries for each of your consumers in their native languages. Instead of a factory that returns a grouping object, consider filter adding s …
1
vote

How to sync access to file between ASP.NET web site and ASP.NET web service on one web server

Use the ReaderWriterLock or ReaderWriterLockSlim (.NET 2.0) class from the System.Threading namespace to handle single writer / multiple reader cases. …
0
votes

Windows Server 2003 Server to Server proxy avoidance configuration

With ASMX the proxy can be set on the Proxy property: http://johnwsaundersiii.spaces.liv …
0
votes

Testing custom SOAP Headers in ASMX.

Instead of directly accessing the headers, provide an abstraction that your code accesses instead. For example, if you have a header called "Customer", you might provide a context class you can acc …
1
vote

How to serialize nullable DateTime in a .net web service?

The way you handle optional properties is to include a boolean XXXSpecified member where XXX is the name of the property. Nullable types are not handled properly by the xml serializer used by ASMX. …
0
votes

Capturing data from a .Net web-service that fails with an HTTP 500 error code

If you want a use a tool, use WireShark. Otherwise, the easiest way is to capture "everything" (assuming you are using ASMX) is to enable trace on system.net …
0
votes

How to expose an EJB as a webservice that will later let me keep client compatibility when ejb changes ?

I'm not an EBJ guy, but I can tell you how this is generally handled in the web service world. If you have a non-breaking change to the contract (for instance, adding a property that is optional), …
3
votes

Want to host WCF Webservice as Windows Service as against to Hosting in IIS

If you are using IIS6, using a Windows Service is a must for many scenarios. Windows Services are 100% supported and a 100% safe way to host WCF. You can secure them with the same options as in IIS …
0
votes

.NET CF mobile device application - best methodology to handle potential offline-ness?

The best way to approach this is to always work offline, then use message queues to handle sending changes to and from the device. When the driver marks something as delivered, for example, update …
3
votes

What is a “web service” in plain english?

A web service, as used by software developers, generally refers to an operation that is performed on a remote server and invoked using the XML/SOAP specification. As with all definitions, there are …
1
vote

What would be the best approach to designing a highly available pool of web services?

If you don't need durability, you can load balance WCF service requests just like normal web requests without doing anything special. If you need durability and want requests to survive being cut o …
1
vote

Using strings with “general purpose” XML in WS - good or bad?

Strings containing XML is an extremely bad idea and asking for trouble. Use messages that have a defined schema.I had to rewrite significant portions of an app that used a lot of XML internally ins …
1
vote

Which web service specifications (WS-*) actually make sense to implement?

Only SOAP is widely adopted. If you care about reach, going beyond WS-Security and WS-Addressing is asking for trouble (even WS-Security can be hard for a lot of people). If you are creating servic …