web-services

What's the best programming language for large SOA system?

I am working on a relatively big system with: low level C++/C codes dealing with multimedia data(video/audio) a lightweight database, preferably MySQL but I am open to other better alternatives RESTful web service as the front end All the requests will be handled by RESTful interface, low level C++/C codes dealing with the real hard...

Is it possible to Consumes Sharepoint Webservices(SOAP-based) into ORACLE DB using PL/SQL

We have a requirement to store Sharepoint List Data into Oracle. Is it possible to Consumes Sharepoint Webservices(SOAP-based) into ORACLE DB using PL/SQL, like to access _vti_bin/lists.asmx?op=GetList and parse the list data and store in the DB. Has anybody tried this ??? Are there any things (Security, environment) things to consider...

C# Web Service and using a variable

I need to create a project for multiple web services using WCF in c#. The web services will be calling other assemblies to perform the core processing. The assemblies will be accessing data from SQL Server. One of the parameters that will be part of every web service method will include the database to use. My problem is how to pass ...

where do I set the web-service host name for an EJB3 client

Where do I set the web-service host name for an EJB3 client, when the web-service client is injected. ...

Multiple return type in Jersey Client request

Hi, I'm using Jersey Client API in the following way :- User user = webRsrc.accept(MediaType.APPLICATION_XML).post(User.class, usr); So I'm expecting the response in object of User class which is a JAXB annotated class. However, at times I might also get an error xml and for that I've created a JAXB class ErrorResponse. Now the pro...

How to start a WPF application from a web service ?

Hello all, a web service is running with IIS. When calling the initialize service, some libraries are dynamically loaded in order to start a wpf application. The code compiles, runs... but the window never shows up. No exception is thrown whatsoever. Below is the code that is executed to create the WPF application: public void Start(...

Calling SOAP webservices runtime in ASP.NET

How can one call SOAP webservices from ASP.NET code in runtime and not by adding them as a reference/web-reference in compile time. This is assuming that the application is aware of the list of web services url, the methods and parameters required to call each of the URLs. Thanks in advance Vijay ...

Multi Tiers / Multi Layers system equals to a tightly coupled system?

Hi, I find that whenever I create a layer/tier, I have to translate between one layer to the other, does that mean it is a tightly coupled system? If I was to change a business logic, remove a field in the database, etc, I would have to change ALL layers from the database layer to the client front end? E.g. A web service that exposes...

role-based methods for one web service?

I am trying to set up a (for now) really simple web service. By simple, I mean it only has a small amount of actual work to do on the code-side. It only really has one method/function: the client sends a user login, and the service responds with an otherwise very secure detail about the user (for the purposes of this question, let's say ...

can session data be passed anonymously to a web service?

The Google API (or things like calendar and Docs) has a handy feature where any code can point to a generic URL and get the info for the user currently logged in to that session. I would like something similar, but without relying on OAuth or RESTfulness, or user-approval via token. Essentially a user will log in using the same authent...

Objective-C Soap Proxy Generator similar to whats in .NET

Hi, We have a contractor doing an Iphone native app in objective-c. They need to call some of our web services to get data. Is there some kind of proxy generator for obj-c that will create native objects that call web services? C#/.NET has this built in--you just add a service reference in visual studio or you use a command line tool...

Server to Server Web Services

What can be used for Server to Server Web Services, SOAP or JSON. I know you can use JSON for Browser to Server, but I'm not sure if you can use it for Server to Server. One server is using Apache and the other is using IIS. Thank you. ...

web service and Triple DES Algorithm in .NET

I am making a web service that the data has to be Encrypted, I have it working with a string but the device that are going to be pulling the data from the web server will be looking for something that is xml base. I try a dataset that is the correct format but still the Triple DES function will only take a string. Let me know if there ...

Trying to connect to a "digest authentication" webservice using HTTParty or Net:HTTP (or etc)

I have been trying to connect to a web service that is using digest authentication. I am able to connect in Safari using user:[email protected]/endpoint I have tried in Ruby and Rails to connect using HTTParty and Net:HTTP using the "basic"auth" options, but have not had any luck. Wondering if the HTTParty/Net:HTTP "basic_au...

Book to know more about XML Web Services in ASP.NET

Hi all, I am involved in a project with UI comprising mainly of Action Script. My role as an ASP.NET programmer is to pull data from DB using Web Services and supply it as XML to the Action Script. It would help me immensely if I could learn more about XML Web Services in ASP.NET. I searched for a new book in this topic but couldn't fi...

@WebServiceRef in managed bean don't work

Hi, I have created simple JSF page and managed bean for that page. I'm using Eclipse 3.5 SR1 ("for Java EE Developers" version) and Glassfish v2.1. Here is my page: <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%> <html> <head> <title>Simple page</title...

In which layer should webservices be consumed?

I am building an ASP.NET 3.5 Web Application which has the three standard layers (DAL,BLL and UI). I have to consume some third party web services and display the information on the UI. In which layer should I consume this web services and can you also point me to some good examples? ...

ASMX Web Services: Where can I see SOAP and WSDL generating by the platform

Following reference indicates ASP.NET automatically creates a WSDL and SOAP request. Where or through what I can see the nuts and bolts? http://www.w3schools.com/webservices/ws_example.asp ...

Simplest Technology for Distributing Web Servces

Is there a way to meet the following criteria in distributing a web service to Windows machines? 1) Automatic installation and configuration of web server 2) No configuration (or even awareness) of a web server required by the customer 3) No prompts to download and install JAVA or .NET - especially anything after .NET 2.0; those insta...

Provide API for my website

Hi, I'd like for anybody to be able to register to use my website's API (like facebook apps registration, to get the application key and secret) What 3rd party library can I use? (to be integrated into CakePHP and Restlet(java) preferably)? Thanks ...