Lets say; I am developing a Web Application which talks to a RESTful web service for certain things.
The RESTful web service isn't third party, but is being developed parallely with main application (A good example would be, E commerce application and payment processor; or Social network and SSO system).
In such a system, acceptance(c...
java.net.SocketTimeoutException: Read timed out
at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:701)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
at org.a...
Hi. I saw this post with a proposed solution:
http://stackoverflow.com/questions/497209/how-to-set-up-a-wcf-client-using-wsdualhttpbinding-in-code
but is not clear me what it is refering to as the CommServiceClient when talking about creating a service client. Some example?
...
Our core server is calling out to a soap web service over https on a number of different servers to confirm that a transaction has completed.
The code is dotnet 3.5 (vb) and works for the various callback services we have set up until we just moved a new one into production and it is refusing to communicate, giving the following error:
...
Now the case, I want to develop a iPhone apps/web apps using Phonegap. Ok, imagine the app can do all sort of thing include data processing, transaction, login, video streaming, display data from the web services, so to do this I need use JavaScript (Ajax) to call the web services, then only put it into the HTML?
HTML5 now come with sup...
I venture that most but not all web services today are synchronous. A fundamental design decision existing if to implement asynchronous processing.
Is there value in implementing a processing queue system for asynchronous web services? It is a MOM/infrastructure decision with which I am toying. Instead of going system-to-system imple...
Hi guys
I knew that you can develop customised code to generate pdf report via SQL Server Reporting Services (web services API).
My question is: can you utilize the same mechanism to convert any HTML code into pdf file?
My team lead wants me to convert html to pdf in this way to try to utilize the existing report services reference.
...
Hi folks
i am beginner of creating web services in java.i saw there are many ways create webservices in java.i am confused by seeing that and all .pl help which one is better.
i am using myeclipse ide.
Thanks in advance
Aswan
...
I am testing my web services using the Http Resource Test plugin. For that I need JSON stubs for my web methods. Is there any way I can automatically generate them. For primitive types I can do some regex based replacements in notepad++ on the function signature. But when custom types are being passed as arguments, this requires alot of ...
Hello,
I'm in the process of creating a build mechanism that will automatically minify and combine a certain set of JavaScripts.
The problem I'm facing is that to actually incorporate these web services, I need to get that content somehow.
I'm aware that it's tentatively possible using the WebClient class and invoking the actual URL, ...
Hi there, I have a .CSV file and was wondering if there is any process on visual studio or visual web developer to convert it into an XML file and then send it to a Web Service? Thanks for your time.
...
Hello All
Few years ago I had create a web service in dot-net 1.1 and deployed it in many application which are developed in dot-net 1.1 and 2.0. Now i want to convert this web service in dot-net 2.0 with some changes. My problem is i can't changed reference and build applications again where i had deployed this web service. Please tell...
I am trying to make a simple web service with the following XML schema as response to some operation.
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="TResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="STATUS" type="xs:string" minOccurs="0" ...
I thought there would be lot more info/tutorials on this one, but some how I'm not able to figure out how to call an async web service using Java. The web service in question may not necessarily be a Java web service. I only have access to web service's run time WSDL.
Any pointers will be greatly helpful.
Also would it be possible to dy...
I am running Windows 7 Professional 64-bit with visual Studio 2010.
I have installed the Microsoft Speech Platform - Server Runtime v10.2 and the en-US language packages.
I created a Web Service (Web Application) using Microsoft.Speech. In my test the Web Service receives a string and simulates the recognition based on some grammar ru...
I need to know the mechanisms and flow for starting up Hudson, so I can figure out what's wrong. When you type in
nohup java -jar $HUDSON_WAR > $HUDSON_LOG 2>&1 &
(using real values for those variables, of course), what exactly happens? I've been a software engineer for 10+ years but mostly in embedded, and web services are out of my...
One of the field in my web service method accepts DateTime value. Once service user provided value in wrong format: "31-10-2010" (or probably it was "31-10-10", to be honest: I not sure, are implementing logging right now). It is "dd-mm-yyyy" instead of "standard XML datetime been "yyyy-mm-ddTHH:MM:SS".
The problem that instead of rejec...
I want to check raw data string (raw xml) received by my web service methods (for logging and debugging purposes).
I saw recommendations: to handle 'BeginRequest' event in HttpApplication. But I don't see which field of 'Request' object contains this POST data?
...
I'm using the following attribute on a web method in a web service:
[WebMethod(CacheDuration = 60)]
Is it possible to make the CacheDuration value of 60 configurable from a web.config setting?
Or is there another was to set CacheDuration not using an attribute?
...
Hi, I have a webservice I need to call via a link. The webservice returns a pdf document and takes a document Id as a input parameter.
Under normal circumstances I could have the link call some code in the code behind which in turn calls the webservice.
However the difficult part about it is I can't add code to the code behind. The rea...