Tagged Questions
2
votes
0answers
62 views
Does my web service have to implement WCF in order for type reuse to work?
I know that when creating WCF services and clients we can reuse the contract classes by using the [DataContract] attibute. Is there any way to do that when my web service is a legacy asmx web service?
...
2
votes
0answers
1k views
How to add custom SOAP header for C# Web service client invoke Axis 1.4 Web service
I'm trying to wirte a C# application as Webservice client invoke Java Web servie (use Axis 1.4) in 3 days but it's not work until now.
Java WS require a custom SOAP header for authentication. So, I ...
2
votes
0answers
861 views
SAP Webservice Client - Deserialization failed
I've created a simple Net WebSvc Client which receives an up to date reference of a Sap WebSvc. It expects a String, and four elements sent by reference: three arrays of custom objects and another ...
1
vote
0answers
222 views
How to throw an UnauthorizedAccessException with webservice
I've been trying to use David Polls SLAB (silverlight and beyond):
I'm trying to implement the <SLaB:ErrorPageLoader.ContentLoader> the problem is that I'm not using the RIA service for ...
1
vote
0answers
474 views
webservice in C#, wse 2.0
I have a problem.
I import this in to my program:
using Microsoft.Web.Services2;
using Microsoft.Web.Services2.Addressing;
using Microsoft.Web.Services2.Messaging;
I've also added ...
0
votes
0answers
56 views
consume Java Web Service in .NET Client
I have a Java Web Service at https://www.domain.com/service1
I need to consume this service in .NET Client.
This service requires WS Security UserName and/or RequestContext.username
I cannot add ...
0
votes
0answers
29 views
Disposing/Cleaning up web service proxies
What is the best practise for Disposing/Cleaning up a web service proxy instance after synchronous usage?
How does the answer differ if the proxy class is derived from SoapHttpClientProtocol versus ...
0
votes
0answers
47 views
Error to store an instance of web service proxy inside a session variable
I have the next private attribute inside a public class
Where WSFidelidad.FidelidadClient is a webService (WCF).
public class WSa
{
private WSFidelidad.FidelidadClient _ws;
public WSa()
...
0
votes
0answers
99 views
Format of XML when posted to web service though WSDL.exe created proxy
Please forgive me if I am not using the correct terms here; I am new to XML, WSDL and all the other web service stuff.
I am trying to integrate with an external web service, and have had a WSDL file ...
0
votes
0answers
393 views
Windows Store App: Adding custom SOAP headers to a web service request on the client side
This is the 1st time I end up having to write down a question on this website. I usually find great solutions to my problems, but I couldn't find any for this one. Here is the issue:
My question: In ...
0
votes
0answers
60 views
Access Web Service created in Java using C#
First of all this is my first time using Web Services so if what I am asking doesn't make sense I'm sorry.
I created a simple HelloWorld Web Service in Java that takes a String as input and returns a ...
0
votes
0answers
154 views
WebClientProtocol.Timeout not Timing Out
I'm calling a Web Service via SOAP. When the web service is down, we'd like it to fail rather quickly rather than wait the default timeout. I use the Timeout property for this:
service.Timeout = ...
0
votes
0answers
659 views
How to capture XML when calling web service from win apps
in my solution i have three project. one is web service (ASMX), another is win form apps from where i am calling the web service. another class library where class has been design extending ...
0
votes
0answers
280 views
getting data with as3 from c# web service
i am getting my objects from c# web service but i cannot use them in xml list can you please have a look at my code.
function LoadedXML(evt:ResultEvent):void
{ ...
0
votes
0answers
508 views
Not showing data from SOAP service
I have an interesting problem involving a C# console client and a web service.
My suspicion is that there is a name space error somewhere or something simple, but eight hours of staring blankly into ...