Hi all,
i have a webmethod with the signature:
public string SubmitQAResults(int suppId, int result, int[][] qandAs)
I want to use jQuery to call this webmethod. What would it look like? thanks!
...
Edit: Sorry guys, realised I have no idea when it comes to integrating Webservices in Java. Was hoping someone could point me in the right direction.
Original question: Hey everyone, I was wondering if you guys could point me in the right direction for this. I am required to find out how to inject data into an XML being created. I am u...
Hi guys,
I am working on an iphone application. Application uses .net web service to perform an operation and return the status either "Success" or "Failure".
I am getting this status in xml parser didEndElement like
if( [elementName isEqualToString:@"OperationStatusResult"])
{
}
I am trying to show an UIAlert view if status is fai...
I have a reference to a web service on a remote server like such...
http://10.5.1.121/PersonifyWebServicePPROD/UniversalWebService/default.wsdl
The moment I invoke the web service and view its URL property it looks like...
http://localhost/PersonifyWebServicePPROD/UniversalWebService/default.asmx
Can anyone tell me why it's overwri...
I have a scenario where my application is going to be publishing services that are consumed by both PC's and mobile devices, and I have a HTTPModule that I want to only perform work on only the mobile requests. So I thought the best way of doing this was to point the mobile requests to a different file extension and have the HTTPModule ...
I have a fat VB.NET Winform client that is using the an old asmx style web service. Very often, when I perform query that takes a while or pass a large amt of data to a web service in a dataset, I get the subject error.
The error seems to occur in < 1 min, which is far less than the web service timeout value that I have set or the timeo...
Hi. I got .asmx a web service on my app. I need to call a method from an other app to get statistics from my app. I need it to return XML. the call to the webmethod is done with javascript soap.
EDIT
I got the web service working. I can execute code and return a string but it stops there. When I try to pass parameters into the method i...
i wonder what programming language vark.com is written in?
both for their website and their messenger service?
thanks!
...
Hi,
I was wondering if it is possible to make a generic webservice method in java like this:
@WebMethod
public <T extends Foo> void testGeneric(T data){
However when I try to consume this with a Java client I get an error stating:
[ERROR] Schema descriptor {http://####/}testGeneric in message part "parameters" is not defined and co...
I'm trying to send an array of objects wrapped in an array object wrapper to a WS via JSR172 WS calls. Using the generated stub, I'm able to download objects from the server, but I'm not able to upload objects to the server. This currently happens on all simulators in house.
This is all the information I can get out of the server exce...
I have ASMX services for my web application that I would only like available to the same application.
Is there a way for the web service to only be accessible by the same application, such as relative/absolute path restrictions?
...
I am working on making use of a Web Services API offered by the hosts of our internal system. I am accessing it via PHP with the built-in SOAP offering.
The API session is initiated by a remote call to a function that returns some session tokens; every call to any function thereafter will return a new session token, which must accompany...
What are the advantages of using an ESB instead of directly accessing a database (via Hibernate or JDBC). I know you can reuse the messages on the bus, but could you not just package up your database access code into a jar and distribute it to the different systems that need access (Assuming all the accessing systems support Java)?
...
Is it possible to update an infopath field with the result of a call to submit to a webservice? We have an infopath form used to create items in the database. I would like to add a read only field for the id (primary key) of the item in the infopath form which is filled when the form is submitted to the webservice by the return value. ...
Problem:
(Solution at the end)
I got a Silverlight App with-in a Web Project
Web
Silverlight
The web contains a service:
[WebService(Namespace = "svChat")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
//[S...
I am attempting to call a Web Service (created in PHP) from my C# application. I have successfully added the Web Reference in Visual Studios, however I cannot figure out exactly how to invoke the call to the web service. I have been following this tutorial: http://sanity-free.org/article25.html however when I try and compile I get a "The...
I want to write my first REST web service using the .Net framework. I've seen fairly passionate comments from various people about which is best and have even found some differing comments from Microsoft.
My web service should be fairly simple: I want to expose bus timetable information. I figure the resources I will be concerned abou...
Just wondering if something like this exists ... or if there is something I can plug into a Rails or ASP.NET webapplication
...
I have recently published a web service to my site through visual studios ... I was so dumb to select delete existing files option ...
Can anyone please help me out how do i get back my deleted files from the server...
...
I have a requirement where a web service call should be fired from the flex side and this web service is an async web service which would return more than one response.
In current Flex environment that I have worked in , when we call a webservice - we get a single response corresponding to that web service, but how take ma...