web-services

Do you know of a NGiNX module that performs something similar to verification of Amazon Web Service request signatures?

I'd like to restrict access to my web service to registered clients. The first thing I thought of was to mimic that of AWS which, in a nutshell, issues clients a non-secret and secret key pair, and requires clients to prove knowledge of the secret key by using a cryptographic function of some of the HTTP request data and the secret key,...

Calling axis2 web service from xfire client: The endpoint reference (EPR) for the Operation not found

I need to call axis2 web service with ws-security (username token) from xfire client over https. I could do the exercise via xfire dynamic client, but no luck with wsdl base client (i.e. generate java stub from wsdl). Could anybody point me out what could be wrong (stub, ws-security something else)? Exception: Exception in thread "m...

Java webservice: use MVC or DAO+managers

Hello, I'm trying to learn how to develop web-services in java. Now some tutorials (I'm trying to learn how to do it myself without using a framework) use the MVC pattern and expose the class to create a WSDD file etc., other tutorials go for a DAO + managers. Now I haven't been able to find an article discussing the differences (askin...

how can i call from my website to mobile or landline phones. (in PHP,Flash, ..)

Hi all, I wish to call from mywebsite to mobile phone, how do i implement in PHP or Flash. Is it possible in PHP, flash, or any other technologies. ...

how to create C# web service for mpeg 4 streaming?

Hi all, I want to create a C# web service for audio steaming (upload n download) to iPhone. any help would be greatly appreciated. ...

Pros and Cons of Web Services Versioning Strategies

Update 20100224 I really don't need some lame definitions from some vendor website. What I am looking for is practical implementation and challenges faced in the daily IT/business cycle for people who actually implement this stuff. More stuff follows: No retirement strategy has been created/adopted: Obviously one needs to be created....

Securing an ASP.NET Web Service using SSL, without dedicated IP address on the Server

I need to secure communication between my application and my Web Service. I own both the application and the Web Service, and I was wondering if it is possible to use HTTPS to do so. I don't need a certificate to prove to myself who I really am (!), so I don't want to buy an SSL certificate from a Certificate Authority. I just need to m...

"java.lang.NoClassDefFoundError: IllegalName" error when generating JAX-WS artifacts using wsgen

Hi, I am relatively new to both java and webservices so it has to be something obvious. Most probably something with classpath. My class files are under the directory 'src/ibmwebservicetutorial/service/' relative to current directory. Any idea what am I doing wrong? wsgen -classpath . src/ibmwebservicetutorial/service/OrderProcessServi...

ASMX Web Reference not Updating After Service Return Type Updated

I have a webservice - called MyCompany.WebService1 I reference this using a web reference in my ASP.net web application. Theres a method called "GetDeal" in this web service, that returns a "Deal" Object. The deal object currently looks (for example) like this: public class Deal { Public string Name {get;set;} Public string De...

verify credit status thru a web service sending the person's SSN

Hi, I'm looking for some sort of webservice that gives me the status of a person's credit score by sending their SSN, don't need details about the credit, just need to see the status whether is good or bad credit. Anyone has ever done that or does it even know if it exists? Thanks in advance. ...

How to determine SharePoint version using SharePoint web services?

I need a way to determine the version of SharePoint based on the URL provided. Also, I need to have it implemented through SharePoint web services or any other method that does not involve SharePoint's object model (because the code is not executed on the server). Could anyone help please? Thanks. ...

How to create Axis Web Service Client for a local WSDL file?

Hi, i have local WSDL file. i tried to create JAX-WS Web service client which is available by default in Netbeans. But there are problems in accessing the service. So i tried to create Axis Web Service client by installing the plugin. But i don't find any way to import the WSDL and access the services available like JAX- WS Style. I ...

looping web method until data is found and then return from web service for chat application in asp.net

Hi guys, I have to implement gmail style chatting in my asp.net website. now i know much has been said in this regard here and other forums...about COMET and its befits.... i recently saw this site www.indyarocks.com and when i profiled their website i found out that for chatting they send a async request and the page waits until the s...

Connection to a WCF webservice receives a 503 error

I have a WCF service hosted as a Windows Service. The server hosting it is running IIS6. Every so often clients report a 503 Service Unavailable error. I can't see any problems on the server side: I can see the logging I expect from the service itself, there are no entries in the Application or System event logs. The clients retry and...

Can't consume webservice from Java

I created the webservice stubs using axis2-1.5's wsdl2java.bat. This created a src folder with the following structure in it: src/net/mycompany/www/services/SessionIntegrationStub.java The package of the SessionIntegration.java file is: package net.mycompany.www.services; Now, I am trying to use this stub in my java code. I placed my...

Consuming java web service from .NET client

I am trying to consume a java web service from .NET. When I add service reference to generate proxy and run the programme i get the error below The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter http://order.x.service.y.com:requestPayment. App...

regarding java web-services

Hi I like to study WSDL, UDDI. But I am totally noob to web-services. I have pretty well knowledge of servlets and jsps.Can anybody guide me how to start with web-services. Thanks ...

Do standard webservices (asmx) work with MVC?

I have just tried adding a WebService (asmx based) from a WebForms project to a new MVC project. I cant seem to get to the asmx webservice in IE? In MVC should this work the same, I have the service in a Services folder, should this be in a View or should this asmx work outside the 'MVC' routing? Update: I set up the WebService initia...

Why won't VS2010 RC use my existing types when I add a service reference?

I have a huge problem getting services references in VS2010 RC to use existing assemblies. Even though I have a class library with all the data contracts (classes marked with DataContract and properties with DataMember) that is shared between the service project and the consuming project (which is a class library), when I add a service...

How to download paypal transactions using some API

Is it possible to download my paypal transactions using some kind of API? Scenario: I own a paypal account and don't want to download the files using the website export. Instead I want to download and process the transcations of my paypal account automatically. ...