Questions tagged [wcfserviceclient]
84 questions
0
votes
1 answer
Problems including a service reference to a .NET web site
I have a web service created by me, which I include in a .NET console project successfully, while it is impossible to include to a web site project.
Each time I add a web reference, my assistant does not find the service locally, but if I introduce…

user2413439
- 23
- 1
- 6
0
votes
1 answer
WCF service (entity) ¨linq quert select db table through parameter webget possible?
i wanted to ask if it possible to select an entity database table through a webget parameter ? here is what it might look like :
[WebGet]
public IQueryable GetAllCallers(string select, string **table**)
{
…

lesley belgium cuber houben
- 72
- 1
- 8
0
votes
2 answers
WCF called from Jquery: Method not allowed
I've read countless walkthroughs of creating WCF services today, and after trying too many times, I've arrived at this point and have to give up for the day to keep my sanity. I am attempting to test an API (SmartyStreets), retrieving the test…

Blankdud
- 698
- 5
- 9
- 22
0
votes
0 answers
Object POSTed to Wcf web service request is null
This is my .Net Wcf WebService Service1.cs
[DataContract]
public class CompositeType
{
string degree;
string Stre;
string YearOfPass;
string Institute;
string StatusMessage;
string CheckStatus;
[DataMember]
…

Om Bala
- 169
- 3
- 18
0
votes
1 answer
Passing a request's ID to outgoing WCF service
I have to pass the request ID to it's outgoing WCF service call and take the request ID inside the WCF operation. How can i achieve this.?
To an outgoing Httprequest, I use the CookieContainer and store the ID in a new Cookie and take the ID from…

Sel_va
- 588
- 5
- 25
0
votes
2 answers
Shutdown or Restart Computer from WCF Service Not Working
I have a function in a WCF service hosted in IIS 7.5 which it task is shutdown or restart computer when it is being called.
I use the built in command line and execute it by passing "shutdown.exe -t 0 -r" to restart or "shutdown.exe -t 0 -s" to…

Buzz
- 321
- 2
- 3
- 20
0
votes
1 answer
Using KnowTypeAttribute in WCF Service
I have a situation where I need to pass a list of objects to my service. The objects have to be of type ELEMENT. I have my Element interface defined like so
public interface IElement{ }
Then I have my DataContracts inheriting this IElement class …

Race Maine
- 3
- 2
0
votes
1 answer
How to use a WCF Web Service in VB6
Situation is that I have a VB6 application and a WCF Service. The SOAP/WCF client has to be implemented in C# as we cannot do this in VB6.
So how can I use this client in my VB6 aplication?
In simple words, how to use/consume a WCF WEb service VB6…

meriaz
- 65
- 1
- 11
0
votes
1 answer
WCF service architecture query
I have an application that consists of a web application, and mutliple windows services, only one windows service is installed depending on what version of the backend sofware is used.
Currently, Data is saved by the web app in a database, then the…

WraithNath
- 17,658
- 10
- 55
- 82
0
votes
1 answer
How do I use the windows service and WCF to update some record in database?
I wrote a wcf service and then Host wcf in a windows service Using TCP.and then using the command Installutil WindowsServiceSendMail.exe register it on windows 7.
My problem is that the service does not start when i right click on the service1(on…

mahmood kabi
- 301
- 1
- 13
0
votes
1 answer
User request queue in WCF
I have a WCF service which creates a number of files at a server location doing various calculation on seed file depending upon the params given. The problem is that, the when 2 or more clients try to do calculation on same seed file, it is…

sk3145
- 174
- 18
0
votes
0 answers
Call default operation in WCF over TCP/IP
I have some requirement where i need to configure WCF service over TCP/IP protocol. I am able to do that by adding end point.
Client which is going to consume service will use some tool to push information. That tool take only IP address and Port…

Amit Soni
- 3,216
- 6
- 31
- 50
0
votes
1 answer
Windows Phone 8 unable to call a WCF Service from App.xaml.cs
I have a simple Windows Phone 8 application. When App starts, I need to authenticate user, doing a server call. In InitializePhoneApplication(), my WP8 application checks if this data was already obtained in a previous call and stored in…

smn.tino
- 2,272
- 4
- 32
- 41
0
votes
1 answer
I have WCF(odata) services how can i get response in android
I have Wcf(Odata) Services to get database values into client mobile. how can i get response from the service and store in local database.
if you give any example it is very useful for me
user1578542
0
votes
0 answers
WCF service client error "the best overloaded method match for XXX has some invalid arguments"
Hi I am creating an MVVM application and I have my database linked up to the project, I have a WCF service added to my project and I have a service reference created so I can add new data from my application to my database.
In my application…

RebeccaD
- 143
- 5
- 12