Improving WCF performance
Could I know ways to improve performance of my .Net WCF service? Right now its pretty slow and sometimes it gets clogged & eventually stops responding. ...
Could I know ways to improve performance of my .Net WCF service? Right now its pretty slow and sometimes it gets clogged & eventually stops responding. ...
I have a problem with consuming a third-party web service in .NET C#. It runs on Apache (NuSoap). Everything works normally up to deserialization (probably...). When I call the SoapHttpClientProtocol.Invoke() function, I always get an object array with one null object. Bad is that this web service doesn't provide a WSDL document. :-( C...
I'm calling a third party java web service from c#. It was working fine until they changed the server's message encoding from Mtom to Text. I changed the binding in the config file and now whenever I call the service I'm getting this error: The content type multipart/related; type="text/xml"; of the response message does not mat...
I have written a web service that reads from a message queue. This works fine under Cassini. Now that I have deployed the service under IIS, I receive an error message when the service tries to access the queue: The queue does not exist or you do not have sufficient permissions to perform the operation. I have set the anonymous acces...
I have seen a lot of job postings for ASP.NET and server engineer positions, and they always seem to list XML and XSLT as one of the skills that is valuable to them. I am wondering what role XML plays in modern systems. How are people using XSLT with XML in nTier systems? ...
I'm building a service that aggregates a bunch of data from multiple soap web services. There's a standard on what the web service call and soap package is supposed to look like. But of course, everybody's version is just a little bit different primarily in namespace usage. Is there any why in c# to dynamically fetch a wsdl and create th...
I'm using C# and asp.net to query a web service. The user will enter the number of guests and then I need to add that number of guests to the web service call. Creating the guests manually like this works. // Create room layout for searching Guest adult = new Guest(); adult.Id = 1; adult.Title = "Mr"; ...
Is it possible to use the built in ASP.NET membership provider to secure a web service? I have a SQL Server database already setup with my membership and now I want to provide a web service that only members are allowed to use. Is it possible to authenticate against this (if so how?) or do I need to have a seperate type of authenticatio...
Hey everyone, I am making a POST to a webservice that is local to the webserver. Everything works great until I host the site at my SSL enabled webserver. The webservice path is relative, meaning, I am making no reference to the protocol. eg. /webservices/method.asmx The POST results in a runtime error. Has anyone seen this before? $....
Hello - I have a simple web method and ajax call and continue to recieve an error that saying that it can't convert a string to an IDictionary object??? Here is the ajax call: var params = '{"ID":"' + rowid + '"}'; $.ajax({ url: 'EDI.asmx/GetPartnerDetails', type: "POST", ...
Is there an expiry on bit.ly or tinyurl shortened URLs? I'm asking because I'm thinking of persisting these shortened urls into the db for a client's twitter service. UPDATE: if you keep sending bit.ly the same URL, it'll return the same shorten URL!, this is great, because it means I don't need to persist the shorten URLs in my databa...
I am making a restrictive portal to a WiFi network using symfony, and I want to send a form as web service to other sites that want to use this portal. How should I solve this? I realize I could go the SOAP/WSDL route, but since symfony is already RESTful, it seems to me I could go the RESTful route with considerably less pain and loss o...
I have a WCF service that uses X.509 certificates for authentication. What's the best method of creating a Java client that can use that service? I've heard of Axis, CXF, Tango, and WSS4J, but I'm not sure which supports X.509 and which one is a good way of working with WCF. ...
I have the following class in Class Library: Artist, which is a POCO Now I have a method in a web-service (which has a reference to the mentioned-above library) with a signature like this: [WebMethod] public int Artist_AddArtist(Artist a) { // } When I try to consume this service from an application (that also has a reference to the...
Hi friends, I am trying to figure out how to get the parameters that are passed in the URL from a jquery plugin that I am using. Basically, I'm sending a POST ajax request to my web service and trying to use the URL parameters. But, they are always returned as nothing. I"m assuming this has to do with the fact that I'm in a POST. Can...
I am using NuSOAP to try to consume a Web Service built in Java. I have this code so far: <?php require_once('lib/nusoap.php'); $wsdl="http://localhost:8080/HelloWorldWS/sayHiService?WSDL"; $client=new nusoap_client($wsdl, 'wsdl'); $param='John';#array('name'=>'John'); echo $client->call('Hey', $param); unset($client); ?> but when t...
I have a WCF Service and an application with a Service Reference to it, and with the application I have a loop and in each iteration it's making a call to a method in this wcf web-service. The problem is that after about 9 calls or so, it just stops...and if you hit Pause button of VS, you will see that it's stuck on the line where it m...
Hi This is one of those situations where I've had to pick up and run with a new tech without having time to learn the foundations! I have the following js function which calls out to PrintService, which returns me the HTML to inject into a div: function showPrintDialog() { $.ajax({ type: "POST", ...
After having done a web service with netbeans and having tested it. What is it that I should upload to the server so I can use it? I have been going around tutorials but none (of the ones I've found) say what to upload. They just finish when you deploy the web service =/. ...
I am developing an application which includes a WCF service and its ASP.NET MVC client. The ASP.NET MVC website must display a grid of objects - say, products. These products are stored in database which is accessible through the WCF service. So somewhere inside an MVC controller I call WCF service's method that returns me an array of p...