web-services

Payment solution

I have a restaurant reservations site, which helps customers book an event at a restaurant. When a customer makes a reservation, we take a refundable security deposit from the customer. After the event is held, we reimburse the amount. We get a booking fees from the restaurant, as a percentage of the total tab. I am in the process of im...

Java: Calling a web service from java 1.6?

Hi there, Anybody aware of how to call a webservice from Java, whats the recommended way, do i need to download an additional JAR or something? Anybody know of a good tutorial.. i saw something ksoap but it seems pretty old?? The webservice is actually hosted by WCF on .net but i shouldn't think this makes a difference... I was hopin...

A .net wrapper for Google App Engine?

Does anyone know of a .net wrapper around either python or java Google App Engine services? Any help appreciated // :) ...

How to call a WCF .net webservice by using grails

By using grails I have to consume WCF WebService.I was trying but could not.If someone could just tell me the steps to call a webservice by using grails. ...

How to implement SOAP?

I have to implement SOAP via HTTP, using C#. Do you know any good documents, and sample code to help? ...

Could not connect to SQL server while using web service

Could not connect to SQL server while using web service. I get the following error: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be cau...

Trying to grab XML from a SSL web service call using Fiddler???

Fiddler seems to be killing a webservice call I'm making via SSL. When I have fiddler capturing traffic (with Decrypt HTTPS traffic and Ignore cert errors both checked), my Web Service call becomes untrusted (I'm able to view SSL in a browser, but the web service call seems to be 'not ignored'). Essentially, I'm trying to catch the X...

Publishing .NET web service to Jetty web server?

I have created a very simple webservice using C# in VS2008. I would like to publish this to a server using Jetty-6 as its web server. Is this possible, or is IIS the only way I can go. ...

WebServices reference issue

I am trying to implement webservices in my porject but the reference can't be found. What might be the issue here? What am I missing? This is how I reference the Web service. I went to the project root in the solution explorer. Right click and Add Web Reference. It showed the method and everything but when I go in the code to make refere...

What is the best way to sync data (binary and text) from a handheld device to server

For example, I have a blackberry or iphone, some applications on it generated some binary and text information, I want to sync those data back to my home web server with fixed IP. What is the best way? web service, can I use HTTP post or put to do it? Thanks. ...

Web Services vs WCF , advantage and disadvantages .

Hi All, I want to clear my doubts about some questions related to web services and WCF. Following are my doubts.. What is the message format in Web Services , like in WCF every message is a SOAP message? Can we use TCP/IP protocol in Web Services if not then why not ? Why we use DataContractSerializer in WCF while we already had XMLSe...

how to download all the tags from delicious

how to download all the tags from delicious, like all the tags shown in: http://delicious.com/tag ...

Non-Transparent Proxy Caching of SSL

I asked the question before but didn't phrase it quite right. I'm using RESTful principles to build a secure web-app that uses both transport authentication/encryption and message level security. The message level security is essentially client-independent (still encrypted though), and hence this allows the individual messages to be cac...

WCF -> ILM -> Web Services -> SQL Server

My employer currently has most of its access to the database through C# sqlDataAdapters and sqlCommands on a WebServices server or components in applications. These are mostly Windows Forms apps that are ran on intranet and internet depending on their functionality. I have been researching WCF quite a bit and I feel it would be a good f...

Site Development - Your Setup ( editor,project management, test site, live site.. etc)

Hey Guys, I'm relatively new to the Web Development business. Me and 2 friends started up our own little company. 1 person is a designer, 1 person is sales / consultant, and I am the developer. Right now, its an after work project, but we hope to expand and let it become our full time jobs. Anyway, my question to you, is what is the b...

Confused about soap4r custom headers

I am trying to set up a web service to Celltrust's SMS Gateway. I have their SDK and I'm trying to use soap4r to create the custom headers that it needs. I'm not sure exactly what I need to do to get it in their format, since they don't provide me with an actual XML document showing what they need; all they say is that in the header yo...

Change ASP.NET generated Web Service Client GUI

Hello all, I need to know if it is possible to change the interface and behavior of the interface that ASP.NET generates to consume Web Services. Basically, the generated interface calls the Web Service on a wrong port (I've changed the port on WSDL file), I only want to change the port from 8080 to 80. If I call the web service from ...

Sending a Hashtable to a Webservice

Im trying to send a List of Items with generic Keys and Value Types to a asp.net webservice. How can i do this? I tried it with List<Dictionary<String, String>>, but this doens't work. I do not get an exception, but when i break in the webserivice, my collection is null. The Data could look like this: {"Data":{"fieldtype":"integer","isr...

Using a SOAP 1.1 web service from .NET 3.5

It appears that .NET 3.5 is enforcing the SOAP 1.2 schema when dealing with web services, even if the service specifies SOAP 1.1 in the schema for the SOAP envelope. Is there a setting to for the service reference to recognize SOAP 1.1? EDIT: The issue is the formatting of SOAP Faults returned from the web service to the .NET 3.5 clien...

expose JAXB generated Class as WSDL web service

I have a bunch of very simple functions. Each function has one input and one output. OutputType function func(InputType); The types of input/output are defined in xsd schema and generated into java classes with JAXB/XJC. Now I want to expose those functions as WSDL Web service running on Geronimo. I just took a look at Axis/WSDL2J...