Tagged Questions
5
votes
4answers
5k views
How to configure WCF in a separate dll project
Aloha
I'm developing a web application (ASP.NET 3.5) that will consume a number of web services. I have created a separate dll-project for each web service: these projects contains the service ...
2
votes
1answer
135 views
Use/generate methods signatures with int[] insted of ArrayOfInt on .NET web service
I have a ASP.NET web service (.asmx) with methods that receives int arrays (int[]) and nullable int arrays (int?[]) as parameters. I also have a test web application for consuming this web service via ...
1
vote
1answer
151 views
How to get all WebMethods of a WebService pointed by a ServiceReference.Path
In my ASP.NET application, I use the ServiceReferenceCollection to carry a set of WebServices, and in the code-behind, I'm asked to figure out all the public WebMethod(s) and corresponding arguments ...
0
votes
1answer
27 views
Multipart messaging in .NET with service references c#
I have looked for hours and haven't found an answer to what I would imagine is a somewhat common issue.
I have a lot of data (string[2000000]) that I want to send across to a service via a service ...
0
votes
1answer
37 views
which files should be added to Souce Control (Service Reference)
When i added service reference to my .Net project (right click->Add Service Reference), VS created a folder with the Service name and created bunch of files (listed below). I am not sure which files ...
0
votes
3answers
66 views
After converting console app to asp.net web app, post is no longer instantaneous
I have a console app which connects to a service reference that allows it to send SOAP calls to a service, which updates information in a separate program that I do not own or control. The console app ...
0
votes
0answers
13 views
How to catch if a web-service class is a proxy from service-reference?
I'd added a service-reference into my ASP.NET project.
VS then automatically generate the proxy class appropriate.
Now I wanna extract all web-service class which doesn't belong to the above proxy ...
0
votes
1answer
184 views
SOAP webservice call gives null result
I am trying to get a result from a webservice in an ASP.NET MVC (3) app. The webservice call (see below) works perfectly and I can see in Fiddler that I get a proper SOAP result back.
However, the ...
0
votes
3answers
318 views
How do you consume a RESTful WCF service from an ASP project using a service reference?
I am developing a RESTful WCF service which I then want to consume from a separate ASP.net Project.
Is it possible to use a service reference from within the ASP project to consume the service using ...
0
votes
1answer
265 views
Changing “web reference” to “service reference” changes method signature
I'm helping out a colleague on this one so if I'm missing some details that's why.
We have an asp.net 3.5 web application calling a WCF service. Originally the app used a "Web Reference" to register ...