web-services

Is Web Service suitable for ETL purpose?

Hi, My company is considering using web service as mean of ETL process. However I don't think web service fit into this purpose, for several reasons: 1. web service could possibly consume a lot of memory when generating large xml. 2. xml is a bloated format. 3. possibly time-out if the server takes huge amount of time to generate data 4...

.NET application server

Are there any .NET apllication servers (like JEE ones - JBoss, WebSphere and alike) ? ...

Public SOAP Web Services

I need some public Web Services to list and analyse them. The services should not be secured by password or some key. ...

How to pass data from client to server when using gSOAP ?

I am trying to exchange data between client and server using gSOAP. Actually, I succeeded to send data from client to server but not from server to client. So, could someone please explain what functions to use to pass data from server to client? Thanks for your time and replies, ...

What is the difference between soap_new() and soap_copy()?

What is the difference between: thread_envs[i] = soap_copy(&env); and thread_envs[i] = soap_new(); Sould we use one of them or both? ...

How to call an Oracle procedure with Date input from Java-based webservice?

Right now I have an Oracle stored procedure with IN and OUT params. The IN params are simple types and collections (customType as table of customObject). The OUT params are a REFCURSOR and some varchars. The thing is: when I send some data-formatted strings to Date IN params, it throws at me this: java.lang.IllegalArgumentException: Tim...

Can't consume ASP.NET Web Service from jQuery

Here's an interesting problem: I have some jQuery that looks like this: $(document).ready(function() { $.ajax({ type: "POST", url: "http://localhost:63056/Service1.asmx/PrintOrderRecieptXml", data: {"CouponCode":"TESTCODE","Subtotal":14.2600,"ShippingTotal":7.5000,"TaxTotal":0.0000,"GrandTotal":21.7600,"Ord...

Mapping domain objects to web service proxy objects in Java

Hi, I am trying to find a way for mapping domain objects to web service proxy objects, generated by various Java web service stacks. Both the web service (.NET) and the Java code use implementations of a particular specification. The specification is meant to provide very detailed description of domain classes, which should be implement...

Where to find a good tutorial and examples of CSOAP?

I started to work with CSOAP (see http://csoap.sourceforge.net) and when searched on google, I didn't find a good tutorial of CSOAP. Could you plz direct me to anything relevant from where to start? Thanks! ...

How to upload image with some paramerers.

Hello, How to upload image with some paramerers.Server has one webservice which has some credentials and it uploading image and write parameters in log file.I write some code but not getting success On server side one . html file which is calling in url and this .html file calling one script which is written in .php and this php taking...

Website as storage for multimedia needed

I've developed an excellent social network in Flash. Now I need a site for downloading/uploading of photos and video. Of course, all uploading must take place on my web site, well, so does downloading. Could you recommend such a site or sites that will let me do the job in return for advertising their site on mine or for money (but not t...

Porting a servlet to a web service - accessing the context?

Consider a simply servlet: // MyServlet.java protected void doGet(HttpServletRequest request, HttpServletResponse response) { UtilClass.doSomething(getServletContext().getRealPath(SOME_FILE)); } And the utility class does something with the file: // UtilClass.java public String doSomething(String filePath) { File f = new File...

need to call soap ws without wsdl

Hi Guys, I am new bie to web service. This web service is provided siebel guys. I need to call one web service. My client provided me following details. Here is the SOAP. For prod use this as you endpoint: http://myhost%3Amyport/eai%5Fanon%5Fenu/start.swe?SWEExtSource=SecureWebService&amp;SWEExtCmd=Execute&amp;WSSOAP=1 Request: <soa...

BPEL variables initialisation

Is it possible to initialize BPEL variables at the declaration ? if so how ? declaration example : <variables> <variable name="offer" type="xsd:float"/> <variable name="response" type="xsd:string"/> </variables> ...

ASP.NET Consuming Webservices and reading the Soap Message

I am having difficulties Understanding and consuming Webservices in asp.net . i've created some Webmethods to be exposed , and tested them using the (Namespace = "http://tempuri.org/") and then i created a simple client application , that calls one of the functions through passing it as the "action" parameter in the form tag , something ...

Web service construction toolkit / wrapper for PHP?

I am developing a number of Web Applications and CMSes - and have old ones - that I would like to enrich with a RESTful API: The possibility to programmatically access library functions like, say, creating pages, moving them, deleting them, querying content, the things that an API does. What I am looking for is some kind of a web servic...

Web service fails (401 Unauthorized) on one server but not on the other.

I have two identical servers. Both Win2k3. I have a web service that queues emails and an application that consumes that service. Both are hosted on both machines using identical folder structures, permissions, and IIS settings. One is called "test" and the other "prod". Ideally, the app on prod will point to the ws on prod. However, wh...

Does a open source DB exist that exposes SQL DB as a web service?

Do any of the existing open source databases have the ability to expose a database as a web service on a server port? I'm looking for something like Microsoft SQL Servers ability to expose a wsdl web service URL . If not, I guess i will use SQL Server Developer Edition... ...

"java form generator" from a given wsdl file

I'm trying to develop a form generator in java, in which users will be able to write a wsdl url and get the list of the operations supported by the web service in a ComboBox. When the user selects one of the items in ComboBox then he will see form fields generated using the wsdl url. I'm a newbie in web service technologies, after searc...

convert HTTP request code to HTTPS request code

I have got following code witch are sending xml file on HTTP protocol and getting response back as xml file from webserver and its working fine with HTTP protocol, but now i need to send such a XML file to HTTPS protocol (not http) and need to get response as xml file from it. the code to send xml file and get response from HTTP is : ...