web-services

How to pass a lot of data between two computers

What are possible options to transfer a lot of data from one computer to another not in the same LAN. The amount of data is about 100Mb unzipped and 2Mb zipped? Another requirement is that when I create a server for this (with C#) Java clients should be able to consume it. Does WCF support something like this? But if Java clients won't...

Changing the installation of webservice

Hi, I have a Biz talk web-service. This webservice is always installed under C:\Inetpub\WWWRoot. But in production enviornment i want this to be installed in E:\Inetpub\WWWRoot (May be even different one). How can i specify this in my service or some other way, so that it is always installed in required drive. Thanks, Jain ...

SOAP wev service on android

Hi. I am am trying to connect to a SOAP web service using ksoap2 library. I have read a bunch of docs about it, but i am stuck as my request is not an ordinary one. I need to specify some headers prior to sending the request. when is use a soap client to test the webservice i also need to put this in the soap enveope header section: ...

Namespace in Web Service Consumer

Hi. I have an ASP.NET Win Form application that uses several web services in order to access the database. I would like to be able to add several services under the same namespace. So for example, I have 2 services: Content.asmx Website.asmx When I add these items to my consumer project using the automatic discovery, I am forced to g...

Reporting on web service call progress in Java

We have a simple Web Service client caller UpdaterService (the autogenerated one, extends javax.xml.ws.Service). The class has a getUpdaterPort function which wraps the super's getPort function (this is standard as well). The return value for the call to getUpdaterPort is an Updater interface: /** * This class was generated by th...

SQL Server 2008, Powershell and Web Services

Hi, Powershell provides the New-WebServiceProxy cmdlet which allows for a web service proxy object to be created. However the Powershell in SQL Server 2008 doesn't appear to support this. Is there a way to get SQL Server's Powershell to support the New-WebServiceProxy cmdlet? Many thanks. ...

(Java) How can I pass Schema-validated XML documents as parameters between distributed components (e.g. web services or sockets)?

Here is a description of the scenario and I would appreciate also any comments on the approach used The core of my application is a set of web services backed by a P2P database. One service accepts a simple XML-based record (I have designed a generic schema for it). The service processes this data (mainly creating keys based on certain ...

Error while calling webservice (Server was unable to process request. ---> PARAMETER_NAME)

I get this error while calling the web service hosted on the server. The service has one web method with as string input and returns string (will be in XML format). The service is working fine but once in a while I get this error and can't predict. Can someone help me to get through this error. Attached the screen shot of the error. ...

WCF in Windows Service. How do I change the endpoint address (PORT) using app.config and apply an updated data to wcf in windows service?

Hello! I'd developed a WCF Service using netTCPBinding and embedded it in a Windows Service. The configuration data of wcf is located in standart app.config file. After that i had created an installation project and include my code (wcf in widows service) there. So I have the setup.exe file to install my windows service with wcf on b...

Custom faultcode using Axis2

Hi I've created a webservice and used Axis2 to generate all "skeleton" java classes. Then I of course implemented the service operations myself. In the implementation, I can throw a MyException which is then caught by the generated classes and converted to an AxisFault object, which in turn is converted to a soap fault (deep down in th...

Changing the URL on a webservice client generated with wsimport

I am trying to write a module for a Java application that accesses a WSDL-described webservice. The source WSDL was downloaded straight from what I believe to be an ASP.NET webservice; the service URL ends in a .asmx extension, and viewing the service URL in a browser shows a link which can be used to download the WSDL. A key requireme...

Microsoft JScript runtime error: '__nonMSDOMBrowser' is undefined

I'm working with a Webservice. Whenever I use this webserivce the following exception has occurred!!! this exception doesn't concern to my WebApp files! it concerns to the WebService files. Microsoft JScript runtime error: '__nonMSDOMBrowser' is undefined The exception has occurred in the following function : function WebForm_AutoFocu...

unable to add security token for identity

I am trying to hit a web service from my DEV box which is giving error "Unable to add security token for identity". I have heard that it is just happening for windows 7, but not vista or any other windows. Is there any setting needs to be done, in order to get around that. ...

Calling a VB.NET web service with Java

Hello, What is the best solution (if any) for calling a vb.net web service with Java / JSP? If anyone could point me to any examples / references I would very much appreciate it. Thanks! ...

Does royal mail have a web API to integrate with to get tracking, label generation.

Has anyone has any experience integrating with royal mail in UK. Searching their site Royal Mail does not reveal anything ...

Axis2 MTOM Webservice and a .NET Client to consume it.

So i have this new Axis2 MTOM Webservice serving correctly to a java based webservice client. The problem comes around when i try to add the service (or web) reference to the vs2008 and consume it with the generated code. Until now, is everything OK... this is what happens: We create the necessary objects (client, request and paramete...

Best practices for integrating two systems via a web-service

In my case the separate system is a web-service (but it could conceivably be anything). My question is what are the best practices when you integrate against a separate system such as a web-service when it comes to data? Example: Web-service provides a list of products. Products are grouped using categories. You can get all products in ...

So am I talking about a SOA here?

For a government contract we will be proposing to build a traffic monitoring architecture. We will have the following components: Video camera's set up around the area of interest. The cameras will be aware of their location and orientation and viewing parameters. A GIS map server which can be queried for streets, building, etc. An al...

Is there an easy way to find out what exception types a class throws?

I am using the ReportServices Web Services API and I want to determine the exceptions that can be thrown by it. Is there an easy way to do that? ...

Recover the URL that is used my WebService?

I'm creating a webservice. I wanna recover the URL that is used my webservice. e.g: Someone from www.sth.com invoke my webservice's methods. Now I wanna recover www.sth.com from my webservice! Is it possible? if so, how? ...