web-services

Fetch XML files from a web service to iPhone faster?

0 I am developing a iPhone App coupled with a .Net Web Service as the Backend. Need few clarifications on the same. The configuaration of my project. SQL SERVER2008 to store the data, .Net Framework 3.5 to provide Web Service interface, Iphone 3.1. The Project Description: The SQL Server will store my data in the form of XMLs. Each X...

How to create a Java web service client in NetBean to consume WCF web service

I try to create a Java web service client in NetBeans 6.9 to consume my WCF web service. There are several problem I have: The WCF uses clear usename security for authentication. When I add web reference (JAX-WS style) in NetBeans, it didn't generate related clear username authentication code and WSDL/configuration. How do I configure ...

Is there a tag or element in WSDL which decides the Web service is Asynchronous.

How to know whether a webservice is asynchronous by looking into wsdl.Is there any tag which which defined the webservice method as asychronous. ...

SSRS: Get list of all reports and parameters in a single web service call?

Short and sweet version: Is there a single web service method that would return the names of all available reports, and each report's parameters? I have my web code (C#/MVC) connected to a SSRS web service, and I am able to retrieve reports through those services. I know I can get a list of available reports like this: var rService =...

How can I find out if a Web service is running or not?

I want to check availability of web service. this is my code that i running a function from web service DataSet ds = new DataSet(); DataTable dt = new DataTable(); NegsoNotifier.WorkItemsService.WorkItemsSoapClient wiservice; wiservice = new NegsoNotifier.WorkItemsService.WorkItemsSoapClient(); System.ServiceModel.EndpointAddress adr; ...

Opinion requested: Web service security using a psuedo-security token service and secure remote password

Hello. Where I work, there's quite a bit of discussion about web service security since we want to retire our (costly) PKI solution. The buzz at the moment seems to be secure remote password (SRP), which seems to promise equivalent resilience without the need for a trusted third-party. The downside is that it is not widely implemented,...

php nusoap script not working

I have a php script using nusoap to connect to a web service on: $uri = 'http://soap.1011.my-online-check.com:8080/avavoip_gate.php?wsdl'; $client = new nusoap_client($uri, true, false, false, false, false, 30, 90); $client->setHeaders($headers); $result = $client->call($method, $args); It works fine on my Mac. However, when I uplo...

HSM - cryptoki - Sessions - Timeout

My application access the HSM via a ASP.NET web service through PKCS#11. I initialise the cryptoki library and obtain a session handle. Web-service hold on to this handle to perform encryption/decryption/signing/verifying in a batch mode. The problem i am facing is The ASP.NET web service time-outs' after 20 minutes. This act- i think, ...

how to use web services list some real usage webservices

real usage web services where i can access through internet ...

Web directory of RESTful web services?

Is there something like a directory, list, search engine, or index of RESTful WS in the web? Edit: What I am looking for is a list or a directory in the internet like this: Yahoo: Maps Service, http://developer.yahoo.com/maps/rest/V1/geocode.html, http://local.yahooapis.com/MapsService/V1/geocode?appid=YD-9G7bey8_JXxQP6rxl.fBFGgCdNj...

jQuery + Webservices: Webservice not returning JSON, only XML

Looks like it just doesnt want to work... @ Webservice: <ScriptMethod(UseHttpGet:=False, ResponseFormat:=ResponseFormat.Json), WebMethod()> _ Public Function LoginDB(ByVal user As String, ByVal pass As String) As String global.user = user global.pass = pass If (<<lots of code to check if user is valid>>) The...

calling webservice in asp.net by Dojo

Dear all I would like call my web service by using dojo,is it possible?would u help me becuze I cant find any useful code for helping me... ...

Where should WCF / WebSerices reside in a Silverlight application?

I'm looking for best practices on where to host associated Webservices/WCF Services for Silverlight applications. One approach I see quite often is to host these services in the same web application project that is used to host the silverlight application. This seems convenient because it unions the two pieces together. However, with ...

What happens when the client of webservice goes down - while the webservice is doing processing

Condition: 1. Client application (windows) sends a message to a webservice 2. Webservice is does some processing 3. Client application exists no more - loses it's state or deleted or down 4. Webservice finishes processing and returns a value What happens. Does the webservice throw an exception? ...

Running an executable as a server-side "script"

I've been currently using PHP on Apache (on Ubuntu) to do dynamic server-side stuff, but is it possible to run a compiled C program as the intermediary? If so, how? I know it's probably not that useful anyway, but I'm curious. ...

Mapping complex datatypes to model classes (SOAP)

I'm writing SOAP web service tests in Groovy/soapUI (the web service heavily takes advantage of complex datatypes). To make my life easier I'm looking for solutions to map complex datatypes to model classes in Groovy. Are there any automated solutions for this task, or do I need to write my own conversions? I'm relatively new to SOAP an...

Good Service Tier Dev & Design: What are the common bad practises in communications tier development?

I am currently researching the best practises (at a reasonably high level) for application design for highly maintainable systems which result in minimal friction to change. By "Communications Tier" I mean web services, service buses and general network transmission technologies. From your experiences, what have you found to be the comm...

Passing XML document to a web service using WCF.

Hi there, I need to pass an XML document to the web service. Is it possible to simply specify a contract with a method, say void Method(XmlDocument myDocument); and implement it in a standard way? I need to keep in my the Silverlight functionality, thus I want to avoid writing the XML to a stream... Is it a good approach? Thank you...

ASP.NET web services using reference parameters in webmethod

I have an issue when I try to retrieve info through a webmethod. I am using a proxy to call a web service, in that proxy I have an operation which returns data using 'out' parameters. The server executes the operation succesfully, giving back the parameters properly instanced (I also have checked the soap return message using a traffic...

WebService asp:ServiceReference(?) generates inavlid html "/// <param name"

Hi, I'm developing an web app in asp.net/jQuery/json Using: WebService: [WebService(Namespace = "http://test/services.internal")] [ToolboxItem(false)] [ScriptService] public class AsdfWebService: WebService { [WebMethod] [ScriptMethod] public string GetAsdf(string bla) { in aspx: <asp:ScriptManager ID="ScriptManager...