0
votes
1answer
18 views

Binding WCF service

I have launched ASP. net aplication that use WCF service, here some code of WEB.config: <system.serviceModel> <client> <endpoint address="http://somehost.com/GiService.svc" ...
0
votes
0answers
5 views

Issues while working with Simplemembership

I am trying to implement Simple membership in my ASP.NET MVC 4 application targeting .NET Framework 4.0. I have referred many articles, but all showing it targeted for .NET Framework 4.5. Finally, I ...
0
votes
1answer
26 views

How to create a URI template in WCF?

I'm new to wcf services development. I have the following problem: I'm creating wcf-service with URI template like this: [OperationContract, WebGet(UriTemplate = ...
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
votes
0answers
31 views

Issue with Binding your Gridview to WCF Service [duplicate]

I want to bind my GridView based on the retrieved data from a WCF service. But it shows only the last row data in the GridView instead of showing them all. Here is my WCF: try { DSCustomer ...
-2
votes
2answers
46 views

How to bind gridview to a wcf service application?

I want to bind my gridview based on the retrieved data from wcf service .But it shows only last row data in gridview instead of showing them all. Here is my WCF: try { DSCustomer dscat = new ...
2
votes
2answers
47 views

Can we add single reference to multiple .svc files in a web application

I have created a wcf application and host it on my web server, then I have add the service reference of this application to my client application. All is working fine, the result I am getting is ...
0
votes
0answers
23 views

ASP.NET WCF and Web Form together not working

I developed a Webproject in ASP.NET 4.5 with C#. In the Webproject I have normal ASPX sites and also I want to have a WCF Webservice, the WCF Webservice should be activate by a jQuery call. This is ...
0
votes
1answer
19 views

The Contract Name 'MyCompany.CostReduction.EditInitiatives' could not found in the list of contract bt the service 'EditInitiatives'

I am getting above error for ajax based WCF serive. Code looks like below. Code <ServiceContract()> Public Interface IEditInitiatives <OperationContract()> _ ...
2
votes
0answers
43 views

WCF service timing out only when called from an ASP.NET web app

I have a few WPF applications that have WCF services with a single function called UpdateValues. I have about 5 applications working, but for some reason one is not. I tested the app using the WCF ...
0
votes
1answer
33 views

ASP.NET Forms Auth For Downstream WCF Authentication and Authorization

Development Environment: Windows 7 Enterprise with .NET 4.0 with Visual Studio 2010 Production Environment: Windows 2008 Server with IIS 7.0 I'm trying to figure out the best way to authenticate and ...
1
vote
1answer
20 views

Why WCF service change date value in case different TimeZone on client and server side

I have WCF service, one service method return array of some objects, single object contain some date values, for example {14-05-2013 08:00:00} Kind: Unspecified. I can see in debug mode this value ...
-2
votes
0answers
30 views

car speed control using bluetooth-Hi can anyone pls give the source or full project [closed]

http://1000projects.org/car-speed-control-using-bluetooth-project.html reference. From this website only i came to know about this project kindly help me with source code in zip or any format
0
votes
0answers
19 views

Problems with Microsoft Identity (WIF) Example „Invoking a WCF Service on the Backend via Delegated Access”

I have a prboem with a WIF/Identity delegation Sample that we urgently need: Since days I try to bring ClaimsAwareWebSite- Delegation Demo Solution up and Running, but it does not work. I have a ...
3
votes
0answers
39 views

Object of type “X” cannot be converted to object of type “X” (again)

I've seen the dupes of this. None of the answers there are helping me. The peculiar details of our situation are: The class that cannot be converted is a result class coming from the WCF service. ...
0
votes
0answers
14 views

Roles.IsUserInRole throwing a dataservicequeryexception

What i'm trying to do is to test if a role is affected to a user or not, the method (fig 1 ) which test is exposed with WCF Data Service, and i'm trying to call it (fig 2 ) from the client side. the ...
0
votes
1answer
28 views

How to pass in connection string when overriding UserNamePasswordValidator

I am overriding UserNamePasswordValidator in my WCF service and I want to validate the username and password against an SQL database. Is there anyway to pass the connection string into the ...
0
votes
1answer
11 views

IE8 fails to download file from WCF - doesn't recognize filename

I have WCF REST Service whos purpose is to serve files on request. WebOperationContext.Current.OutgoingResponse.Headers.Clear(); ...
0
votes
1answer
55 views

How to send data to and from ASP.NET 4.0 website and C# WCF (Web Service)

I am wondering - in my ASP.NET 4.0 website how to connect to the web service I have running? This is essentially what I would like to accomplish, for testing before I apply it on a larger scale. I ...
0
votes
1answer
44 views

Call a WCF Data service boolean method

I'm trying to receive an answer from a WCF method from the client. When I try to execute void methods, they are working fine. For example: Uri u = new Uri(string.Format(LogIn.ctx.BaseUri + ...
0
votes
1answer
36 views

How to consume Wcf rest servcie(Form authentication) from android client

I built a wcf rest service with form authentication. All the settings are set in config file. This service needs to be consumed by android client. So can any body please tell me how to send the ...
0
votes
0answers
34 views

WCF error while calling a function

I got the below error while using a wcf service in my project. Now i call a function named get_cust_details its working fine.Then i call a another function get_contact_details in the same service.But ...
3
votes
1answer
74 views

Launch an ASP MVC project from a normal .aspx page

I have an existing ASP.NET web site running on .NET 4.5. I need to integrate an ASP MVC 4 project (which is its own fully-functional web application) into it so that when the user navigates to a ...
0
votes
2answers
30 views

How to bring a column that has a DateTime type in SQL Server 2012 into a WCF DataContract C# class?

How would you bring a column that has a DateTime type in SQL Server 2012 into a WCF DataContract C# class and in a SqlDataReader. Would I have to convert it first? Does the fact that it is in an ...
0
votes
2answers
68 views

Trouble while connecting my WCF service to ASP.NET Web Forms application

I have an ASP.NET Web Forms application regarding a bookstore. I have created a database, and included some books inside. My original ASP.NET application works just fine and I'm able to view my books, ...
4
votes
1answer
103 views

How can I determine where my dll is hosted [duplicate]

I need to know the context (ASP.NET, Windows Service, Windows Application, etc.) in which my assembly is hosted. My assembly should call different functions based on the context. For example, if it ...
0
votes
0answers
28 views

Consume WebServices over SSL and from Windows 8

I have built a web service. It is running over SSL. Now I am developing the client part in Windows 8. When I add the Service Reference to the project, I enter https://myserver/myservice.svc. ...
0
votes
0answers
48 views

WCF error when returning too much data

First of all I do not know much about WCF, so I may be making a basic mistake. I get the error when accessing my web service : The formatter threw an exception while trying to deserialize the ...
2
votes
1answer
36 views

.Net Web Application app startup workflow for IIS

Okay, so let's say I have a web application that absolutely has to perform some kind of startup and has to remain running indefinitely regardless of the communication it receives from the clients (as ...
3
votes
3answers
65 views

AppDomain.CurrentDomain.UnhandledException does not get called

I have a WCF service that has the following code in Global.asax: protected void Application_Start(object sender, EventArgs e) { // Make sure that any exceptions that we don't handle at least get ...
0
votes
1answer
60 views

Consume WCF service from JQuery

I am trying to add a WCF service to my web control class project and allow my jquery client to consume the service. Ideally, I want to host the WCF service in the same project and allow a custom web ...
0
votes
1answer
35 views

can i use wcf rest service in my asp.net 3.5 web application

I heard that rest services are moved from wcf to asp.net web api frame work. Our web application is built on vs 2010 (asp.Net 3.5) .So still i can use wcf rest services in my web application? ...
3
votes
2answers
96 views

Asp.Net : Best way to broadcast data from WCF service to Asp.Net client

I need to create a high-frequency realtime web application and I would like to know the best way for doing it! A WCF Service hosted in a Windows Service needs to refresh browser clients (ASP.NET ...
0
votes
1answer
71 views

I am consuming a WCF service that requires headers from a .NET 2 website. How can I programmatically add the headers to the messages?

I have a WCF service that uses a custom instance provider (implements IInstanceProvider) for which the GetInstance method expects a message that contains a few headers, like this: public object ...
0
votes
0answers
71 views

what is the best Course or Tutorial to learn WCF and .Net Remoting? [closed]

I want to learn WCF & .Net Remoting from reliable sources contains a complete examples help me to develop myself in WCF & .Net Remoting from beginner to professional.
2
votes
1answer
74 views

Load dll and host it as windows service

I have 3 Restful services which I want to host as windows service. I have created one installer which will host all three services together. I want to make my installer a bit configurable. I want to ...
-4
votes
0answers
27 views

Send data from one domain to another domain [closed]

We have a requirement as follow We have web application built on Asp.Net 3.5. There is another Android mobile application written in different domain.So whenever user update information on mobile it ...
-1
votes
1answer
46 views

Service Agent C# that abstracts an asmx service [closed]

i have to create a service agent that let me communicate with a service (i have the service reference for this service, a .asmx). I do not have idea. How can i do? I don't know what i have to search ...
0
votes
1answer
33 views

passing custom object after serialization to WCF

I have a WCF service method with following signature: public string CTNotification(JSONRecordingCompletedNotification content) { I want to create a client and consume it. I have written ...
0
votes
1answer
42 views

Hosting a WCF service in a Windows service

Good day I want to host a WCF service in a Windows service and as such I am following the tutorial: http://msdn.microsoft.com/en-us/library/ff649818.aspx During "Step 8: Add a WCF Service Reference ...
-1
votes
0answers
24 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
0answers
35 views

Missing Assembly Refrence When Database Project and WCF service use in One Project My Code Attached Asp.net WCF?

i have project in which there are database manger project for data base , INspectionservice for WCF ans these two are using as dll in project when i run project it give error Error 99 The type ...
0
votes
1answer
35 views

Passing Json as stream to WCF method

I have created a website using WCF REST Service Template 40(CS) and It has a service method like this: [WebInvoke(UriTemplate = "CTNotification", Method = "POST", ResponseFormat = ...
0
votes
1answer
53 views

Best Overloaded Method Match Has Some Invalid Arguments Asp.net Wcf?

I am getting error "Best Overloaded Method Match Has Some Invalid Arguments" my code is, System.Collections.Generic.List<ConsultantShares> consultantShareList = (Session["ProjectShare"] as ...
0
votes
1answer
96 views

request.ContentType = “application/json” gives bad request error on WCF method

I have created a WCF service using WCF REST Service Template 40(CS) and method header looks like this: [WebInvoke(UriTemplate = "CTNotification", Method = "POST", ResponseFormat = ...
1
vote
2answers
49 views

Pass DTO for GET Request in REST

I have a REST method for search users. Right now I am having following signature for the REST method: MyResponse GetUsers(UserSearchDTO search, int pageno, int totalrecords); i.e it is accepting ...
0
votes
0answers
25 views

FileUpload using ajax with WCF service

I am wondering if you can help me. I am using Fasny fileupload and I want to add the current file to the server with WCF service(c#). My plan is to call my service with javascript(ajax) and to give ...
0
votes
0answers
25 views

Failed to add a service. Service metadata may not be accessible. Make sure your service is running and exposing metadata

I already went through all the posts with the same or similar title. Nothing working in my situation. Any ideas? Went through the following links..... [1]: ...
0
votes
0answers
44 views

How to use Push Notification in asp.net

Our application is developed in Android native tablet and server is maintains through WCF Services. Now i want to use push notification if any updated done in application from tablet. And notification ...
2
votes
2answers
1k views

How does the WCF service interact with my winform app?

I am currently developing a C# Windows Form Application that I intend to let it interact with a server. The server will receive posting from a mobile application that I have developed and whenever a ...

1 2 3 4 5 46