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...
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 ...
How to know whether a webservice is asynchronous by looking into wsdl.Is there any tag which which defined the webservice method as asychronous.
...
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 =...
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;
...
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,...
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...
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, ...
real usage web services where i can access through internet
...
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...
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...
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...
...
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 ...
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?
...
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.
...
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...
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...
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...
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...
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...