web-services

Websphere 6.1 jar needed for WebService annotation

I'm using WebSphere 6.1 with the EBJ3 Feature Pack installed. Does anyone know what jar I need to include in my project from the AppServer folder of my WebSphere installation in order to be able to use the @WebService annoation? I cannot seem to find it. Thanks. ...

How to debug a webservice hosted by an IIS in a Silverlight application

Anybody knows how to debug a web service hosted by an IIS in a Silverlight 4.0 application? My IIS version is 7.5 and my operating system is windows 7. Can you please specify the steps on how to? Thank you so much ...

cxf ws-security: securing web-services & interoperability with .NET and other languages

I wonder how to use the means that CXF provides us to secure web-services and BE SURE THAT THERE'LL BE NO PROBLEM for anyone who wants to generate a non-java client from a cxf wsdl file? What do you recommend? ...

'Random' Orderby in webservice using LINQ To Entities

Morning all Now I know there is a reason to this odering but my tiny little brain can't get my head around it. I am using a webservice to pull through data to a webp[age and have the following that is so far pulling data through from UUF1: public string[] GetBuyer(string Memberkey) { try { ...

XML digital signature interface

I am trying to call a WebService and it requires me to prepare an XML digital signature interface. I came across this website and it shows how to sign an XML document. My problem now is that I do not create the XML document myself. My code is as follows: string myResult; GenericWS.ServicesService a = new GenericWS.ServicesService(); Ge...

VS2003 asp.net web service accepting wrong xmlschema datetime

Has anyone noticed that a web service build with vs2003 accepts datetime parameters with a wrong format, even though the wsdl says it has to be a xmlschema datetime? E.g. 31-05-2010 Why is that? ...

RSS is the web standard for syndicating content - is there an equivalent for syndicating "actions"?

Most websites have content but many websites are transactional - is there an RSS-like scheme where a website can syndicate the "actions/transactions" their website provides? ...

Groovy MarkupBuilder causing java.lang.NoClassDefFoundError on closure in soapUI

I am not able to get the Groovy MarkupBuilder to work with soapUI. I am very new to Groovy and I am just following one of the user guides on creating XML. Testing a very simple method: public String Example(){ def writer = new StringWriter() def root = new MarkupBuilder(writer) root.mkp.xmlDeclaration(version:"1.0", encoding:"UTF-8") r...

Converting WCF web service to Java

I currently have a web service built on WCF. It's still in its infancy, so, major changes are still possible. I've been thinking on porting it from WCF to a Java-based solution since I'd like to have a Linux-based backend. What would be the best way to accomplish this "conversion"? Any advantages WCF may have that Java lacks? ...

Process Exited event not firing from within webservice

I am attempting to wrap a 3rd party command line application within a web service. If I run the following code from within a console application: Process process= new System.Diagnostics.Process(); process.StartInfo.FileName = "some_executable.exe"; // Do not spawn a window for this process process.StartInfo.CreateNoWindow = true; proc...

WSDL AXIS Arrays

I am trying to create wsdl definition for the below soap response, < reasonCode Required="TRUE"> < ValidCode>RR< /ValidCode> < ValidCode>RB< /ValidCode> < ValidCode>RT< /ValidCode> < ValidCode>AR< /ValidCode> < /reasonCode> Below is the wsdl definition I have, < xsd:complexType> < xsd:sequence> ...

How to Setup Eclipse to Start Writing Web Services using Axis2

Dear Gurus I am a .net Developer but now a days i want to setup Eclipse to write a sample web services to test the capacity of Java/Axis over WCF/BasicHttpBindings. I found a couple of articles regarding the setup procedures but they are too old or their wording is may be for java or eclipse experts. Can anyone please give me detailed...

How to differentiate between various exception while calling a webservice in using .net?

Hi, I am consuming one webservice, while consuming there can different types expception might occur depeninding on various situation like.. network failur, invalid soap data or exception from serverside also might occur. How can I differntiate between these different excpetion? Because in my application, with these exceptions I nee...

web service client authentication

I want to consume Java based web service with c#.net client. The problem is, I couldnt authenticate to the service. it didnt work with this: mywebservice.Credentials = new System.Net.NetworkCredential(userid, userpass); I tried to write base class for my client method. public class ClientProtocols : SoapHttpClientProtocol { ...

EJB as Web Service - Session Timeout

I would like to know how to increase the session-timeout of an EJB-based Web Service. Can the automatically created web.xml found in the JBOSS_HOME/server/default/tmp/deploy/WebService.war/WEB-INF be modified or customize the creation of this file? Thank you ...

How do I implement secure authentication using xml-rpc in python ?

I have a basic xml-rpc web service service running. What is the simplest way(I'm a newbie) to implement secure authentication? I just need some direction.. thanks in advance ! ...

Checking if my webservice doing anything ?

Hi, I have asmx webservice and I need to check , if webservice is busy. I'll ask about it from my winforms client . ...

Using Session in Silverlight using simple WebServices (NOT WCF)

Hi, I need to use Session variables in my Silverlight application ( Using Visual Studio 2008, and Silverlight 3). I am already using a webservice (not WCF service) and would like to know if I can add two methods say GetSessionVariable and SetSessionVariable in my existing WebService Class? Any assistance with sample code would be great...

Webservice description - xsd schema and xml generation

Hello I want to design a WebService for communication between Win Mobile 6.5 based Palm device and a PHP web server. The Palm device software will be developed on .NET compact framework. The communication between web server and device I envision as XML over HTTP. I want a tool that will let me design the Webservice (interfaces, methods)...

Treating a fat webservice in .net 3.5 c#

I'm dealing with an obese 3rd party webservice that returns about 3mb of data for a simple search results, about 50% of the data in that response is junk. Would it make sense then to remap this data to my own result object and ditch the response so I'm storing 1-2 mb in memory for filtering and sorting rather than using the web-response...