Tagged Questions
5
votes
0answers
298 views
How to use one proxy in javascript AJAX using SOAP the same as WCF Test Client use
I have WCF web Service and javascript client which connects to this service via AJAX using SOAP 1.2 . What i wanna do is to pass some parameter to tell the AJAX SOAP call to use only one proxy the ...
2
votes
0answers
132 views
Upload an image from mobile web app (PhoneGap & JavaScript) to a SOAP web service returns status 0
I have seen many examples and forums but it's not yet clear for me.
I want to take a picture with a mobile then send it to the WebService.
In the WebService I have a function UploadImage that saves ...
2
votes
0answers
102 views
Javascript library to create MTOM SOAP messages
Can you introduce a javascript library in which we can create a SOAP request and add attachments to it as well?The library should be able to do the following:
Create a SOAP message based on WSDL
...
2
votes
0answers
70 views
Result class name isn't appear on SOAP result
I have a WCF service. I call its methods using SOAP 1.2 with jQuery
I call a method which suppose to return the following class:
namespace ConfigComWrapper.ConfigCom
{
public class ...
2
votes
0answers
534 views
Using jQuery in Apple Instruments, UI Test Automation
Is there a way to use jquery when scripting in Apples UI Test Automation. When, in Intruments, I try:
#import "jquery-1.4.2.js"
I get a warning regarding undefined object window, which is expected ...
1
vote
0answers
2k views
How to consume this wsdl webservice using Javascript client (assume cross-domain issue is no problem, ignore that issue)
i'am a newbie, and i need some help..
Here is the offline wsdl file about webservice: www.mediafire.com/?23266wtqkewbugc#1
And the online wsdl ...
1
vote
0answers
186 views
AJAX SOAP request - Safari changing POST to OPTIONS
I'm trying to send a SOAP action from a js running on my local machine to another device on my network. I notice that Firefox is successful, but Safari changes the header to say OPTIONS instead of ...
0
votes
0answers
10 views
Javascript soap envelope for axis 2 webserver
<script>
getmarket.open('POST', 'http:// server:1010/ProjectName/services/Hello', true);
var m_request = '<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
...
0
votes
0answers
23 views
What Kind of WS we can consume with JavaScript
I know how to use Restful WS with JavaScript. I am wondering is it possible to consume SOAP WS on some easy way or I need to make XML file (envelope) by my own hand which I could use to communicate ...
0
votes
0answers
54 views
Javascript SOAP action in sharepoint
Im tyring to run a basic javascript soap action on a content editor web part in sharepoint but it does not work. If I take the code out of sharepoint it runs fine in IE, why would this be?
<button ...
0
votes
0answers
121 views
javascript - jQuey SOAP client issue
I've been working on the following code and it seems to not work can anyone tell me the bug on it, by the way I've tried to change SOAPClient.Proxy to "http:localhost:****/axis/*****/g*****.jws" , ...
0
votes
0answers
138 views
Javascript SOAP XMLHttpRequest - Root element is missing
I've been working in making a cross-domain request to a WS, with javascript, using a XMLHttpRequest. I used a proxy to bypass the URL so the browser security allows it.
The problem now is that I'm ...
0
votes
0answers
158 views
consume WCF service with javascript SOAP request
I've got a WCF service and i have to consume it by using a JavaScript SOAP request. The JavaScript is part of a Phonegap application so I don't run this JavaScript from a local server but from a file.
...
0
votes
0answers
142 views
Java Script based soap client - (unauthorized) 401 Error
I have written a basic HTML page consisting of submit button , on button press a SOAP request will be send to my application URL. Below is the code i have written , i have face a 401-error.How can i ...
0
votes
0answers
95 views
Cross Domain SOAP request (php soap not an option)
I am trying to implement an API from my site to another. This API relies on SOAP requests and responses. My hosting company (fatcow) does not offer support for PHP Soap but only PEAR SOAP. I have been ...