Re: How to figure out exact Axis version from distribution

2003-09-09 Thread Sameer Bombatkar
Try to run the class org.apache.axis.Version from axis.jar ... Sameer. From: Ajay Gondhiya <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: How to figure out exact Axis version from distribution Date: Wed, 10 Sep 2003 06:00:33 + MIME-Version: 1.0 Received: f

Re: InterOP between .NET and Axis

2003-08-22 Thread Sameer Bombatkar
axis-user Sameer Bombatkar wrote: > I also encountered the same problem dealing with Collection classes. > How are you defining your de/serialiaers for Collection in ur wsdd file? Rather than passing back any collections, convert them into an array of javabeans, and pa

Re: InterOP between .NET and Axis

2003-08-22 Thread Sameer Bombatkar
Language: en-us, en References: <[EMAIL PROTECTED]> In-Reply-To: <[EMAIL PROTECTED]> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Return-Path: [EMAIL PROTECTED] X-OriginalArrivalTime: 22 Aug 2003 12:02:26.0580 (UTC) FILETIME=[40FE3540:01C368A5] Sameer Bombatkar wrote: I also encountere

Re: Defining a map in WSDL

2003-08-22 Thread Sameer Bombatkar
This is how Map can be described in deploy.wsdd http://schemas.xmlsoap.org/soap/encoding/"; qname="java:Map" serializer="org.apache.axis.encoding.ser.MapSerializerFactory" deserializer="org.apache.axis.encoding.ser.MapDeserializerFactory" type="java:java.util.Map"/> which will be described in

Re: InterOP between .NET and Axis

2003-08-21 Thread Sameer Bombatkar
I also encountered the same problem dealing with Collection classes. How are you defining your de/serialiaers for Collection in ur wsdd file? Sameer. . "If a server crashes in a server farm and no one pings it, does it still cost four figures

Re: Problem with java.util.Properties

2003-07-23 Thread Sameer Bombatkar
... :( Sameer. From: Davanum Srinivas <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Sameer Bombatkar <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: Problem with java.util.Properties Date: Wed, 23 Jul 2003 06:00:35 -0700 (PDT) MIME-Version: 1.0 Received: from web12802.ma

support for java.util.Properties in Axis1.1

2003-07-20 Thread Sameer Bombatkar
Hi I have a method that returns a java.util.Properties object. I want to expose it thru a web-service. Is it possible with Axis1.1. ? Could anybody forward me in the right direction from here? Sameer. . __

complex return type question

2003-07-15 Thread Sameer Bombatkar
Hi all I have a method which returns a user-defined compelx object ..But this object in turns contains a map.I want to call this method in .NET front end. I guess there is no direct support for Maps in .NET and one has to convert that Map into an array of JavaBean. How do I deal with this obje

Re: axis applet client

2003-07-06 Thread Sameer Bombatkar
U may put ur client in a JSP if you have a web app server handy... Sameer. . From: "Stephen Eaton" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: axis applet client Date: Mon, 7 Jul 2003 13:26:50 +0800 MIM

Re: List of deployed Services

2003-07-03 Thread Sameer Bombatkar
I would normally get this error when the Server is not up and running.. Sameer. From: "SUNILK_CHAMARTI" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: List of deployed Services Date: Thu, 3 Jul 2003 14:50:44 +0530 MIME-Version: 1.0 Received: from apache.org

Re: Application/Web Servers supported by AXIS 1.1?

2003-07-01 Thread Sameer Bombatkar
It also works Okay with WebLogic6.1 service pack 4 Sameer. . From: "Dimuthu Leelarathne" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: Application/Web Servers supported by AXIS 1.1? Date: Wed, 2 J

Re: [axis] Serializing embedded complex types

2003-06-26 Thread Sameer Bombatkar
Could you also post your deploy.wsdd and the class which all the operations for youre web-service?? Sameer. . "If a server crashes in a server farm and no one pings it, does it still cost four figures to fix?" From: [EMAIL PROTECTED] R

Re: Namespace Error receiving SOAP message from AXIS

2003-06-24 Thread Sameer Bombatkar
Could you post the Axis client codewhich is invoking this wsdl? Sameer. From: "Micha Op de Beeck" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Namespace Error receiving SOAP message from AXIS Date: Wed, 25 Jun 2003 08:25:48 +0200 MIME-Version: 1.0 X-Or

Problem with Java Client

2003-06-17 Thread Sameer Bombatkar
I am trying to invoke a web-service that returns a String from my Java Client.. Here's the code snippet.. String endpoint = "http://workstation-12:7001/axis/wsdl/DbWebService.wsdl";; Service service = new Service(); Call call = (Call) service.createCall(); call.setOperationStyle(org.apac

Re: settign configuration in axis

2003-06-14 Thread Sameer Bombatkar
Are you getting your Axis Happiness Page Okay? Sameer. From: May El-Barachi <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: settign configuration in axis Date: Fri, 13 Jun 2003 16:14:17 -0700 (PDT) MIME-Version: 1.0 Received: from apache.org ([208.185.179.12]

RE: RE: Does AXIS provide serializers/deserializers for nested javabeans?

2003-06-13 Thread Sameer Bombatkar
Can you post ur wsdd file? Sameer. From: "Agarwal, Naresh" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: RE: Does AXIS provide serializers/deserializers for nested javabeans? Date: Fri, 13 Jun 2003 01:56:46 -0700 MIME-Version: 1.0 Received: from apache

Re: Unregistered Deserializer???

2003-06-09 Thread Sameer Bombatkar
Try adding Students class also in ur deploy.wsdd as languageSpecificType="java:com.greenpulse.demo.model.Students" ? Sameer. From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Unregistered Deserializer??? Date: Tue, 10 Jun 2003 16:39:21 +1200 MIME-Ve

Re: returning an array of javabeans

2003-06-04 Thread Sameer Bombatkar
Standard beanmapping entry for your javabean class should work fine. --Sameer. From: Joel Realubit <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> Subject: returning an array of javabeans Date: Wed, 04 Jun 2003 15:10:07 +0800 MIME-Version: 1.0 Re

Re: [Help] Deploy axis on Weblogic 6.1 throws UndeclaredThrowableException

2003-03-10 Thread Sameer Bombatkar
Also make sure you use WebLogic6.1 sp4 as I found some bug while deploying Axis on WebLogic6.1 sp2. From: "Virga" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: Re: [Help] Deploy axis on Weblogic 6.1 throws UndeclaredThrowableException Date: Mon, 10 Mar 2003 1

Re: can't deploy a WS with Axis 1_1RC1 on Windows

2003-02-17 Thread Sameer Bombatkar
I'm getting the same error when I use AdminClient to deploy the service on my WebLogic6.1 ..Please let me know if you find out a soluton.. Thanks Sameer From: Thierry - listes <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: can't deploy a WS with Axis 1_1RC1 on Wind

Error passing an ArrayList!!(Ignore last message)

2003-02-13 Thread Sameer Bombatkar
I am trying to pass an java.util.ArrayList to my .net client.. Getting the error "Datatype Array is missing". Following is the wsdd I'm using which deploys the webservice OK on my Axis.. http://xml.apache.org/axis/wsdd/"; xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";>

Error passing an ArrayList!!

2003-02-13 Thread Sameer Bombatkar
I am trying to pass an java.util.ArrayList to my .net client.. Getting the error "Datatype Array is missing".  Following is the wsdd I'm using which deploys the webservice OK on my Axis.. http://xml.apache.org/axis/wsdd/"    xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">   

error deploying service using AdminClient

2003-01-31 Thread Sameer Bombatkar
I'm trying to deploy LogTestService from userguide/example4 of Axis Package. Whenever I'm trying to deploy the service on WebLogic6.1 using command  java org.apache.axis.client.AdminClient -p7001 deploy.wsdd .I am getting the following error on my dos prompt - Exception:AxisFault faultCode: {http

Problem invoking Axis Servlet from WebLogic 6.1

2003-01-26 Thread Sameer Bombatkar
I have deployed axis-1_1beta on WebLogic6.1. I am getting the Axis Hapiness Page OK ..But getting error 404 resource not found.. What am I missing here?Thanx Tired of spam? Get advanced junk mail protection with MSN 8.