web-services

Custom source for Windows 7 Start Menu Search

I recently came across an article about Windows 7's new Federated Search and Search Connectors. Basically, you provide users a small XML file (.osdx; an OpenSearch XML file) and they can then use Explorer to search whatever you've got. These Search Connectors actually really easy to implement Explorer calls your URL with a query and y...

Languages and Frameworks for creating High Load Web Service ?

Maybe, i'm duplicating some existing theme (close this one if it's true) but i'm planning to work with high load web services and curios about best practices. I have projects on Java and Grails. I'm doubt if Grails is right solution for high load service but Java (without any Hibernate or similar tools) can be used very well. Anyway, w...

Learning Java WebServices

hi I want to learn Java web service.please suggest some good books or tutorials for a head start. ...

RIA Authentication from a Web Services project

Hi All, I have a silverlight app using RIA services. I want to reuse the RIA services component and call it from another web service. The web service and the RIA services component will be on the same server. I have got quite far along, my web service project has a 'service reference' to the RIA services project which is all good. But ...

WebService authentication problem, in Android

Hi, I have an web service on developed .net The Url is : www.yemeksepeti.com/YemeksepetiCatalogWebService/CatalogExportMobile.asmx I want to use the service methods is : Mobile_GetCities SOAP 1.1 The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values. P...

Step-By-Step To Create A Checkout Form (PHP) Using Paypal Sandbox

Good day, everyone! Currently I'm working with my school project. I need to create a checkout form using Paypal and the website is written in php/apache/localhost. After a little research I know that we can use Paypal Sandbox (not the real paypal) to simulate payment. But I've no clue how to do it. I've read some tutorial, but just make...

C# architecture for long-lived data collecting server apps

We are about to start a new project for a server application, for the purpose of collecting data from several data sources and storing it in a database. For a quick test, we created a WinForms app which uses the core functionality from a custom library, and now have to start migrating it towards the final product. From what we've done ...

how to set webservice url properly ?

I have a ASP.NET application. Inside the asp.net application I have a folder called WebServices where I keep all the .asmx files. I am referring these asmx files inside asp.net .cs files. Instead of giving the full url to the webservice.url property how can i set the path like this. ds.Url = this.ResolveUrl("~/WebServices/xxx.asmx")...

ResponseSoapContext.Current is null

Hi, I have been running a web service code on my own machine along with the client code. It was running fine and managed to receive the Dime attachments sent from the web service to the client. The web service uses WSE 2.0 and Dime attachments. The client code sits on the same machine that calls the web service. However when I go t...

How to deploy a web service in asp.net and add it as a web reference in another asp.net application

Hi, I have an asp.net web application and another web service application. I want to deploy the webservice asp.net application and to add it as the web reference in the asp.net web site. please tell me how to achieve this. Thanks Rupa ...

How to pass an additional parameter to CascadingDropDown ServiceMethod?

Hi. I have two chained CascadingDropDowns. Both are working fine. The thing is that in the underlying web methods which are supplying values for DropDwonList I need read one additional parameter. This parameter is needed for setting up the default item for dropdownlist. I do not know how to pass that parameter or read it. I've read on t...

Javac exclusion of package in ANT build.xml

I'm trying to compile all my packages except two of them, here is what my javac in build.xml looks like <javac srcdir="${src}" destdir="${output}" debug="${debug}" failonerror="yes" > <exclude name="com/abc/uyyy/**"/> <exclude name="com/abc/zzz/**"/> <include name="com/abc/zzz/Text.java"/> <patt...

Web Service namespace - create a user interface

I need to change the namespace of webservice but I guess the namespaces are urns not urls. So how can I asign a custom namespace for web service so that I can use a custom interface as well. Such as logo fo our company. thanks ...

SAAJ compatibility with JAXB

I've been working on creating a SAAJ based client. Everything seemed to be working fine, until I implemented the logic to send attachments as part of a web-service request. The web-service operation is simple - it expects a string element for file-location, and a base64binary element for the file content. I've tested the ws operation u...

Catching a custom Exception thrown by a WebMethod on ASP.NET WebService

I have a classical asp.net web service (asmx) and a web method in it. I need to throw a custom exception for some case in my web method, and I need to catch that specific custom exception where I call the web service method. [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] pub...

ASMX Web Service - Return user defined class with properties

Hey, I am trying to return a user defined class from a web method. The class has properties and/or methods. Given the following web method: [WebMethod] public List<MenuItem> GetMenu() { List<MenuItem> menuItemList = new List<MenuItem>(); menuItemList.Add(new MenuItem()); menuItemList.Add(new MenuItem()); me...

What are some of the pitfalls/tips one could give for developing a web service

Looking to develop a web service (api) in PHP to offer customers an easier way to integrate with our platform. There are workflow calls that will be validated with user/pass as well as some reporting options. Sorry I can't post more details or code on the subject and I have never developed a web service but have had experience in using ...

Good idea or bad idea, to use non-deterministic ordering of xml elements in the output of a REST service ?

Hash.to_xml and other such Railsisms may result in element orderings being different in the output of a REST service. XML Elems are order sensitive, so this would not be a problem for JSON or XML attributes. What aspect of service definition best practices is this breaking that makes me think it is a smell ?? ...

Change webservice url without changing soap endpoint in IBM webservices?

I'm using a webservice client generated using Rad 7.0 which is implemented using the classes in com.ibm.ws.webservices. I need to override the url which the soap request is sent to (for an internal proxy) but still have the soap endpoint entry be the true url, for validation. How can I override the destination url without overriding ...

Is it possible to access the raw SOA/XML message in a JAX-RPC java client?

I am trying to access the XML response via a JAX-RPC java client. I have been looking into Axis custom handlers, but it looks like they are useful only in the service side. ...