What is difference between REST and WebService (SOAP), I looked at the facebook api, they use HTTP headers and some parameters (probably xml or non) and return result in xml, where else SOAP does exactly same, HTTP headers + xml parameters and returns headers + xml.
REST also requires some authenticated token where else SOAP uses http s...
Hi,
The project that we worked on consists of 3 tiers: the presentation tier, the business logic tier and data tier, I will call them here the front, mid and back.
The front is written in PHP and it communicates with the mid via web service (XML-RPC, SOAP, etc.). Users can also write their own clients to talk to the mid. The nid is de...
Web service wsdl contains following schema:
<xs:complexType name="DocumentSearchInfo">
<xs:sequence>
...
<xs:element minOccurs="0" name="Industries" nillable="true" type="tns:ListCondition">
<xs:annotation>
<xs:appinfo>
<DefaultValue EmitDefaultValue="false" xmlns="http://schemas.microsoft.c...
I want to insert 50 000 records into MySQL through a web service written in Java but only 20 000 records are getting inserted.
I dont think there is size (number of record ) limition in my sql.
is there something where i can Insert/Select 50k records in a single go (bulk)
...
I have an ASP.NET application that I've upgraded from version 1.1/Visual Studio 2003 to Visual Studio 2008 (.NET framework 3.5, ASP.NET 2.0).
A call to a web service outside of my application (but inside of our network and firewall) that used to work fine in the old version is now responding with:
The request failed with HTTP statu...
I need to use a web service to be able to sync my iphone app with my Asp.Net website. Data needs to be sent both ways. I haven't started building the web service nor the client yet so before I start, what's the best way to do it? Using SOAP, REST? I understand that support for SOAP or REST isn't built-in in iPhone SDK but are there any r...
I'm about to start work on a large project that will involve providing a significant number of web services.
We'll be using the Java platform, so, of course, we'll be making heavy use of JUnit, Hudson, etc. (although I'm not sure that matters at all.)
We're looking for a set of best practices and/or tools for testing the web services. ...
I need to reach a webservice which respondss to the postvar "data".
How do i set this name in c# with a httprequest...
this is what i got:
UTF8Encoding encoding = new UTF8Encoding();
byte[] data = encoding.GetBytes(postData);
HttpWebRequest myRequest =
(HttpWebRequest)WebRequest.Create...
I followed this to create a json web service in asp.net 3.5:
http://www.pluralsight.com/community/blogs/fritz/archive/2008/01/31/50121.aspx
It works fine if I want to use it internal but as I want to connect to it external I got an error saying: "Metadata publishing for this service is currently disabled."
So I tried enabling it but...
What tools are best for measuring web-services performance?
It would be nice to get report for total transferred data, total POSTs, requests per second, time per request, transfer rate and response time per request.
...
Hi, I'm learning how to consume web services for a student project using the iPhone.
The top answer from http://stackoverflow.com/questions/204465/how-to-access-soap-services-from-iphone suggested using http://code.google.com/p/wsdl2objc/ to consume services.
However, I've tried using http://www.weather.gov/forecasts/xml/DWMLgen/wsdl...
Say I have created a webservice and WCF service.
How are the different kinds of testing (viz. unit testing, SIT, etc) performed for web services and WCF service.
Do i need to explicitly create a sample project to test the service by passing input parameters and analyzing output parameters or are there any tools through which we can per...
With regular ASP.NET MVC pages, the repository is passed in to the constructor of the control. Then the tests can instantiate the controller passing in a mock repository.
How can I do this with web services? The problem I see is that we don't have the equivalent of ControllerBuilder.SetControllerFactory.
What are the best practices t...
Good Day,
I have created an asp.net web service on my local machine, and i can consume it with no problems using phone emulator but whenever tried to access it using a real mobile phone connected on my wifi network i can't access it, knowing that my localmachine (webservice hosted) and mobile phone (consumer) is connected on the same ro...
Hi,
I've created EJB Stateless Bean and have added @WebService, @WebMethod
annotations to be able to access it as web service. I am using
NetBeans and GlassFish. When I tested web services with server console
they worked as expected. Next I've created .net application which is
supposed to be client for my web service. The problem is whe...
Is remoting faster than web service or vice versa.
Also on what parameters can we differentiate the performance.
web service uses XMLserializer while Remoting uses binary
is xmlserialization a slow process and if yes than why?
...
I'm getting this error from Mono's wsdl utility while trying to process eBay's WSDL file -
( http://developer.ebay.com/webservices/latest/eBaySvc.wsdl )
$ wsdl eBaySvc.wsdl
Web Services Description Language Utility
Mono Framework v2.0.50727.1433
Error: XmlSchema error: Ambiguous element label which is contained by -any- particle was d...
Google Docs does provide sharing of files.But it does not provide sharing of folders.
Is there any way by which I can share the folders too? Can I write my own application/program for it?
If yes, then how?
UPDATE: Now this question is no longer
useful.Gmail now supports folder
sharing too.Cheers!
...
Not even sure if the title is correct, however, what I'm trying to do is use the standard NSURLConnection class to handle responses from calling my webservice. I am using the POST method to update a database and the GET method to retrieve rows from the database. The problem I have is that these 2 actions may occur simultaneously so tha...
In .net, I need to securely transfer files 4mb in size from client machines running my software to a central server, process, and securely send back results consisting of a pdf file, a jpg image, and xml data.
What .net technology would be most appropriate for this? (web service. remoting, etc)
...