I am trying to run the following code to call a webservice from ruby but get an error 'SSL not supported'.
I have httpclient 2.1.5.2 installed.
require 'soap/wsdlDriver'
def validate_certificate(is_ok, ctx)
cert = ctx.current_cert
unless (cert.subject.to_s == cert.issuer.to_s) #check the server certificate only
is_ok &&= File...
I have created a java web project to make a servlet. However, it used to work fine before i reinstalled it. the Web Service reference doesnt not show the operations and gives the following error:
javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found
at javax.xml.parsers.Doc...
I want to start a rather time consuming process using a web interface, so I obviously want it to run in a background (daemon) process and I'd also like to have a progress bar using AJAX or sth like that.
My idea was to have a daemon listening for requests on a given port. The browser would then send a request with the task parameters an...
I have create a LAMP based service on a shared hosting provider. It has now grown and I want to move it on AWS EC2. I have already ported the code and the data, set up ESB for the persistent content, set up an AMI image that boots up fine and has tested the solution on EC2.
I want now to redirect my DNS to the EC2 instance(s) IP. I have...
I am working on Silverlight client to Microsoft Team Foundation Server. I am using an ASMX web service to make the actual calls using the TFS api.
Everything works fine when I run it with the visual studio development server, but I cannot figure out how to deploy the app to IIS.
I can get the ASMX web service to work unless it is a ca...
Hi.
Do you have an example on how to populate an SIMILE/Exhibit from a ASP.NET webService?
I need to return records from a SQL database.
Here is my webservice (Exhibit2.asmx):
<System.Web.Services.WebServiceBinding(ConformsTo:=WsiProfiles.BasicProfile1_1)> _
<ToolboxItem(False)> _
Public Class Exhibit2
Inherits System.Web.Services...
I'm trying to deploy some web services in a WAR application on JBoss 5.1.0.
I have created the source files from an existing wsdl using JAX-WS tool wsgen. This created the Service files and @XmlType annotated clases that would act as request and response wrappers.
This classes worked well on JBoss 4.2.3, but when moving to JBoss 5.1.0,...
I'm trying to call a rest webservice provided by a lims system (basically a chemistry lab database + interface). It was working great until some > ascii characters showed up (specifically characters with circumflexes, umlauts, etc.)
When calling the webservice passing the value àèïõû I have the following argument:
&componentValue=àè...
Does anyone know any web service that I can retrieve information about soccer games?
I want to create an app to show this info.
...
I have a web service, code generated by JAX-WS RI (JAX-WS RI 2.1.1-b03-) with one method addroute. I can see the web service in the list of deployed services (http:///jbossws/services) and using that wsdl I can access the method addroute from outside jboss, using curl and soapui.
however when I try to access the web service from with...
How many types of technologies/frameworks are used to create web services? I know only of Java and .Net frameworks. Are there any other technologies that support creation of web services?
...
I am migrating a Java RMI application to Java Web Service (school assignment) and I've encountered an issue...
Currently my Java Server creates an instance of the Remote Object, this object has a constructor and takes a parameter (int ID) which tells it which database to load in memory - works like a charm ...
Now, migrating this to We...
I have exposed one web service (Service Interface to access my application), What are the different ways to create/implement web service security?
Could anyone please suggest some idea?
...
My system has 3-4 web services which communicate with each other via UDP, so on start each Web Service needs to start a UDP listener thread, can this be done in the constructor of the Web Service itself?
I've done some reading (not sure if it is correct) and noticed that sometimes people refer to Web Services as "stateless" and mention ...
Hi,
I have a query regarding sending secure data over the network in iPhone.
What should be used to secure credit-card, bank acct# etc. information which is sent over wireless network.
Is there any difference in methods if we use a native-app or a web-app?
Are there any direct APIs available for this?
Any tutorial will be really he...
Hi,
This is about a tangled cluster of XHR and WebMethod (asmx). The pattern is simple, I make calls via XHR to Webmethod, but it seems WebMethod are sync not async. I just need to make this transition asynchronous. I am searching and searching (might be not good in search) but couldn't find anything that can resolve this mystery.
Here...
I'm building Silverlight applicaitions using Prism and MVVM.
When calling WCF services on your own server, or even external webservices like the Bing api, would this be done from the Model? or from the ViewModel, thus making the service the Model?
...
Hi,
This is a newbie question... I want to create a service which responds to emails sent to it.
Just to illustrate. If a user sends an email to [email protected] with some instructions, I want a program at example.com (which is a domain I own) to read the email and act accordingly.
I strongly doubt I can do this with standard we...
I am about to develop a windows applikation which need to communicate with an Axis2 webservice using Web Service Security - all the documentation says is, that the SOAP security communication is configured to TIMESTAMP, SIGNATURE, ENCRYPT and the the certificate of my company must be installed in my keystore and the SOAP client I am abou...
I have a web method in a web service (in .Net 2.0) which takes in an XmlSchema object as a parameter.
When I add a reference to this web service in my application, it shows the parameter type as "WebServiceNamespace.XmlSchema" instead of "System.Xml.Schema.XmlSchema". and I cannot make a successful call to the method.
It is a web servi...