services

Uninstall Command Fails Only in Release Mode

I am able to successfully uninstall a third-party application via the command line and via a custom Inno Setup installer. Command line Execution: MSIEXEC.exe /x {14D74337-01C2-4F8F-B44B-67FC613E5B1F} /qn Inno Setup Command: [Run] Filename: msiexec.exe; Flags: runhidden waituntilterminated; Parameters: "/x {{14D74337-01C2-4F8F-B44B...

Astoria vs. SQL Server Data Services

What are in your opinion big differences between areas of usage for "Astoria" (ADO.NET data services) and SQL Server Data Services? ...

SharePoint - How do insert new items using the list web service?

I have a list with 2 text fields, and a choice field. How do I use the Lists.asmx web service to insert a new item? I can make a web reference to the lists.asmx service, so you can assume that this is known. I would like a complete example including code and the XML for the CAML query. Ideally the sample would use C#. ...

SQL Server Reporting Services shows DTD prohibited in XML document error

I am getting the following error when running a reporting services report. Process name: w3wp.exe Account name: NT AUTHORITY\NETWORK SERVICE Exception information: Exception type: XmlException Exception message: For security reasons DTD is prohibited in this XML document. To enable DTD processing set the ProhibitDtd property on Xm...

looking for best practice guidlines (or any guidelines) on using the jax-ws maven plugin

My particular use case is using the wsimport goal (which basically maps to the jaxws wsimport.sh tool) to generate java code from wsdl. Looking for ideas on how others have integrated this goal into their development cycle. ie. do you generate all the interfaces only once and check it in. Where do you store the actual wsdl and any xsd...

propertyNameFieldSpecified when generating a 2.0 web service proxy from a WCF Service

I have created a web reference (Add Web Reference) from Visual Studio 2008 and strangely, I need to set the propertyNameFieldSpecified to true for all the fields I want to submit. Failure to do that and values are not passed back to the WCF Service. I have read at several places that this was fixed in the RTM version of Visual Studio. ...

How can I update an application over the network in .NET?

I need to install some .NET software on several PC's. This software needs to check each time it is restarted to see if a newer version exists on the server. The end users will have basic user rights and therefore cannot copy files to the 'Program Files' directory. If a newer version exists, the application closes, an updater program c...

Factoring web services?

What are some guidelines for factoring of web services? On one extreme you have different procedures for every operation, and expose all types through WSDL. This seems to result in the WS interface changing as often as the business logic. On the other, a generic interface where the types and validation are performed a layer down from ...

Cheap places for MSDN Licenses

A similar question has been asked: http://stackoverflow.com/questions/42466/msdn-subscriptions-on-the-cheap, but I am not interested in the solutions provided: I am not developing a product for sale, I am starting up a consulting company, so Empower is not an option. I have visited the links to MS regarding MSDN subscriptions and the...

Software translation services

I am in the process of translating an application into various languages, and I'm wondering if anyone has had experience with any translation services, and I'm not talking about Google Translate. :) Are there any that specialize more in the tech area, as opposed to just general translation? ...

ASP.Net AJAX WCF Authentication Services and Session Timeout

Our Web application uses the ASP.Net AJAX Authentication Services to perform login/logout. Everything works great if the login/logout actions are initiated from client side via JavaScript. Question: When the session times out how do I call the AuthenticationService.Logout function from the SessionEnd event? Looking for a simple clean...

Directory of APIs/WebServices - where do I find one?

Where do I find a directory where a lot of APIs or Webservices are collected? I'd like to generate a Web Site getting its content from different services, but I assume that spidering together the content is not legal (e.g. getting the latest financial data from finance.yahoo.com). So I would like to have a list of APIs and WebServices (...

GUI For Service Methods

We have a service that runs methods used for data import/export at specified intervals. To test these methods we have a little application with a single button that, when clicked, instantiates the import/export class and invokes the desired method. Nothing fancy. I would like create a more robust test application that can receive debu...

OpenSource tools/services for server monitoring

I'm looking for an OpenSource server monitoring tool that allows the following: Monitor a variety of services on TCP, UDP. Supports custom port numbers. Supports some basic response checking (beyond initial connection checking). Basic dashboard overview of health status. Alert notifications via e-mail. I could roll my own, but want t...

ADO.NET Data Services Entity Framework request error when property setter is internal

I receive an error message when exposing an ADO.NET Data Service using an Entity Framework data model that contains an entity (called "Case") with an internal setter on a property. If I modify the setter to be public (using the entity designer), the data services works fine. I don’t need the entity "Case" exposed in the data service, so...

Strange behavior in .NET web service client when NOT running as Local Administrator

We have encountered a very strange situation when we deployed an application at a customer site. This application is implemented as a service using C# on .NET 3. The application communicates with a web service that is written using gSOAP. In our .NET application, the classes that wrap the web service were created by performing "Add Servi...

LiveCycle Data Services acceptClient conflict handler Error

When calling the acceptClient method on a conflict I get the error below. The acceptServer method works just fine - and I am lost... TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.data::ConflictResolver/updateMessageForAcceptClient()[C:\depot\flex\branches\enterprise_corfu_rc\frameworks\pro...

Help! Evil services are killing my objects...

When I believed in American dream about encapsulation and polymorphism, intrusion of Web Services washed my objects off with RPC calls... When I cherished my resurrected PONOs, ugly army of barbarians called proxy objects conquered my lands... Later, peace seemed to come back with DDD and NHibernate on the server side, but the SilverLi...

Best Practice for WCF Service Proxy lifetime?

When working with WCF services, is it better to create a new instance of the service every time you use it? Or is it better to create one and re-use it? Why is either approach better? Is it the same for asynchronous proxies? ...

Why are my custom performance counters not appearing for my service?

I've got a windows service that has a part I'm very paranoid about, so I've instrumented it with custom performance counters (I'm moving calls from mta threads to sta threads--don't ask). The counters and the configuration section have been tested and are known to work... on my machine, but they aren't appearing on the server I instal...