web-services

How do I use Microsoft Sync Framework to sync between SQL Server 2008 and a .NET Webservice?

Does anyone have an example of how to use MS Sync framework with .NET webservices? I have SQL Server 2008, which is exposing data to BlackBerry devices through webservices using regular web methods. Can I use the Sync Framework to expose data through Web Services and to save it back to the database? ...

EJB web services transactions

We have a few products that communicate using various forms of web services. Some use straight XML passed through http requests (HttpClient). Others make remote EJB calls and some use EJB 3 web services on EJB session bean methods. In the HttpClient versions we have problems where the remote end takes 10+ minutes to complete a databas...

Return and Save XML Object From Sharepoint List Web Service

I am trying to populate a variable with an XML response from an ajax call on page load so that on keyup I can filter through that list without making repeated get requests (think very rudimentary autocomplete). The trouble that I am having seems to be potentially related to variable scoping but I am fairly new to js/jQuery so I am not qu...

How to mock test a web service in PHPUnit across multiple tests?

I am attempting to test a web service interface class using PHPUnit. Basically, this class makes calls to a SoapClient object. I am attempting to test this class in PHPUnit using the "getMockFromWsdl" method described here: http://www.phpunit.de/manual/current/en/test-doubles.html#test-doubles.stubbing-and-mocking-web-services However,...

Windows Series Phone 7 "Cloud"

I have been reading up on "Cloud computing" on here and still not getting it. Basically I want to develop for the WP7 http://msdn.microsoft.com/en-us/library/ff402531%28v=VS.92%29.aspx#AppPlat_Overview_Arch Now it mentions everything as being in the "Cloud". Is any server just a cloud? If i have a WCF service or wsdl on my server. Can I...

Why do WCF clients depend on the app.config file?

Like a lot of things, I'm sure there's a good reason for this, so please help me understand... Why, by default, do WCF services store settings in app.config? This has been so frustrating trying to work with multiple Silverlight class libraries. These class libraries are supposed to be completely independent from each other, and this de...

Java Web Service - Faulty Services - ClassNotFound Exception

My Project has 2 java files (A.java and B.java in same package). A.java uses methods in B.java. And, an external jar has been added in the project build path. In order to create a web service (bottom up) from the class, I created a new Dynamic Web Project in Eclipse with axis2 as the runtime platform, and imported A.java and B.java sourc...

Generating Single WSDL file for Multiple JAVA classes.

We are using "Bottom Up" approach for building webservices. We have 10 java classes which we want to expose as a webservice. How can we create only one WSDL file for these classes? (java2wsdl utility & its ANT TASK takes only one class as parameter for generating WSDL file.) ...

How to access a webservice using .wsdl file

Hi, I need to consume a Webservice written in pearl in my .net Windows Application. I have been given a .wsdl file. Please let me know how can i use that Web service in my Application using that .wsdl file. ...

OWSM custom security policy for JAX-WS, GenericFault

Hi, I tried creating custom security and policy as given here: http://download.oracle.com/docs/cd/E15523_01/relnotes.1111/e10132/owsm.htm#CIADFGGC when I run the service client custom assertion is executed, returning successfully. public IResult execute(IContext context) throws WSMException { try { System.out....

Java webservice does not return all struct array

Hi I wrote a webservice which runs correctly. In the webservice, there is a class which contains other classes' arrays and the webservice returns this class's instance. for example public class cls1 implements Serializable{ cls2[] cls2Arr; cls3[] cls3Arr; } I fill this arrays (cls2Arr and cls3Arr) correctly in service side. When ...

Initialize webservice WSDL at runtime using Flex and Mate framework

I am developing a Flex application on top of Mate framework. In this application, I am using a webservice to retrieve data. As this webservice as not a fix location URL (depending on where customers installed it), I define this URL in a config file. When the Flex application starts, it first reads this config file, then I would like to ...

I don't know where to start with WSDL and SOAP in PHP 5.2+

Hello, I'm a web services newbie and I've tried to learn it looking for tutorials in google... but I didn't found anything really helpfull... Do you know any tutorial / web page / documentation for web services using PHP 5 native SOAP client? I need to implement a SOAP client for fetch/send data from a IIS server (for hotels reservation...

Asp.net webservices

Hi everyone, I am new to asp.net .. i want to learn about web services.. can anyone pls provide me a good link or pdf on web services for reading it from basic.. thanks in advance.. ...

Best practice when working with web services that return objects?

I'm currently working with web services that return objects such as a list of files e.g. File array. I wanted to know whether its best practice to bind this type of object directly to my front end code for example a repeater/listview or whether to first parse it into my own list of "file class" e.g. customFiles[] If the web service cha...

Discovery of web services using Python

Hello, I have several devices on a network. I am trying to use a library to discover the presence and itentity of these devices using Python script, the devices all have a web service. My question is, are there any modules that would help me with this problem as the only module I have found is ws-discovery for Python? And if this is t...

c++ free(none gpl ) webservice framework

Hello all im looking for good freeware that is not GPL c++ webservices frame work i have used AXIS2 but it is no good for our needs ,is there any good framework that can be good and robust like the gSoap for example ...

How to save data between calls to a IHttpHandler?

I have a IHttpHandler that acts as a source to a jQuery Autocomplete input field. In the constructor of the handler I generate an index that remains fairly static between request (needs to be rebuilt maybe once a day). How can I cache the the index between calls? Debugging indicates that the constructor is called for each request. I've ...

How do I find out where a call to my webservice (.net asmx) came from?

Hi guys, From within a webmethod (.net asmx file) - is it possible to determine from where the call to the webmethod came? Thank you ...

Retrieving Data from SQL Server within Excel 2007

I have the following requirements I have relational content stored in a SQL Server 2005 database. I want to retrieve this data, transform it and display it in an Excel 2007 document. I would like this to be pulled from within Excel at the click of a button. As far as I can tell I have the following options... Create a view in...