I am Making an Iphone application which is web-service enabled. Also I have skeleton of this application.I am using rest to feed the contents of view controllers. When application is launched it is presented with Login page asking username and password. Clicking Login button sends request to server and in response xml data is fetched. Th...
Hi All,
how to write a webservice client ?i have just .xsd file with me and the url of the server.How to start with?
I dont have wsdl with me.
...
I am in the process of designing a server side webservice dll which will be accessible by developers from other companies to access data on a central server.
the issues i need to consider are
- ensuring they only see the data which they are allowed to see
- allowing them to upload/ download files. again only ones they are allowed to.
I ...
Could someone please recommend a suitable FOSS Java technology for developing a webservice with these requirements:
Needs to query an Oracle database, return XML data, and support rollbacks (so probably would have to maintain state in some way).
Currently I have a webservice written in PHP, but I've found PHP's support for SOAP limitin...
I am trying to consume the Exchange 2010 Web Service interface using JAX-WS. I'm using JAX-WS 2.2 RI (Metro 2.0). 2.1 exhibited the same problem.
I am running into trouble with Exchange, which returns "HTTP/1.1 415 Cannot process the message because the content type 'text/xml;charset=utf-8' was not the expected type 'text/xml; charset=u...
hi i have developed an j2me application, which uses these api's:
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ChoiceGroup;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.TextField;
import javax.microedition.lcdui.List;
import javax.microedition.lcdu...
I have a problem with web services. They are programed in Java and are running on a WASCE server ( both are on the same server).
My problem that i want to solve:
We have two Web services: App1 and App2
In App1 i want to call a function that is in App2. How can i do this? Is this even possible?
I tried creating a soapClient inside the Ap...
i am developing a application to make reservation and searching on www.hostelclub.com from my website. for that i have got a library and API Document. but both are in php. please give me a download link from where i can download it API library and docuemnt.
...
There is one controversy I see in using Web APIs (RESTful service) to access remote infrastracture. I would be grateful, if you could comment it. The recommendation coming from the article "RESTful Web Services vs. "Big" Web Services: Making the Right Architectural Decision" [1] is to use Web APIs rather for ad hoc integration (a la' mas...
I am trying to upload a document from my local machine using the Copy.asmx webservice, the CopyIntoItems method. I can successfully upload the document and a DateTime property but I cannot update a lookup property of the document library. I am using MOSS 2007 with sp2
The code I am using is shown below:
string[] destinationUrls...
I have to build two web service applications to be deployed to different servers (WebSphere 6.1). One of them is “linked” to another by calling its services, so the first web service application should be aware of the endpoint URL of the second one.
Those applications are working in different environments: Dev, Test and Production.
I h...
We have some ASP.NET Web Services that fail under this perfect storm of conditions:
IIS7
Dynamic Compression is turned on
Web Service call is Asynchronous
If it is IIS 6, or we turn Dynamic Compression off or call the web service synchronously, it works fine.
It fails in the call to SoapHttpClientProtocol.EndInvoke(IAsyncResult as...
I want to let anybody to create user into my site, so I tired create some dummy user scaffold and use curl -d "user=dummy" http://localhost:3000/users ,but this not work. How to accomplish this kind of task.
...
I'm writing a RESTful Java server with CXF framework.
How do I can write a @Path Regular Expression in order to obtain any URI finished in "/action" value?
...
I'm getting InputStream of attached file by web service.
When the user attaches an empty file,
the input stream is not empty, but contains the header of the file (taht can be image, video, zip and others).
When I read inputStream.available() I get 11 - the size of the header.
I believe that for every type of file there is different heade...
Hi All,
I am trying to call a Soap request using C# for a WSDL created in Axis Servlet.
am sending the Soap Request through MSXML2.XMLHTTPClass xmlHTTP = new XMLHTTPClass();
But i am getting a error as follows:
"Fail to find the matching request according to wsdl, please check the request line and the SOAPAction and the operation name...
Currently I’m having some difficulties with using new Magento's soap v2 from c# interface.
With php i was able to do something like this:
$params["created_at"]["from"] = date("Y-m-d H:i:s",Functions::convert_time($dataDa));
$params["created_at"]["to"] = date("Y-m-d H:i:s",Functions::convert_time($dataA));
MageInterface::getSingleton()...
Hi guys,
I am using sql server 2008 which is communicating to java web service which is communicationg to asp.net application.
I have written stored procedure as follows:
create procedure abc(@intA int,@intB int,@intOutputParameter int output)
as
begin
insert into tbluser(A,B) values (@intA,@intB)
/*where B is fo...
I'm having some problems with a Windows Mobile 5.0 client application running under the .NET compact framework synchronising data with a asp.net 2.0 web service.
Here's a list of the steps that are performed, followed by where I think the problems are occurring:
Client collects local data from its SQL Compact Edition database that doe...
How we can call webservice from html page using javascript
...