web-services

Get access to web service from remote machine

Hi everyone, I created a windows service,by this windows service i am publishing the web service through a server for access to remote machines. when i am create the setup of that particular and install it will access only from local machine but cant access those web service from remote machine. but at the time when i am debugging...

Software-Design Issues

Hi, I'm planing to build a software in client-server-design. Technology should be Java. Server should have a communication layer for web-services (e.g. RESTful Jersey), RMI, JSF. Clients can be: Fatclients in Swing or Browser clients in JSF. In my focus are JBoss Netty for the server, Jersey looks much more simple but Netty would have...

Consuming Web Service from C++/CLI

Hello, is it possible to consume web service (written in c#, ... I don't have control over it, just URL to it's .asmx) from C++/CLI? There is no 'add web reference' in C++/CLI project :( ...

No endpoint mapping found

Hi I created my first web service. It work fine but now I need to solve some special situation. First situation is mention here http://stackoverflow.com/questions/3441183/spring-web-services-exception-skipping-exceptionresolver but there isnt solution which can help me. Second situation is the client send me correct SOAP message but mak...

How to return a "complex" value using a webservice ?

Hello, I have a webservice that returns a complex value (this is a tree) public class DocumentTreeNode { public MyDocument Data { get; set;} private LinkedList<DocumentTreeNode> _children; public IEnumerable<DocumentTreeNode> Children { get { return _children.AsEnumerable(); } ...

Creating a .net webservice stub with xml storage.

I've been asked to come up with a .net web service stub for multiple similar webservices which will: implement create/read/update/delete/find for an arbitrary object. hold persistent xml data for objects of that type. Is there anything out there that does this job already or anything that can make the job of creating it easier? ...

Deploying a web service to a server

I have a web service currently running in Glassfish through Netbeans. Netbeans automatically created a wsdl for this, at Logging listening at address at http://localhost:8080/LogWebService/LoggingService where LogWebService is the project name and LoggingService is the class name. I want to move the service to an external server so I c...

Sharepoint Web Service search: Specifying number of results returned

I've spent the past few days at the school of hard knocks learning how to search Sharepoint via the http://{servername}/_vti_bin/spsearch.asmx Web Service. The remaining issue to overcome is that when I perform a search, only the first 10 results are returned. In the returned XML I can see: <StartAt>1</StartAt> <Count>10</Count> <Total...

Effective way of forming a Java WebService client

Which is more effective way of forming a WebService client out of the following ? Having the Service and Port objects of the generated Java artifacts (after importing the WSDL) as method-local objects. Example : public class TestWS { ... private void testLocal() { wsdlImportedPackage.TargetService localService = new wsdlImportedPackage...

Is there a way automatically deal with xxxSpecified when setting values in web service?

(I assume anyone out there using SalesForce web services from c# has also seen this. If there's a way around this - obviously I'd rather know that.) Whenever I set, say, the value of a field on a wsdl.exe generated web service like this: campaignStat.Clicks__c = ToDouble(Stat.clicks); campaignStat.Clicks__cSpecified = true; Can anyo...

MS Access perform POST webrequest

In my MS Access application I need to send a batch of info to my webserver on a regular basis. I don't need anything fancy like SOAP, XML-RPC or anything, just a simple POST page request is sufficient. I've Googled a bit but have been unable to turn up anything really helpful. Does anyone know of a resource or have a code sample to perf...

Problem retrieving XML data from an ASP.NET Web service.

I am trying to call a Web service to retrieve some XML data from a database. The Ajax call works fine if I use a static file e.g. like this: $.ajax({ type: "GET", url: "test2.xml", data: buildXMLDataRequestObject(), dataType: "xml", success: getXMLDataSucceeded, error: getXMLDataFailed }); but fails when I try ...

NSCFDictionary objectForKey unrecognized selector sent to class

After I call a SOAP webservice asynchronously using WSMethodInvocationSetCallBack and WSMethodInvocationScheduleWithRunLoop I get the result in the following callback function and begin parsing it void wsCallback(WSMethodInvocationRef invocation, void* info, CFDictionaryRef data) { const void *data = CFDictionaryGetValue(resultBody, (NS...

Creating REST Web Services with Python

Hi guys, Is it possible to create REST Web Services, that returns JSON or XML, using Python ? Could you give me some recomandations ? Thank you. ...

calling a web service from WordPress

Hi All, How would I call a web service from one of my pages? It would go something like this: I call a web service with a parameter in side my page or form. The web service returns a value I store that value in a hidden field. I can't seem to find any instructions on the web to help me to this inside a WordPress form/page. Than...

Trouble displaying results from object with brackets, web service example

Hello, I have created a JAX-WS client within eclipse that will communicate with a web service that was written in VB.net. I have gotten this to work successfully. One of my web service methods will return an obect of type KitchenItems[] The KitchenItems has a bunch of get/set methods for various kitchen properties. However, I cannot a...

Calling a REST service with Python

I have a REST service that I'm trying to call. It requires something similar to the following syntax: http://someServerName:8080/projectName/service/serviceName/ param1Name/param1/param2Name/param2 I have to connect to it using POST. I've tried reading up on it online (here and here, for example)... but this is my problem: If I...

A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll?

'Hi I am calling a web service from javascript/jquery as follows: function Test(userid) { alert(userid); $.ajax({ type: "POST", url: "testWebService.asmx/GetData", data: "{ userid:'" + userid + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: functi...

Dynamically Invoke Web Service At Runtime

I am using the sample code to dynamically invoke a web service from this site: http://www.crowsprogramming.com/archives/66 The issue that I am facing is when I use the Class to call a web service from a web application I get the following error: "The remote host cannot be found" and the error happens at the following line of code: if (!...

Simplest REST-service for real time chart drawing program demo

Real time Chart drawing program can work with different datasources, REST-service is one of them. I need any free REST service for a demo. For example, chart program sends request to http://google.com/woof/woof every second and gets current NASDAQ, or smth else fast changeable (for pretty plotting). This service have to return just nu...