I'm creating a web service with create/update/delete calls. But for now I'd like to restrict use of it on my own web app and no other clients. How can I have clear text javascript code that makes these calls but still be confident the credentials won't be used elsewhere?
My idea is to use server side generated nonces for each request. B...
Hi,
I have a web page (.aspx) that calls a third party web service to get some data. It usually takes couple of seconds to get the response back, and then the rest of the page will load. Occasionally the call gets stuck either due to the web service is down, or internet connection, etc., the page just hang there and will not load.
My ...
My company uses a lot of different web services on daily bases. I find that I repeat same steps over and over again on daily bases.
For example, when I start a new project, I perform the following actions:
Create a new client & project in Liquid Planner.
Create a new client Freshbooks
Create a project in Github or Codebasehq
Developer...
Using Ksoap2 on Android, can anyone tell me the difference between these three?
SOAP_ACTION
NAMESPACE
URL
I am really confused about the differences.
...
Hi, I'm starting to work with Entity Framework as ORM. But my question is: is it correct and possible to map entities between Entity Framework and WebServices?
The question is because we need to query data from a web service (method) to our application, and also we need to consume a webservice (method) to store data; so we want to keep ...
I have looked at http://www.codeproject.com/KB/XML/MTOMWebServices.aspx
and it's seems like a great way of transferring files between servers.
But what If you wanted to upload the file to database?! Do I still need to call database functions on every chunk?
Thanks,
...
Hello, first time here... great site
Well, I want to reference a web service, and it requires user/pass authentication.
In VS 2008, if I try to "add reference", or "add service reference", all I can type is the URL, there's no way to input my credentials. Obviously, if I try to load the ws, it shows me a nice message:
"The request faile...
I'm currently toying around with the Clarity .NET Facebook API but am finding certain situations with authentication to be kind of limiting. I keep going through the tutorials but always end up hitting a brick wall with what I want to do. Perhaps I just cannot do it?
I want to make a Web Service that takes in the require credentials (AP...
I'm working in a iPhone app that needs to send a array as a parameter using SOAP.
this is the current request and connection:
NSString *soapMessage = [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/20...
Basically, I have a regenerated wrapper code for a web service that I need to use; when I run this, it works perfectly and receives the data from web service.
How can I add an already regenerated code from a .wsdl file to another Visual Studio solution as a web service?
...
I'm Looking for Web Service develop(by delphi) tutorials, including the development of services and clients. Thanks!
...
We need to create a simple web service in ASP.NET that can be called from PHP or other languages. This in turn will be used to update records in a database for an item submission.
The core part is fairly simple, we have a base set of fields for the object - first name, last name, birth date, city, etc.
In addition however we need to ac...
I have a WCF service which is hosted on IIS6 on a Win2003 SP2 machine. The WCF service is hosting correctly and is visible over HTTP giving the usual "To test this service, you will need to create a client and use it to call the service" message. However accessing the .svc?WSDL link causes the connection to be reset.
The server itself ...
I am following the example from
http://msdn.microsoft.com/en-us/library/8wy069k1.aspx
to consume a web service implemented (by 3rd party) using the Event-based Asynchronous Pattern.
However, my program needs to do multiple calls to the DoStuffAsync() hence will get back as many DoStuffCompleted. I chose the overload which takes an ex...
In order to show a best match ad each time,there are at least these things to do:
retrieve the main information of the current page
get an ad that's related with the information retrieved above
But the above is almost impossible for a non-search-engine company.
So what's the practical way for a non-google company to approach a best ...
Hello I want to know how to send this array of complex data to a SOAP server (that uses .NET / IIS).
<xs:complexType name="SampleStruct">
<xs:sequence>
<xs:element name="title" type="xs:string"/>
<xs:element name="description" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<x...
I have a web service that I call via ajax that requires the user to be logged in. in each method I want to check if the user is logged in and send a 403 code if they are not, however when I call a Response.End() I get the error "Thread was being aborted". What should I call instead?
[WebMethod(true)]
public string MyMethod()
{
if(...
I've been reading up on REST, and I'm trying to figure out what the advantages to using it are. Specifically, what is the advantage to REST-style URLs that make them worth implementing over a more typical GET request with a query string?
Why is this URL:
http://www.parts-depot.com/parts/getPart?id=00345
Considered inferior to thi...
Hello.
Is there any REST API to upload & host mp3 and audio files and get a direct link like IMGUR API for images?
Thanks
...
I have created a WSDL for my web service. I would like to know how to call it from a jsp page from my another web application.
I would like to call the web service from the jsp.. for example considering i have very simple web service which would display back the text entered in my index.jsp page after clicking submit, how would I use th...