Tagged Questions
0
votes
0answers
7 views
Stream returning from WCF service is not processable
we have a desktop application (VS 2010 C# .net FW 4.0) that connects to a (Vertica) DB and retrieves huge amounts of data (everything working smoothly). Since customers often have restictions on their ...
0
votes
0answers
10 views
How to update a multi-choice field in sharepoint with WCF/Rest web services?
I've been looking for this on the web for 4 days, and i still have no clue why my code isn't working...
I'm using an ASP.NET MVC 4 application with a service reference to a sharepoint listData in ...
0
votes
0answers
10 views
Upload to Amazon S3 from WCF server
I try to upload an image from WCF server to Android S3. WCF doent do anything in a process consider test.jpg is located in the folder and we want to upload it ito the Amazon S3 server bu clicking on ...
0
votes
0answers
14 views
GET request for WCF REST service using cURL
I'm a beginner is the REST world & cURL... I have a WCF REST service and I can't figure out how to call this from PHP using cURL.
My service looks like this:
[OperationContract]
...
0
votes
1answer
17 views
How to set up basic WCF service - client application?
I am new to WCF and I try to create my first WCF service - client application. I use Visual Studio 2010.
I create WCF Service application
I try to add service reference to my another project. After ...
0
votes
0answers
21 views
MVC WCF Validation
I want to validate my view but I don't know what is best way to do it
I want to know if there is an option like this in my service i have
[Required(ErrorMessage = "Property is required.")]
...
0
votes
1answer
38 views
How to create a service that monitors for a program to start?
I'm trying to create a service that will wait for a program to be run.
Say I run iTunes.exe, my service will then do something like show a message box that will say "iTunes.exe has started".
1
vote
1answer
28 views
How to keep WCF Service Alive?
I have a situation where I have two programs (one exe and one dll loaded into the process space of another third-party exe) communicating requests with each other using a local machine wcf service ...
0
votes
1answer
58 views
Architecture for Intranet Application
I am planning to build a production application for a small & medium business. This is an intranet application with maximum 15 to 30 concurrent users. The proposed architecture is:
Client: ...
0
votes
4answers
42 views
Java applet calling WCF Service fails with noclassdef exception at runtime
I have a java applet which uses a proxy service to a WCF Service to display data. The applet compiles and runs perfectly in Eclipse but when I build and export a Jar file then run it in a html page ...
0
votes
0answers
19 views
How to do the client windows authentication for WCF Web Service
We have created the WCF Web Service using the Windows Authentication and it's hosted on one of the server. The ASP.Net Client application which is running on another web server is configuired to use ...
0
votes
1answer
52 views
Calling WCF Service from JavaScript using AJAX through JQuery
I'm trying to call a WCF Service located locally through JavaScript. Here is a sample of the WCF Service.
public string GetMarkers()
{
List<Marker> lstMarkers = new ...
0
votes
2answers
31 views
Why is WCF replacing my endpoint name?
I've got a service with the following endpoint:
<endpoint address="" binding="basicHttpBinding" bindingConfiguration=""
name="SomeServiceDotNetEndpoint" contract="Contracts.ISomeService" ...
0
votes
0answers
48 views
Hosting WCF Service over https
I'm trying to host a wcf service over https. Here is my system.serviceModel element
<extensions>
<behaviorExtensions>
<add name="portName" ...
0
votes
0answers
23 views
WCF service hosted in one server working fine. hosted on another server giving error
I developed a WCF service with three methods. installed in my development server's IIS 6.0 and everything works just file. When I installed it on a production server's IIS 6.0 it's giving the ...
0
votes
1answer
36 views
Chatbot (irc) as WCF service?
I want to make a IRC bot and got most of the code already, the only thing I don t know yet is or it is possible that I can host it in a WCF service. The problem I think is that it will be garbage ...
0
votes
0answers
41 views
how to set http status code in wcf routing service
we have a WCF routing service which is configured to make calls to backend WCF service based on incoming request user id.
our back end wcf service manipulates http status code in response and sets ...
0
votes
1answer
16 views
WCF - Can i securely use the CallbackChannel to identify authenticated clients?
I'm using NetTcpBinding with a WPF client.
i want to know if the CallBackChanel (OperationContext.Current.GetCallbackChannel)
can be spoofed by some one else ...
i meen, can i be sure, if i store this ...
0
votes
0answers
50 views
Add Service Reference Error
I am trying to use a .wsdl file from my own wcf project. From what i understand of it, i need to add the service reference of the .wsdl file into my wcf project. The error is am getting is this one :
...
0
votes
1answer
18 views
Secure WCF service, what sort of authentication needed in addition to SSL protocol?
I have a server with SSL certificate and would like to implement a WCF service with username authentication. Can anyone point me to a simple current example?
I find lots that use the 509 certificate ...
0
votes
0answers
41 views
Asynchronous WCF service not working
I have this service:
[OperationContract(AsyncPattern = true)]
public IAsyncResult BeginSensorResult(string ip, string command, AsyncCallback cb, object state)
{
return new ...
0
votes
0answers
82 views
Service metadata may not be accessible. WCF service Windows 8
hi Im trying to run my WCF service on my win 8 computer in the test client and I get that message:
Failed to add a service. Service metadata may not be accessible. Make sure your service is ...
0
votes
1answer
81 views
WCF is not sending stream (net.tcp binding)
I can not send stream using net.tcp binding. I have MessageContract to send data, and WCF is passing the FileName but the stream FileByteStream is empty
[MessageContract]
public class ...
-1
votes
0answers
25 views
Calling non secure wcf service from secure website
I have a non secure wcf service hosted in a server that I want to call from an SSl website hosted in a different server. Is this possible or do I need to configure something?
0
votes
1answer
45 views
log4net in WCF service hosted on a windows service
I have a WCF service which is hosted on a windows service.
Where should I put XmlConfigurator.Configure();?
In other applications, I can place it in Application_Start()
Can I place this in the ...
1
vote
1answer
49 views
What is WCF readerQuotas and maxArrayLength?
Can anyone explain WCF <readerQuotas> to me? Specifically maxArrayLength.
According to MSDN :
maxArrayLength A positive integer that specifies the maximum allowed
array length of data ...
1
vote
0answers
27 views
Service could not be started on reboot
I've programmed a small service running as Windows Service. On most computers this works well, but there are a few computers, where the service sometimes does not start when the computer is rebootet.
...
1
vote
2answers
90 views
Why WCF Service cannot run on hosted server?
I have created a WCF Service on my ASP.NET website. But when I run the website on the hosted server (such as on real domain somedomain.com), the WCF Service cannot run or called by any request from ...
0
votes
0answers
20 views
WCF Data Services Http traffic consume network resources
My local machine IIS hosts WCF Data Service, WPF UI is also in my machine. Recently lots of CRUD requests sent from WPF UI and lots of data as well for each request. So lots of Http PUT/DELETE traffic ...
0
votes
1answer
36 views
Azure, WCF services and restricting part of the interface?
I could not find a direct answer to this. Basically I have services MainService and SubService. The idea is that the Client software calls some methods in the MainService, but SubService calls another ...
1
vote
1answer
49 views
WCF service error 400 bad request
I've been searching this problem, and I found similar problems posted by other users, but everything I've tried doesn't work, The problem is that I'm using a WCF service hosted on IIS, and a client ...
0
votes
0answers
69 views
WCF service method not called by API with Json string
I have created a web service using WCF REST Service Template 40(CS) like this:
[ServiceContract]
[AspNetCompatibilityRequirements(RequirementsMode = ...
-2
votes
1answer
30 views
web service and alternative [closed]
I'm developing an application and I would like to use a web service or something else. I'm newbie in this domaine. And I don't know what I have to use. I have read a lot of thing but I'm totally lost, ...
0
votes
0answers
21 views
Multithreading IIS Issue - Enabling ISAPI
I've just started a new position about a week ago and I've been asked to investigate an issue they have had for sometime. I don't have access to the code yet as it is hosted with an outsourcing ...
0
votes
0answers
22 views
Running example code result error application not support wcf test client it uses DataAcessManager.InventoryProject?
I am new to WCF. I tried this example code and receiving the error, mentioned in title on AddNewProject(). I found this method in this service application:
[OperationContract]
void ...
0
votes
0answers
27 views
What is the correct way to handle ServiceHostFactory.CreateServiceHost failures?
I have some WCF services that have been testing out just fine for some time now. We host them in IIS with Windows Process Activation Services (WAS). When the clients connect, the services crank up, ...
1
vote
1answer
38 views
WCF service hosted in a Managed Windows Service can not be accessed from another machine
I have a WCF servise hosted in a Managed Windows Service that I developed according to this manual. In App.config I specified the following:
<service ...
0
votes
1answer
35 views
how to host 2 wcf services in 1 servicehost
i'm working on a wcf project
i have 1 service with 2 contracts (2 endpoints)
and 1 service with 1 contract (1 endpoint)
i want to make 1 single ServiceHost for both my services.
i can make 2 host for ...
0
votes
2answers
79 views
WCF - call method from service implementation
What I'm trying to do is the following:
1) I have the following WCF service contract:
[ServiceContract]
public interface IUploadService
{
[OperationContract]
ServiceData Upload(Request ...
0
votes
1answer
165 views
WCF data service not responding with json, only xml
I am trying to consume a data service function with a jquery ajax call, I've tried many ways of calling it, and setting up the Service Contract and Data Service, but no matter what it keeps giving me ...
0
votes
1answer
30 views
Share Security Token with Windows Service
I am trying to secure a download url in iis (and possibly apache/tomcat). The caller of the url is a Windows Service. That service/owner has no credentials of its own and must get them from another ...
1
vote
0answers
66 views
WCF service: The namespace and source of the classes has been changed
I have solution with 3 projects:
1. Client (reference: DataContracts and ServiceReference created via Visual Studio 2012 with name TaskerWcfService)
2. DataContracts
3. WCF Service (DataContracts)
...
0
votes
0answers
87 views
How to pass parameter (id) to message inspector in WCF?
I Just want to bound WCF incoming and outgoing messages with some id, what will be logged to database.
As it planned to be used in high multi threaded environment, there is some issues occurred.
1
vote
1answer
63 views
Hosting EXE vs Managed Windows Service [closed]
I am working on a project where I am developing a class library assembly that will be loaded into a third-party application's process space. I don't have any control of the third-party product, but ...
0
votes
0answers
15 views
Setting servicePrincipleName once for all Endpoints
All of my Endpoints have the same servicePrincipleName:
<endpoint .....>
<identity>
<servicePrincipalName value="host/QQQQQQ.cg.net" />
</identity>
...
1
vote
0answers
17 views
How to effectively maintain a lot of service endpoint configuration?
What we have come to is a big system with a lot of services distributed, including WCF windows services, IIS windows services, IIS Web services, self-hosted services, WebApi services and so on. About ...
0
votes
1answer
65 views
How does a WCF service know what certificate to use to decrypt an incoming security token?
I'm implementing a WCF service using .NET 4.5 and token-based security. On the client side, I'm calling myfact.CreateChannelWithIssuedToken() with a token previously retrieved from an STS, when I use ...
0
votes
0answers
19 views
How accurate is the OData Protocol for service development? [closed]
I currently testing a WCF-Service with WCF Data Service-Framework and OData output. I like it very much but I have never heard about before.
The clients that consuming my service should be mostly in ...
0
votes
0answers
65 views
Operation Contract Definition Causes Windows Service to Not Respond to Control Function
I've been developing a windows service with a WCF service hosted within it. Throughout development I've been able install and start my service successfully, testing features as I added them. However, ...
0
votes
1answer
44 views
Application not calling WCF service (Both hosted on IIS7)
I have hosted a WCF Service and my ASP.Net MVC3 application in IIS7. Both are in the same server. The application is in the default app pool and the service is in a different app pool.
I've added the ...



