web-services

Flex's SOAPDecoder returns strongly typed empty objects

Hi, I've been using Flex Builder in order to generated myself a set of WS proxy stubs for my project. When I try to invoke certain methods I get strongly-types object as a response, however when I invoke other methods I get strongly-typed object with nulls and Nans (notice that I do not get any kind of error result event or exception). ...

webservice with different Os

I created webservice in my system and need to diploy it in a server which contain OS other than windows,say Mac or any others,so that those working on Java or any other technologies can acees my webservice.Is there any possible solution other than visual studio IDE is there any utility for creating webservice.i Heard about wsdlgen.exe s...

Behaviour of webservice urls in VS 2005

Hi, We use VS 2005 and use a lot of webservices. My understading of VS 2005 is that by default the webservice urls behaviour is set to dynamic and it picks up the url from the web.config during runtime. But strangely, I have run into cases where this is not happening. The webservice continues to use the url used to add the webreference ...

Web service frameworks for Java 1.4?

We want to implement web services on our Weblogic 8.1 Java 1.4 application. We want to create new server services and call services in other apps. And we need to stick with Java 1.4 (for now). Due to 1.4 we can't use frameworks like Restlet or Jersey. Are there any good web service (preferably REST) API frameworks that support Java 1...

Limitations of exposing Java web services using javax.xml.ws.Endpoint?

I am trying to expose some Java web services so that I can interoperate from C# (see this SO question). The proof of concept code below works great with WCF! My question is about the use of the javax.xml.ws.Endpoint class to publish my service: What do I forfeit by going this route instead of a full-blown application server? Is ...

C# Web Service - Works in IE but not Safari

I have a simple webservice, which I want to access via a http post. The webservice code is show below: [WebMethod] public int Insert(string userDate, string DeviceID) { bool output; DateTime date; output = DateTime.TryParse(userDate, out date); if (!output) { // Throw an error return -1; } in...

History of XML parsing and WS APIs in Java?

Someone recently asked on IRC about the history of XML parsing and WS APIs in Java, and I started wondering. Is there any written history? What are the latest and coolest toys? Why are there so many? Usually knowing the history of why things were developed and how they are supposed to improve over their predecessors helps learning the n...

Jquery and Web services: Can I pass more than one array in data attribute

in something like : $.ajax({ type: "POST", url: "WebService1.asmx/SendValues", data: jsonText, contentType: "application/json; charset=utf-8", dataType: "json", success: function() { alert("it worked"); }, failure: function() { alert("Uh oh"); } }); how do I send more than one array to...

webservice deployment issue

I deployed webservice written in .net language through IIS from my local machine,Is there any possible way to access remote HTTP server which contain different OS and different technologies ...

Weird issue; Button click, Jquery to consume ASMX

I'm having quite a frustrating problem that I'm sure is TRIVIAL. Whenever I move this jQuery post inside the click function it sometimes works, but most of the time does not. If I move it outside it works and posts and gives a response like it should everytime.. ::boggled:: Someone please enlighten me. $(document).ready(functi...

Null reference exception on MethodExecutionEventArgs.Method using PostSharp with multiple web service projects

HI, I'm using PostSharp to log entry and exit to every method in my Application assembly. This assembly is strongly named, versioned and registered in the GAC. It is then shared by 2 web service projects hosted in separate Virtual Directories inside IIS. When the OnEntry/OnExit method of the interceptor is invoked by WebServiceProject1...

Can you reccomend some free web services to play with?

Hi, I am studying usage of web services nowadays. Can anyone recommend some free web services I can use to practice? Thanks! ...

Asynchrony usage of WebSerives, ASP.NET

Hello I have a asp.net application using WWF, in one step of my workflow, I have to send one file to a remote web service by a method. The problem is some times our connection is’t so good and when trying to send files content ( it’s size is about 200KB) I get timeout. I need, I can use this method asynchrony and my app doesn’t wait for ...

Disconnected Service Agent from the Patterns and Practices group at Microsoft

Hello! I'm developing a WinForm application for Windows Mobile 5.0 and above, using C#, .NET Compact Framework 2.0 SP2. This application uses Web Services and I've found the Disconnected Service Agent from the patterns and practices group at Microsoft, because I want to deal with disconnected eviroments. Is there any other software to...

failed to open stream: HTTP request failed!

Hi! I am requesting a webservice to pull lat/lng coordinates by using country names from a php file using this code: $defaultcountry = $_REQUEST['country']; $daurl = "http://ws.geonames.org/search?q=".$defaultcountry.'&rows=5'; $contents = file_get_contents($daurl); $xml = new SimpleXMLElement($contents); $lat = $xml->geoname->lat; $l...

deployment jax-ws on weblogic fails

Hi, my beaweblogic did not startup successfully. Do you have an idea? Thanks failed to preload on startup in Web application: "/app". javax.xml.ws.WebServiceException: weblogic.wsee.wsdl.WsdlException: Unable to find namespace for prefix 'tns'. This is used in element [part: null] at weblogic.wsee.jaxws.framework.jaxrpc.server....

C# web service ... return nested custom objects.

I've started developing a new web service in VS2005. There is only one method: [WebMethod] [XmlInclude(typeof(Person))] public PersonAction GetAction() { PersonAction action = new PersonAction(); return action; } where PersonAction class contains a field with a reference to a Person class [Serializable] public ...

iPhone - SSL connection

What is the best starting point to learn connecting to ssl web services by iphone? Until now i did some basic connections over http via SOAP etc. but i have no experience on https. Any good sources, tutorials, starting references, "use nsurl...class"s are appreciated ...

Tell bots apart from human visitors for stats?

I am looking to roll my own simple web stats script. The only major obstacle on the road, as far as I can see, is telling human visitors apart from bots. I would like to have a solution for that which I don't need to maintain on a regular basis (i.e. I don't want to update text files with bot-related User-agents). Is there any open s...

asynchronus web services, callback problem

I have a asynchronous web service using axis2 which I call two different times using the same CallBack Hanlder as follows : stub.startGetData("Foo",callbackhandler) stub.startGetData("bar",callbackhanlder) ServiceCallBackhandler callbackhandler = new ServiceCallBackhandler() { .....}; //ServiceCallBackhanlder and stub are generated...