web-services

How to know the source code project of a referred web service?

A project, called P, of my solution refers to some web services whose source codes are in other projects in the same solution. Those web services are coded by other colleagues not me. From within1 project P, I can see these web services in Services References. What I want to know: The source code projects of each of those web services....

Return a complexType class with nested arrays breaks web service, why?

I'm developing a simple web service using Eclipse, Axis1 and JBoss. The web service class looks like this: public class MyService { public ComplexClass getSomeData() { ComplexClass complex = new ComplexClass(); Children children[] = new Children[2]; children[0] = new Children(); complex.myFirstArray =...

How secure is to use third party web service on a production website ..

hello all, For long I wanted an IM type discussion client on my production website instead of those commenting things ....i just came across this third party web-service at http://aagmgyd6.yahoo.joyent.us/chat/index.html ...I was just curious ...if i use it on my production system what cautions i must take ...is it secure ??? any oth...

How to identify google forms user?

Hi, is there a way to know, who created an entry in a google spreadsheet via a form without giving them an account to our google apps domain? I am working a system to distribute users to different groups. first the users have to input there preferences the users are distributed between the groups with regard to some contraints like ...

How to programmatically retrieve all of a web service's web methods' signatures?

I'm trying to build a c# application that displays and invokes all of a specific web service's methods (the web service is written as a .asmx file). I can go directly to the asmx file and get the methods names from the returned html, but I'm sure there is more elegant way to do it (this way doesn't reveals the web methods' signatures as ...

Instant search considerations

Hi, I've started working on a basic instant search tool. This is a workflow draft. User presses a key Current value gets passed to the function which will make an Ajax call to a web service Web service will run a select on a database through LINQ-To-SQL and will retrieve a list of values that match my value. I will achieve this by u...

developing Java web services - Holder issue

Hi all, I am developing a web service and i have created a Holder class,say StudentResponseHolder which holds a complex data type, StudentResponse, which is java bean. The prob is when the client classes are generated and the client is ran, StudentResponseHolder.value is returning a null value . The holder class in the web service is ...

WCF service binding wsHttp vs. basic with no authentication

I am attempting to create a WCF service with anonymous authentication. When I deploy the service to the destination server that is not on my current domain I receive the following error when attempting to call it: Content Type application/soap+xml; charset=utf-8 was not supported by the service http://myserver.com/page.svc. The...

Post to Web Service from ASP, from Remote Server

Hi Guys I'm trying to Post Data to a Web Service, from ASP (VBScript), using the CreateObject("Microsoft.XMLHTTP"). Trick is, I am able to post the Web Service if it resides on the same server. But the moment I post the web service from a remote server or different server, I assume its as if the post data never got sent. Below is an ex...

Getting the actual response from Soap WebService

im Consuming a Soap webservice and im calling a method , i want to get the actual xml response is there is any way to get that ? ...

how can i generate a web service proxy behind https and client certificate request

I'm trying to generate a web service client with eclipse (I also tried with jdeveloper and netbeans). The WSDL is behind a https server with client certificate request. I can connect and generate the classes with this command: java -Djavax.net.ssl.trustStore=testes.keystore -Djavax.net.ssl.keyStore=testes.keystore -Djavax.net.ssl.trust...

ActionMismatch while using web service

I'm trying to connect and use a web service method. I'm getting the following error: The SOAP action specified on the message, '', does not match the HTTP SOAP Action, 'http://tempuri.org/xpto/foobar'. In fact, the code says this: _state.getMessageContext().setProperty("http.soap.action", "http://yadayadayada"); but it doesn't sta...

How to configure a single WCF Service to have multiple HTTP and HTTPS endpoints?

What I am trying to do is get a SINGLE WCF Service to work in the development environment which is the HTTP scheme, and, also, have the SAME service work in the production environment which is the HTTPS scheme. If I remove the two Https endpoints (those suffixed 'Https'), it works in the development enviornment; likewise, if I remove onl...

Pass request information from Servlet Filter to Web Service

I need to retrieve some information sent in the HTTP headers from within a Web Service. How can I achieve this? ...

Rest - how get IP address of caller

Hi, I am writing a Java Rest Web Service and need the caller's IP Address. It thought I saw this in the cookie once, but know don't see it. Is there a consistent place to get this information? I saw one example of using an "OperationalContext" to get it, but that was not java. Thanks ...

Share data between web services

I want to create two web services, A and B, hosted in IIS. A is used to updated a variable X and B to retrieve the value of X. The question is whether I can make this work by declaring X as a static class variable. If not, what can I do ? PS: Combining them into a single service is not an option for me. ...

Custom Domain Service Fails but Authentication Works (Silverlight Biz App Template)

I'm hosting a Silverlight Business Application Template derived application on an IIS Server. I'm using the built-in Forms Authentication which is working perfectly. Unfortunately, I've added an additional service which has peculiar behavior. If I remote into the server and use the site everything works as expected. If I connect to the ...

get NASDAQ, IMKB 100 and URALS data using web service or XML

where can I get these urls or web services to get online data? for instance I used http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml for euros etc. ...

Configuring web services on Windows Server 2003

We have recently moved from an online hosting provider to a local server and we are currently trying to set up a .net website with web services and are having difficulties. We have two websites running on IIS (in Windows Server 2003) - one that is the actual website where we gain input from the user and one which is running the web serv...

Is it webservice or web service?

Is it one word, or two? I'm mostly asking because I want to know if in Java naming it should be "webService" or "webservice". ...