I have a series of svc files within a web application, they all worked fine but I have a need to run with aspNetCompatibilityEnabled set to true and now I get the following exception
System.ServiceModel.ServiceActivationException: The requested service, '...' could not be activated. See the server's diagnostic trace logs for more inform...
Glassfish v3 is launched as follows:
./bin/asadmin start-domain <domain-name>
This script eventually runs:
exec "$JAVA" -jar "$AS_INSTALL_LIB/admin-cli.jar" "$@"
admin-cli.jar eventually launches another process, effectively putting itself into the background.
I would like to launch glassfish without putting itself in the backgrou...
I have noticed that all the example in the internet uses Service Path of ASMX for a cascading dropdown list, is there a way to use more modern technology as it's service path? I was wondering if I could use DataServices for it?
...
I'm following this guide here:
http://www.lostechies.com/blogs/jimmy_bogard/archive/2008/09/16/integrating-structuremap-and-nhibernate-with-wcf.aspx
And has now come to the end of it where i need to add :
<%@ ServiceHost Language="C#" Debug="true" Service="Wcf.ComboService" Factory="Wcf.DIServiceHostFactory" %>
to my svcfile,
the p...
Hi i am new to wcf and xmlhttp, i am using vb script to send the request.
i am getting the following error
"Cannot process the message because the content type 'text/xml; charset=UTF-8' was not the expected type 'application/soap+xml; charset=utf-8'."
Please find my code below,
g_XMLLink = "http://dev1.xxxxx.employer/employer/v02/Empl...
Hello,
What I want to accomplish is the following.
Create a WCF webservice that is called by an android application.
The webservice should return alot of information that is gathered from a large database. The information will consist of a View with 20 different tables with around 1-2 rows in each tables containing information.
The...
Hi
I have many WCF services (SVC files), and I want to host them in IIS.
I was wondering:
Is it better to create each one on its own web site?
or have them all together live on the same web site?
What is the difference?
I read that each service will have its own APP domain?
Is there any articles that describe relation between WCF service...