Tagged Questions
0
votes
0answers
3 views
How to create a WSDL file and web service for a SOAP reponse
I'm very new to SOAP and web service , here I need to develop a URL/ web service and a WSDL for client system that can receive SOAP response from a server.
For a example I m sending a SOAP request ...
0
votes
0answers
9 views
Concurrent Web Service Requests using JAX-WS
I need to design a solution for my problem. So, Please help me.
My Problem :
We have one Web Project. There we are using four tables called A, B, C, D.
For each table, we had created one front-end ...
0
votes
1answer
16 views
what are the possible ways of two-way communication between web-service and web application
I have a web application and a web-service that needs to communicate with each other. This communication has to be a two way communication because web-application can send events occured at interface ...
1
vote
2answers
33 views
Which Java based Webservice is best for Android Applications
I am new to android. We have java based web services like Jersey, Apache Axis2 ...etc. In my application I am requesting bulk of data from the web service. Which Java based web service is best for ...
0
votes
2answers
18 views
Understanding Spring-WS
I have a project on Spring and i would like to make it a SOAP Web Service.
I have entity, dao and controller and I would prefer not to use Apache CXF.
I read that Spring-WS is contract first. I'm ...
1
vote
2answers
22 views
Android: ksoap, “UnknownHostException:host is unresolved” depending on API
thanks for your attention.
I have a problem on using ksoap2 to call a webservice via android.
I have some function to call a webservice.
public String CallWebServiceFunction()
{
String ...
0
votes
0answers
32 views
Unable to pass “|” in HttpGet() Class
I am calling HttpGet() request using a URI which contains a pipe character or "|" in it (url="..../AddGuestOrders?guestID=1083&strListOfItemsWithQty=19,1|20,1").
It is throwing ...
0
votes
3answers
42 views
Sending POST data to website and getting answer
I have a problem with getting direct link to video. I want to play it in my WebView/VideoView. How to send POST request and recieve answer with direct link from website which decode such things:
...
-4
votes
2answers
26 views
To built a shopping app in android without having actual shopping website [on hold]
I want to built a shopping app in android like ebay shopping app but problem is that
I don't own any website is that possible to directly build a shopping app without having any website,I want 2 ...
0
votes
1answer
25 views
Apache CXF/JAXB Generate default constructor for required elements/attributes
I have just started working with Apache CXF (v2.7.6). I am generating a client for a WSDL using the wsdl2java like:
wsdl2java -client -d src -exsh true -dns true -dex true -xjc-Xdv -wsdlLocation ...
0
votes
1answer
24 views
Spring: WebServiceTransportException: Not Found [404] for very simple WS client
I am trying to write a client for publicly exposed service. I only need to pass raw XML (as Java string) and view raw response. No binding is required.
Service is publicly exposed here: ...
0
votes
2answers
26 views
Why HttpRequest returns NULL while reading for second time?
I am creating webservices in Java using RESTlet API. I am using 2.0 stable version.
In this I am getting NullPointerException error while reading the request for second time.
I have applied the ...
-1
votes
0answers
14 views
Android Writing a SOAP response to a File [on hold]
I have this web service that returns this SOAP response
<ArrayOfMainitem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ...
0
votes
0answers
8 views
Java Web Service error: com.ctc.wstx.exc.WstxEOFException: Unexpected EOF in prolog
I have a problem creating and connecting a Java client to a running Web Service.
I use the following code:
Service myService = null;
URL wsdlLocation = new URL("http://myservice?wsdl");
QName ...
0
votes
0answers
20 views
getting java.net.ConnectException: Connection refused error while calling a SOAP web service
I am trying to call a SOAP webservice in android, but getting this exception:
java.net.ConnectException: - Connection refused
But I am able to hit that webservice wsdl through desktop, its working ...