web-services

Tools for testing web services

I want to perform integration testing of my webservices before shipping them out and am wondering if anyone can point out some tools for performing these tests automatically? I have both ASMX webservices as well as a few WCF ones. I want to be able to add this as a task to my build scripts and execute automatically if possible. What a...

Visual Studio 2008;: adding a webreference

Aloha I have a VS2008 solution to which I want to add a webservice reference. I enter an url like 'http://192.168.100.87:7001/wsdl/IMySOAPWebService'. The Add Web Reference dialog starts looking then throws me this error: There was an error downloading 'http://192.168.100.87:7001/wsdl/IMySOAPWebService/$metadata'. Adding the ex...

Question Related To WebService Javascript

I am getting the following Error Messages when I have used this [SoapRpcMethod(Action = "http://recpushdata.cyndigo.com/FeedBack", RequestNamespace = "http://recpushdata.cyndigo.com/Request", RequestElementName = "FeedBackRequest", ResponseNamespace = "http://recpushdata.cyndigo.com/Response", ResponseElementName = "Fee...

"Unknown web method" error after Server.Transfer

I use System.Web.Services.WebMethodAttribute to make a public static method of an ASP.NET page callable from a client-side script: test.aspx.cs [System.Web.Services.WebMethod] public static string GetResult() { return "result"; } test.aspx <asp:ScriptManager ID="sm" runat="server" EnablePageMethods="true" /> <script type="text/...

How can I connect iPhone and web service and get XML data?

Hi, I know how to connect to web server using an iPhone but now I have to connect the iPhone to a web service. I don't know how to do it and there is no demo or class available online. Does anyone have any ideas? Thanks ...

Looking for a PHP cart that can update pricing with a Web Service

Our company wants to resell products that change in price quickly. Our wholesaler offers a web service that we can call to get the current price of any item at any time. We would like to call this web service before displaying the product page to the user. (It would be bad for us if we sold a bunch of memory just after a large price i...

.NET Web Service Best Practice for multiple developers

Hello, We have a large ASP.NET project consisting of several hundred reports. We are in the process of moving all the SQL Queries (running against an Oracle Database) into three web services. The web services are categorized by command, selections and report queries. We have to deploy a sub-set of our project using a SQL*Server backe...

what is the advantages if a standard supports SOAP Envelopes

because i read that one of the advantages of WS-Discovery that it "Support both SOAP 1.1 and SOAP 1.2 Envelopes" so what? ...

Consuming a web reference in a class library (C#/.NET)

I have a project that uses a class library for the business layer functionality (database access, etc.). A web application sits on top of this. I have a web service that I would like to call in the class library. Every time I add a 'service reference' (I am using VS2008) to the class library, everything seems to work OK. The name of the ...

know any 'Profession Chooser' webapp?

I've been thinking about coding a simple web application (for fun) and just wanted to know, if anyone already did that before (google found nothing close). So the idea is simple: a website where professionals in different areas leave responses about their profession: why they like it, why you should choose it, advices on how and from wh...

"WebServiceBindingAttribute is required on proxy classes"

I'm working on an application that makes asynchronous calls to the WebService. I added a proxy class to make asynchronous calls. The code compiles and runs properly, however whenever I try to double-click the proxy class in solution explorer (Visual Studio 2008) I am presented with a page To prevent possible data loss before loading th...

In WCF web programming model, how can one write a operation contract with an array of query string parameters (i.e. with the same name)?

Using WCF Web Programming model one can specify an operation contract like so ... [OperationContract] [WebGet(ResponseFormat = WebMessageFormat.Xml, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;UriTemplate = "SomeRequest?qs1={qs1}&qs2={qs2}")] XElement SomeRequest1(string qs1, string qs2); Now if we had to make a contract that acce...

How to pass parameters to a Web Method?

How to pass parameters to [WebMethod] in Asp.Net(C#) ? Can some one please explain the same with the help of an example? ...

Writing data into a database using a fully REST web service

How would one create a REST web service to write a row into a databse table. Use the follwoing scenario: The table is called Customer - the data to be inserted into the row would be the name, addresss, telephone number, email. I think its impossible to describe the whole thing end to end in Java or C#, and I would never expec...

glassfish and web service call timeout

I have a ear/ejb project in netbeans that I am deploying on glassfish. I need to set a timeout for incoming calls from asp.net to our webservice. How would I go about doing that? Currently, the asp.net app has the timeout set to like 2 minutes, I want to do the same thing... ...

how to protect the ws discovery ad hoc network from man-in-the-middle attacks

the ws-discovery specifications explains how to protect your network from message alteration Denial of service replay spoofing but what about man-in-the-middle attack? ...

Who's Using Cairngorm 2.2 with Imported Web Services?

I'm very new to Cairngorm, so apologies for what's probably a simple question: I'm working with a number of WCF services imported into Flex Builder 3 (via Data > Manage Web Services), and I'm wondering how to expose those services to the ServiceLocator in Cairngorm. From what I've read so far, it looks like Cairngorm prefers the servic...

How can I customise the namespace prefixes in Metro/JavaEE auto-generated WSDL?

I'm using Java 6 + JavaEE + Tomcat 6 + Metro for SOAP web services. In the response, the namespace prefixes are ns2, ns3, ns4, and so on. I'd like to be able to instruct the web services stack to use custom names instead. How do I do this? ...

How do I create a Web Service in IronPython?

How do I create a .Net Web Service in IronPython? Preferably dynamically without any pre- or post-processing. ...

How can I verify a Google authentication API access token?

How can I verify a Google authentication access token? I need to somehow query Google and ask: Is [given access token] valid for the [[email protected]] Google account? Short version: It's clear how an access token supplied through the Google Authentication Api :: OAuth Authentication for Web Applications can be used to then request ...