web-services

Java RMI via Webservice?

Hi there, I'm searching for a possibility to run a java RMI application via webservice or an internet protocol. is there any framwork or solution that says "I can run RMI as WebService with WS-Security" or "I can run RMI via HTTPS" etc. or is tunneling RMI over HTTP or SSH the only way? thx, axel ...

I am forced to use Process but I need AppDomain-like security policies. How to do that?

Maxima.exe is a Computer Algebra System built as a native code rather than a managed code. MyService works as a socket server, it will instantiate a new process of Maxima for each browser submitting mathematics expression to Web Server. I cannot use AppDomain here because Maxima is a native code. However I want security policies provi...

number of results for a specific keyword from the share point queryservies web service.

how to get the number of results for a specific keyword from the share point queryservice web service. ...

Using Web Service to authenticate on LDAP

Hi there, Since it' apparently not possible to authenticate with LDAP on my BlackBerry App, I'm trying to use a kind of workaround. Instead of authenticate directly on the LDAP Server, I want to use a Web Service in between. So it looks like this App --calls--> Web Service --calls--> LDAP Server So the Web Service should take th...

Is it possible to create a web-service client solely from a wsdl file?

I'm creating a web-service client. I used a WSDL file to generate the client side stubs. But now I have to authenticate to the web-service, and invoke methods. I've checked some tutorials on how this should be done, but they always explain generating the client code and server code then having them work together. I was wondering if all ...

Representing arbitrary hierarchies in WADL

I am modeling a REST API and part of the API will represent resources that are organized into an arbitrary hierarchy of nodes with values and sub-nodes (kind of like a file system or the windows registry). I would love to create a WADL file so that i can generate the JAX-RS boilerplate for the API but i'm not sure how to represent such ...

error when opening excel file

i have a web service that reads data from excel using Microsoft.Office.Interop.Excel. It works fine on my local machine but when i upload it on a server it gives the following error Server was unable to process request. ---> Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to th...

Get Request URL From Web Service

I have a web service, and this service has many function. My Other web applications use these functions. Can I get request URL or IP address in Web Service function. I want to get My Web Application's URL for security. How can I do? ...

Container Managed Transactions (CMT) for Web Services in JBoss

I'm exposing my EJBs (3.0) as Web Services deployed to JBoss AS 5.1 (using annotations @WebService ,etc). I 'm very satisfied with JBoss's transaction management, especially automatic rollbacks on exceptions. My question is, will Web Service endpoints also behave the same way as remote/local EJBs? or would I lose the Container Managed T...

Access Sitecore items via .NET web service

Has anyone had luck with using a .NET web service to access Sitecore items? I have a number of web applications on my server that are still in Coldfusion. I'd like to be able to call a web service to pull down items, but when I tried to do this I got an exception "Sitecore.Data.Items.Item cannot be serialized because it does not have a p...

call a web service from T-SQL in Sql Server 2008

Is there a way to call a HTTP web service from T-SQL (no SQLCLR) in Sql Server 2008? I just need to send information out, I do not need to receive anything into T-SQL. Thanks. ...

CoreData and ASP.NET webservices.

Hi, I'm developing an iPhone app that relies heavily on calling ASP.NET Webservices to transfer data to and fro between a database in one of our servers and the phone. There are multiple items that the user works on. And to work on each item, a typical usecase requires 5-6 webservice calls. Depending on 3G signal strengths, the amount ...

Why can I access a WSDL file from a browser, but not from application?

We've having trouble deploying a web service that works in our development environment, but not in production. Part of the problem is that our production servers are load-balanced, so to upgrade one of the servers, we have to take it out of the load-balance and try to test the sever in isolation, which is a challenge. The computer I'm ...

Using JAX-WS, how do I have multiple ports inside one wsdl?

I would like to define 5 classes with an @WebService annotation on them and use wsgen to create a single wsdl for all of them. Each class would be its own port. I've been reading the wsgen documentation and this doesn't seem possible. But, when I look at the wsdl spec, it appears to be possible. http://www.w3.org/TR/wsdl#_ports Does...

Visual Studio 2010 Web Service - Character is not valid

I am trying to create my first ASP.Net Web Service using Visual Studio 2010 and I keep coming up against a roadblock. When I try to build, I get the following error: Error Character is not valid. Line 1, Column 2. When I click, it goes through to the page, and there is just the default, auto-generated line: <%@ WebService Language...

ASP.NET Webservice - how to include an XML SHA-1 HMAC signature?

I'm trying to include the extra security in web service calls/responses by including an XML Signature (SHA1-HMAC) in the result. I've read on msdn that it can work, but I haven't seen anything telling me how to implement it. Has anyone done this before? (and how have you done it?) ...

The methods method1 and method2 use the same SOAPAction

Hi! I'm implementing a webservice based on a wsdl that is provided by another company. I need to implement a webservice-stub for testing purposes. So I used wsdl.exe to generate the client and serverside interfaces and implemented them. When I do a webservice call I get an exception saying The methods method1 and method2 use the same SO...

EJB webservice hanging during first call in Websphere

I have a top-down EJB Webservice (deployed on Websphere 6.01) that hangs the first time I call it after starting the JVM. If I see the logs, it seems to do everything normal that I expect it to (retrieving data from database) and I see all sysouts printed till the very last statement in EJB method. But client never gets the response back...

Installation Option for ASP .NET Web Service Application

I am trying to create a ASP .NET Web Service Application using Visual Studio 2005(Version 8.0.50727.42). Unfortunately, I do not get any options for creating such a project. I am guessing it has to do with visual studio installation options. I am only enabling the components, Visual C#, Visual Web Developer and SQL server 2005. I am hop...

Migrating Flex 3 to Flex 4 (Web service related)

In Flex 3 when adding a web-service, for each function a tailored event handler was made (e.g. for function GetCustomer there was a WebService.addGetCustomerEventListener) - How can something like this be implemented on Flex 4? ...