web-services

Not getting data from webservice

I am new to php and webservices so pls bare with me The following is my webservice calling 2 methods from dataclass (registerCustomer and getCountries) <!-- a string array req param, used as a return for the getAvailable cars method --> <message name="response"> <part name="resParam" type="tns:strArray"/> </message> <!-- just a string...

How to call a webservice from an iPhone app

Hello all, I want to call a .net web service from an iPhone application. Like I want to call a web service with respect to name and display the history sent by the web service. Can anyone help me with the tutorial or some code how to do this. ...

WebService GET/POST Call and SOAP

I was going through this link below: http://support.microsoft.com/kb/819267 Here it explains to enable HTTP GET/POST calls for web service, for calling a service directly through the browser. Questions: While calling through browser are we using GET or POST? How it gets decided? If we are using regular HTTP GET/POST instead of SOAP,...

Need Help with PHP Client to .net WCF webservice

Any Suggestions Would be very helpful! I need a little help getting a php client to connect to a .net WCF webservice and return a usercontext. I can get it to work in .net but not php. You have to sign in first which returns a usercontext that you pass to the other methods. Developer Help: The UserContext property gets or sets the...

Changing name of web service class after created

I wrote a quick and dirty web service in VB.NET. And as it always goes, I want to move it to production, but don't want to use the name Service1 for the public class. When I change the name I get an error when trying to reference it. I know there is somewhere else I need to change the class name, something in the code behind but I can...

In Flex, is it posible to identify if the code is runing on Web or AIR?

Im doing an app that runs both in the web and on AIR, to avoid copying code arround, I figured I should do 3 kinds of proyects on flex builder: Library, Web and AIR proyects. So all my code is on the Library proyect. I have accessData.as that extends EventDispatcher to fetch web services and return them as an event, I plan on using thi...

Webservice protection against big messages

Hi! I am developing a WebService in Java upon the jax-ws stack and glassfish. Now I am a bit concerned about a couple of things. I need to pass in a unknown amount of binary data that will be processed with a MDB, it is written this way to be asynchronous (so the user does not have to wait for the calculation to take place, kind of...

Troubleshooting Web Service Consumption

I am attempting to connect to hosted solution's web service. The solution takes an xml query and returns an xml resultset via soap. When I connect to the WSDL using a .Net 3.5 service, the code will not compile due to ambiguity errors. When I connect using a .Net 2.0 Web Service the project compiles and when I build the xml query and...

I want to create blog posts to drupal by sending messages through Outlook. Ideas??

I think for two options, either to send messages to Drupal with SOAP or XML-RPC or by sending e-mail. ...

How can I get started using a WSDL file with Visual Studio it's in the root of the project instead of being hosted on the internet somewhere.

I've been tasked when integrating a web form into Oracle CRM on Demand (Siebel) using web services. I've been given the WSDL, and some high level documentation from Oracle. Well, I knew I was in trouble when I tried to add the WSDL as Web Reference and I was asked to enter an URL. I have the WSDL file in the root of the project, but I...

Web Services error on first attempt only

I've created a Web Service which is accessed by 3 other websites. In 1 instance, after user entered some data and click a submit button it goes off and does it's thing and return true or false. The problem is when i click submit initially (after a period of inactivity) i get the error "The remote name could not be resolved: (mydomainna...

is it possible to make setup installation for WebService ?

hi is it possible to make setup installation for WebService ? that the installation will make the Virtual directory + the IIS setup ? if it possible, how to do it ? thank's in advance ...

webservice to return pdf with asp.net

Hi there, I have a html to pdf conversion tool which resides on our server that I can access using a url with querystrings. Something like myurl.com/createpdf.aspx?page=http://www.somesite.com. The tool then converts the web page and displays it as a pdf. I would like to offer this functionality as a web service, so that our clients ca...

Helloworld webservice using RESTLet

Can any one please provide the required setup and steps to develop a sample web service program using RESTLet. ...

Web Services API Versioning

I offer a small Web Services API to my clients which I plan to evolve over time. So I need some sort of versioning, but I can't find any information about how you do something like that. Is there a best practice? How can I keep adding new functionality without breaking compatibility with the web services consumers? ...

prevailing wage webservices

Hi, My client is a consultancy in US, they want the prevaing wage auto pupulated in their application by passing city, state and position title.Is there any credible webservice available for this? Any help is appreciated. ...

bind web services at runtime

hi I am new in .net technology. I have some knowledge about webservices and how to add webrefferences in the project. In my project there is a same web servises will run on more than two server. All web services are same just their servers are diffenrent. So is there a way to add web services dynamically? and i can call web services fr...

My Interface and external Webserver

I have an external Web Service that returns back its own object, and I would like to get it to compile to my interfaces is this possible? (IGetPerson)testAPI.GetPersons(); Where testAPI is the external web service testAPI.GetPerson returns webservice.GetCarResponse, which is of course from the external webservice. I need to get the ...

MINIX 3 as a dns-server?

Is is it possible to have Minix 3 as a dns-server and if one would dare to code the service self how would that code look like (roughly)? ...

Stateful WCF Web Service

I'm new to WCF and I've been trying to use the Session state in Web Services, which I managed to get working with a number of articles. But these articles all follow the .net 2.0 approach, as the new WCF Service References do not have a CookieContainer by default. What is the new school way of using stateful web services? (Without us...