Tagged Questions
0
votes
2answers
31 views
Access Webservice from another Application
I have an WebService in C# and I want to access this webservice from another application.
Ex. Have one webservice running in localhost and i also have a website running in localhost, and this two ...
0
votes
1answer
22 views
Mouse event for two elements, one above the other
If I have two elements, one above another, would I be able to recognize click events for both elements? I've been looking around stackoverflow and have found pointer-events:none, but that passes the ...
-2
votes
1answer
29 views
Data stores in JavaScript or Jquery?
I am developing a site which retrieve few lists (like country, product, industry) from share point using a soap call, and load the drop-downs. Later there are few filtration and reload of country ...
0
votes
2answers
22 views
sending an array by GET to a web service with jquery
I have this form:
<form action="#" method="post" id="cen" runat="server">
<table>
<thead>
<tr>
...
6
votes
1answer
425 views
jQuery AJAX SOAP based web services and CORS (cross origin resource sharing)
I have for a few weeks now been trying to get one of my jQuery AJAX SOAP based cross domain web service to work from a jQuery plugin I have written for one of my customers.
Most of the research I did ...
-1
votes
2answers
38 views
send email with web service
I want to ask if any one know how to send email with web service?
I mean, I have a App, and I will ask the user for one mail and a message, and I will resend that message to the email that the user ...
1
vote
0answers
22 views
Turn key replacement for Iframe system
Not really sure how to ask this question because I have a feeling it might start a debate.
Currently my company uses <iframes> to embed an e-shop on affiliate sites but they want to make the ...
0
votes
1answer
37 views
Web service Spring ajax call
I'm trying to call a web service with ajax. The service is up, and it can shows the result on the RestClient on firefox, but, in mi application call, gives me Status error "Pending".
This is my ...
0
votes
1answer
30 views
jquery client restful service jax rs
I'm trying to call a restfull web service with spring mvc and jquery. The service is up, but i think that my jquery call isn´t correct. In the network javascript console I have a status code : 200 ...
0
votes
2answers
40 views
JavaScript runtime error: NetworkError
I'm having problems with my web service, I can't use it from a remote place.
this is my code:
<script>
$("form").submit(function (event) {
event.preventDefault();
var result = new ...
1
vote
0answers
28 views
calling web service using jquery when web service created with servicestack
I have a web service created using ServiceStack. I am trying to consume in asp.net using javascript / jquery.
Below code is what i tried.
$(document).ready(function() {
$.ajax({
url: ...
1
vote
1answer
160 views
__EVENTTARGET is undefined
I have a web page(.aspx), on which I'm loading some user control by jQuery ajax.
Something like this:
$.ajax({
type: "POST",
url: "WebService.asmx/GetGrid",
data: ...
0
votes
1answer
38 views
Web method with ajax
I am facing a really strange situation. I have a JavaScript file :
/// <reference path="jquery-1.8.2.min.js" />
var compte = 0;
var poste = [];
var posteselectionner = [3];
$(function () {
...
0
votes
2answers
39 views
Passing List<Guid> as web service parameter
I have a web method that takes in List as parameter. jQuery ajax call passes the guids fine. However, the webservice has the correct amount of items in the list, but all items are empty guid.
Here's ...
0
votes
0answers
15 views
Calling asmx web service using jQuery
I'm trying to call a .NET asmx web service using jQuery. I've been using guides here and here and as far as I can tell I've followed them to the letter.
Service Code:
[WebService(Namespace = ...