web-services

Connecting to WebServer in NetBeans

I wanted to consume a web service running on a static ip adress. I am making a Web Service Client in NetBeans. When i put the ip address in the place of url, it gives error Check Proxy Settings, URL URL:http://128.205.35.175 Any ideas what might be wrong Thanks ...

Adding BPEL (ODE?) functionality to an existing system of web services (Eclipse/Axis2/GlassFish)

I've implemented a system of web services using Eclipse / Apache Axis2 / GlassFish. Now I need to extends the system's functionality through BPEL. What's the most straightforward way of achieving this? I've found numerous examples on how to use BPEL in Apache ODE, so should I add ODE to my existing application (and, if so, how)? I woul...

How to return a complex object from an axis web service

Hi all, I am writing a simple web service to return an object with 2 properties. I am embedding the service into an existing web application. My wsdd looks like this. <globalConfiguration> <parameter name="adminPassword" value="admin"/> <parameter name="sendXsiTypes" value="true"/> <parameter name="sendMultiRefs" value=...

Authenticating desktop-based program with online web services (rememberthemilk.com)

I'm trying to create a desktop program that will interact with the online todo list manager rememberthemilk.com. The final step in the authentication process is launching a link where the user can log in to the service and verify that they want to allow the program to access their account. However, right now I don't have a way to det...

Using facebook webservice able to run in localhost ,but not inside in facebook server

I am trying to develop facebook application using facebook web service as friends_get. I wrote a coding in jsp like<% try { String format = null; String flid = null; RestResponse result = FacebookSocialNetworkingService.friendsGet(request, response, format, flid); if (result.getDataAsObject(facebook....

Can you expose XML webservices from a Windows Forms Application?

This might sound like a silly question, but when I search for webservices, I get no information about how to create them in a windows forms application. The only result is how to create and expose them by creating an .aspx page. So my questions is: Can you create and expose webservices within a windows forms application or are they som...

.NET webservice - acknowledge quickly, but continue processing in background

I'm building a .NET web service that will be consumed by a vendor's application, and I'm not sure how to accomplish the following: The vendor will call my webserivce with some information, but wants an acknowledgement returned quickly, just stating that I received their info. They don't care what I do with it, and don't want acknowledg...

How to set a value for a string in a really complicated c# partial class for a web service with xml-seriaisation? (I think)

Hi I'm new to C# and I'm using MS VS2008 Express on XP32. I have this class, auto-generated from a wsdl: public partial class PartDataSetType { private object[] partDataSetField; /// [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)] [System.Xml.Serialization.XmlArrayItemAttribute("Entit...

web service filling gridview awfully slow, as is paging/sorting

Hi I am making a page which calls a web service to fill a gridview this is returning alot of data, and is horribly slow. i ran the svcutil.exe on the wsdl page and it generated me the class and config so i have a load of strongly typed objects coming back from each request to the many service functions. i am then using LINQ to loop ar...

Use WCF to implement services according to industry standard?

Hi. I am looking for a proper framework to implement the (web)service tier in .NET. I am a little bit familiar with WCF and wondering, if it can be customized the way I want it. 1)There is an industry standard for messages to be sent/recieved by the system, which defines the operations, types used, etc. It is XML based. It requires all ...

Web Services in Unix. What should be the directory structure

I earlier got to create a simple RESTful webservice on my localhost using Eclipse IDE, Tomcat, and JAX-RS libraries. I am now trying to move the same on to a different unix server which has Tomcat installed. I am not knowing how to get started as in what is equivalent to creating a "Dynamic Web Project" that I do in Eclipse. Do I need t...

Official USD exchage rate web service

I need a web service on a state web site to get an official USD exchange rate to Euro and other currencies. For example, official euro exchange rates is located on European Central Bank web site, Russian ruble - Russian Central Bank web site Where can I find such service for USD? ...

Mix anonymous and windows authentication for web services in the same directory

Hi, I have a web application containing two web services, let's say PublicHello.asmx and RestrictedHello.asmx. PublicHello must be accessed from anywhere, without requiring login. RestrictedHello must be accessed only from domain through Windows authentication (and its behavior is different from one user to another). In IIS, if I en...

Do most iPhone apps communicate via web services?

Do most of the popular iPhone apps that communicate with a back end Internet server communicate via web services? I was assuming this was the case. Some apps I'm thinking about would be: Facebook, Bloomberg, NY Times, ESPN, etc. ...

How do I prevent IIS from compiling website?

I have an ASP .NET web application which on the backend is talking to an ASMX web service. We have counted and the average wait time for the initial request is 20s. I am wondering if there is a way I can send the web service up to the server precompiled, thus negating the need for compilation. We have also noticed that IIS tends to recy...

Where to put automapper configuration for webservice?

I read that a web service does not have a global.asax to configure global settings (like the automapper configuration). So my question is: Should I put the automapper configuration in every webmethod or is there a place I can put it globally? I'm going to call the webservice of couple of thousand times every night so I'm worried that i...

Soap parameters unwrapped in Client and wrapped in webservice, how to expose same methods but different params both in client and server side(java2wsdl)?

The client side should look like (taking the login example) login(user, password) SOAP header is added by interceptor. The service side look like login(Login login, headerstuff). Login is just a class with all the elements from the client call. ALso have an interceptor to show how you could add things to the header before it arrives at ...

Does Bing 2.0 API support multiple queries in 1 request?

Can I send more than 1 search request via JSON SourceType in a Bing 2.0 api call? I'm creating a custom library against Bing because I'm not on .NET. ...

Reading binary image data from a web service into UIImage

I'm consuming a web service in my iPhone app. The web service method returns a response which has several fields (eg. ID, Description, etc..). One of these fields contains binary image data which I need to convert to UIImage in my iPhone application. I'm using a NSXMLParser successfully to extract data from the XML response. In the pars...

Streaming video playback performance issues with background tasks on Android

I have developed a little application that can play video from a rstp streaming sever (darwin in this case, but this is not relevant) by means of the VideoView widget (I have tried Mplayer+SurfaceView approach too). I use Wifi connection for this. The video plays just smooth when video is the only task. The small application should carr...