Hello,
We are having some problems deploying our WCF services into IIS7.
We have two services: DataAccess and BusinessLogic (example names).
Clients connect to the BusinessLogic which then connects to the DataAccess.
The WCF test client allows us to consume the DataAccess service without errors.
However, when we try to call the same fun...
Hello again.
We are currently replacing a 20 year old C based system with a modern SOA WCF system built in .NET3.5. Our industry requires rigorous testing including good automated unit test converage. We are having issues, however unit testing our SOA system to anywhere near the extent that the C based system was unit tested.
The singl...
I'm trying to implement an endpoint behavior which injects a custom SOAP header into all messages to and from a service. I've gotten pretty close by implementing the approach from the accepted answer of this question:
http://stackoverflow.com/questions/986455/wcf-wsdl-soap-header-on-all-operations/995951#995951
After implementing that...
I have a WCF service that has REST and SOAP endpoints for every service. This was implemented similarly to this post: http://stackoverflow.com/questions/186631/rest-soap-endpoints-for-a-wcf-service with a configuration similar to the following:
<services>
<service name="TestService">
<endpoint address="mex" binding="mexHttpBindin...
Similar to the Visual Studio development web server (Cassini) limitation that it only servers on localhost, I have a WCF Service implementation that is only needed on localhost.
I wouldn't mind other machines having access, except that the Windows Firewall prompts to allow the program to listen on the externally-facing NIC. Since thi...
Hi We developed web service using WCF service and hosted on Windows 2003 server machine with IIS 5.1. WCF hosted on basicHttpBinding. when try to access wsdl of service "*.svc?wsdl" it generating wrong wsdl, that wsdl cannot be used java and php clients.
when I check the wsdl in
<wsdl:import namespace="xxxxx" location="http://machine ...
We are in a position to consume the Web Service hosted in JBOSS as explained above.
We tried to generate proxy classes using VS 2008, but we are not successful in calling the Web Services using WCF.
Please share your views?
...
I have to define a web service contract that afterwards will be used by different software suppliers to implement their servers and clients.
I tried to do it defining classes, making a WCF service and using it to autogenerate WSDL document. The problem with this approach is that inside WSDL there are some specifics concerning binding an...
Hi,
As the error shows I dnt have setter for my property, but I dnt want setter its just a readonly..any Ideas??
Will really appreciate it
Thanks
...
Hi,
I have a WCF Service with the following requirements:
a) The client requests a file from the server which is transferred as a Stream. Files may be 100MB or larger. I need streaming or chucking or whatever to make sure that IIS is not loading the whole package into memory before starting to send it.
b) The client will transfer an I...
I have a requirement to take client side XAML (from Silverlight) and create a bitmap merged with a server side resource (high res image) and can do this quite easily using WPF (DrawingContext etc). It has been mentioned that server side (hosted in IIS WCF) use of WPF is akin to running Office on the server and a really bad idea.
Is WPF...
Hello Everybody,
I want get all contry and cities from database to SilverLight Application, SO I Create Cutom Generic Lists. This is My Country Class .
[DataContract]
public class Country<T>:List<T> where T:City
{
[DataMember]
public int Country_Id { get; set; }
[DataMember]
public string Country_Name { get; set; }
}
...
Hello all again.
We have a Data Access service in our SOA WCF system. This service is responsible for doing CRUD (create, update, delete) operations on "system wide" database tables, and is also the source of this data for queries. Any other service in the system wanting to access the tables under the contol of the DAS have to go to the...
Hello,
I'm trying to create a dead letter queue service in wcf with following service configuration:
<service name="NotificationDeadLetterQueueService">
<endpoint
address="net.msmq://localhost/system$;DeadXact"
binding="netMsmqBinding"
contract="INotificationService"
/>
</service>
If I start the service host, I get a System.Me...
I have a shared assembly between the client and wcf service. Is there a way to detect that the shared assembly is running on the client side or on the wcf side?
...
I have a WCF service. My service has 2 endpoints each of which has a different contact. The service uses custom user name authentication (defined in the customUserNamePasswordValidatorType attribute of under ) The problem is that both endpoins will use the same anthentication method.
Is there anyway I can define different anthenticatio...
I have a Data Service created using WCF that internally uses nHibernate. This WCF Data Service is used by Asp.Net application from Web Server. To improve the performance of the nHibernate Data service I want to implement nHibernate second leve cache. Which second level cache provider will be good in this scenerio? As the SysCache uses As...
I'd like to be able to generate individual classes (one class per file) for each Data Contract or XML type in a WCF Web Service.
I've read the svcutil documentation, and unless I skimmed a little too fast, it doesn't look like the tool supports this behaviour.
The reason I want to do this is simple - I'm trying to isolate the service's...
I am trying to generate a new set of wcf interfaces based on existing interfaces.
I am using the Reflection.Emit namespace to accomplish this. My problem is how to copy the old custom attributes from one method to the new method. Every example I have seen of SetCustomAttributes() requires knowing the attribute type beforehand. I need ...
It took some time to solve this and the conclusions are interesting.
Our Office (Word/Excel/PowerPoint) add-in sends a request to our custom WCF service, the hosting Office application terminates, leaving this entry in the application log:
Provider: .NET Runtime
EventID: 1023
Level: 2
Task: 0
Keywords: 0x80000000000000
Channel: Appl...