web-services

Sharepoint Web Service GetListItems not returning all rows

I am using the GetListItems web service and it is only returning about 50% of the results stored. Is there a limit to how much data can be returned? Is there anyway round this? ...

How do I add an HTTP header to a web service call?

I'm calling a web service from a console app - all in C# on .NET. I want to add an HTTP header (not a SOAP header) to the web service call. How do I do this? This is what my code looks like so far: EatService es = new EatService(); // web service added in Web References // Add HTTP header X-Info = "extra info" here string info = es.Ge...

Is it possible to do a Google/Yahoo/Bing search restricted to the "description" meta data?

I'm working on a project that would be greatly optimized if I am able to restrict a Google, Yahoo or Bing/Live search to just the < meta content="xyz" name="description" /> tag. I read all the help pages and api docs and can't seem to find a way to do it, and I thought I'd give it a shot here on Stack Overflow. Thanks :) ...

ASP.NET Web Services troubleshooting?

Working with one of our partners, we have developed now two separate sets of web services for their use. The first one was a simple "post to an https URL" style web service, which we facilitated by building a web page in ASP.NET that inspected the arguments in the URL, and then acted accordingly. This "web service" (if you can call it th...

How to make templates after installing MediaWiki?

Hi. I had just installed MediaWiki. What must I do to have wikipedia style templates like this: http://i.piccy.info/i4/4b/37/fe303fda0c813c0bda717d3a1e3b.png (example). I have already installed ParserFunctions Extension on my MediaWiki CMS. I have tried to look source & copy it, but it didn't work. Thanks. *sorry for my English (it isn...

Web Service return value issue in VB.net

Hello friends, I have a Web Service with Just one Web Method that returns a boolean value and a function When a client application consumes this web Service, I first want to return a value true and then continue with the remaining process. I was googling and didn't find anything that I can understand. Please help me out. In one of the ...

What to ask for in web services documentation?

A 3rd party is developing a web services library, which my team will be consuming. What should I ask for in terms of web service documentation? Here's my list so far: WSDL URL Sample Request (XML) Sample Response (XML) Response Schema Definition Anything else? What documentation should be provided for web services that return JSON...

Webservice C# constructor does not allow arguments?

Im trying to create a web services that takes some arguments in its constructor to save round trips, but i keep getting the error: CS1729 "servicename" does not contain a constructor that takes '1' arguments although when I try to create an instant locally (in the same project as the service) everything works fine... what gives? web se...

Web service to get the GPS Coordinates

Hi all, I'm developing an web application (jsp/strtus2) which requires the GPS coordinates of a place. What I want to know is, whether there are any free web services that I can get GPS coordinates of a place by passing address or zip code to the server. Thanks in advance, Nuwan ...

How to add custom SOAP-Header element to the generated WSDL in Spring-WS

Hi, we are migrating from WebLogic web-services to Spring-WS (1.5.X). There is currently one issue we are facing: We need to pass a context object (on WLS it is passed as SOAP-Header element) to other services that are still running on WLS from the Spring-WS powered service. The header element is still formulated on client side and the...

Java Web Service Constructor invocation

How do you invoke a Java Web service constructor. Ideally when does constructor invocation happen while you consume the service from a client ...

Java Web Service operation

I have a set of statements to be executed repeatedly every time a web method is called with a new service.I tried writing in the constructor but, the constructor gets invoked only once when the server starts. Instead, I need the set of stmts to be executed each time a Service is created at the client. ...

SQL Integration Services Web Service Task Problem

Hi all, I am currently trying to use a web service I developed within an Integration Services package. When I try to configure the web service task I keep getting an error message. I configured the HTTP connection, and successfully downloaded the WSDL file which overrides my local copy. After that, on the input tab, I try to select the ...

Best practice for java web services and remote exception

I am writing a web service. So I have: public interface MyService extends Remote { public void service1(); } public class MyServiceImpl implements MyService { public void service1() { /* do something that sometimes throws an exception */ } } I was reading about RemoteException. Should I wrap all the code in service1() in a try..c...

VS 2008 debugger: How does it decide what Cassini port to run a web service under?

I have a VS 2008 solution that includes a web site and a web service. I'm developing both at once, and it's helpful to be able to debug from one into the other. It occasionally can't find the web service. If I look in the web.config, I find the port number it's looking at is not the port number it auto-runs the service in when I use the...

Rest WebService error handling.

Hi there, I am using RestWebservice for few basic operations , like creating/searching. The request xml looks something like this <customer> <name/> ..... </customer> For a successful operation I return the same customer XML with extra fields populated in it(eg. systemId etc which we blank in the request) . with Response.Stat...

Web Service Client Deployment

I have a web service client (JAX-WS) and the stubs have been created using the wsimport tool. Now once the client is packaged as an application, the location of the service (and only the location )changes. Do I have to re run the whole ws-import tool once again to create new stubs for the new location. Is it possible to move the WSD...

System.PlatformNotSupportedException AesCryptoServiceProvider

Hello, I've got the following problem. I've created a class that uses AesCryptoServiceProvider to encrypt and decrypt some data. I'm using the class in a SharePoint WebPart and everything works fine. I'm also using the same class on the same webapplication in a custom SharePoint webservice and every time the constructor of the System.S...

Unique Application Key

I am creating a web service to allow application developers (my fiends LOL) to query my database. The thing is, as a security constraint i wanna be able to track each user. I am in the process of creating a unique app id like facebook or Google maps. Any help? The developer must submit a user-name and email-address, when they click gene...

Collections, items, verbs and REST interface design: what should POSTs return?

I'm designing a REST interface and I'm puzzled by what should the insert/update/delete verb return (as content of the response). Consider an inteface for Invoice entities, accessible at api/invoices: GET /api/invoices returns a list of invoices GET /api/invoices/123 returns the invoice with ID 123 POST /api/invoices adds a new ...