Tagged Questions
0
votes
1answer
10 views
Web Service and Javascript request on the same localhost port
I've got a very simple Axis web service on an Apache Tomcat server (e.g. localhost:9999). I created and run everything with Eclipse JEE.
I want to invoke that web service on a HTML page with ...
0
votes
0answers
27 views
XMLHttpRequest responseXML is always null
I am calling a asmx web service like this
var xmlhttp;
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else {// code ...
0
votes
3answers
50 views
Jquery AJAX POST call return 200 status OK but error
Hi I have implemented one Ajax POST request to call web service. It always return 200 OK but execute failed event I have tried lot of things but I am not getting where I am doing mistake. I am adding ...
0
votes
1answer
24 views
Spell check in Sencha Textarea
I want to have spell check for a textarea field in my sencha app.
The textarea field is as follows :
{
xtype:'textareafield',
id:'txt',
...
0
votes
1answer
36 views
Creating a simple Node.js web service for use with AJAX
I have a basic Node.js http server set up as per the docs, I'm trying to create a very simple web service I can talk to with Javascript (AJAX) which I'll then hook up to Arduino. It's a test piece, I ...
0
votes
1answer
28 views
How to pass data to browser javascript from Spring MVC controller
I would like to pass data from Spring MVC to javascript but I am not sure what is the best way to do it.
Say, in javascript, there an array
var myArray = new Array();
In backend java, there is an ...
0
votes
1answer
26 views
Issue with asmx webservice Date object
I'm parsing Date object to web service using java script as below.
HRA_Create.HelloWorld(new Date("2013-07-08 00:00:00"));
but when i check this Date in asmx WebMethod, display as 7/7/2013 6:00:00 ...
1
vote
1answer
16 views
java webservice is returning xml instead of String: invoked from java script
I am invoking java webservice method from javascript. The method has a return type as string but when I invoke it through javascript the response is not just a string but in xml format as below:
...
-1
votes
1answer
25 views
invoking java webservice from java script: Uncaught SyntaxError: Unexpected token < in chrome
I am trying to invoke a java webservice method from the java script . The webservice method returns the String type but when invoked through java script it gives the following error in the chrome ...
0
votes
1answer
26 views
Why we use web methods of web services, instead of web form funcions
There's a period of time that I changed my web programming method.
I develop my functions as web methods in some Web Services, then I call them in my website's UI using javascript.
My question is why ...
0
votes
1answer
46 views
Calling multiple web-services - Node.js vs green threads
My webserver has to make calls to 3-4 web services. I was going to implement it in Node.js, but was considering gevent since I'm not a huge fan of callback code. I understand that green threads are ...
0
votes
0answers
11 views
retrieving simple Jason post data from a WCF service?
Guys i have client side program(it's in JS & html) which sends data to wcf service using jason from ajax. i need to know how to retrive theses jason data from the WCF service??
client side code
...
0
votes
0answers
22 views
SSRS WebService call throught library (DLL)
I am working on a software that contains javascript/HTML pages. I wrote a C# program that calls SSRS 2008R2 WebService methods. I tested it and it works. I tried to integrate that program on a ...
4
votes
2answers
70 views
How to pass Dictionary<string, string> variable from code behind to asp.net?
Im trying to pass public dictionary from c# to asp.net.
Here's my code:
Code Behind:
public Dictionary<string, List<string>> dict = new Dictionary<string, List<string>>();
...
0
votes
2answers
25 views
Checking jquery `success` method parameter issues
I want to console.log the values of jquery ajax success method.
$.ajax({
type: "post",
url: '/CalculateTime.asmx/GetServerTime',
data: "{}",
contentType: "application/json; ...