Axis and WebLogic 7

2002-02-28 Thread Olivier Brand
Just to continue on the interesting SUN vs Axis thread. Do you know if WebLogic 7 JAX-RPC is built on Axis (WebLogic 6.1 was using Apache SOAP...) ? Any plan to publish an aplha 4 or beta 1 of Axis in the near future ? It seems that the nightly builds have fixed a lot of problems since alpha

Re: SSL

2002-02-28 Thread Mike Brown
Thanks Pankaj for your response! How do you check the socket to ensure the connection is still valid? Can you access the socket that is constructed and query it to ensure it is not broken (other application terminated)? I would like to periodically poll the socket or connection object or whatev

RE: SSL

2002-02-28 Thread KUMAR,PANKAJ (HP-Cupertino,ex1)
Yes. This is very much possible and I have done it. I am in the process of creating a document for the steps and sample scripts. Essentially, this is what you need to do: 1. Install JSSE from Sun if you are using JDK 1.2x or 1.3.x. Not required for JDK1.4.0 2. Generate keystore and certificates

SSL

2002-02-28 Thread Mike Brown
Hi,   I would like to write an Axis SOAP client that connects to a service using HTTPS, maintains a persistent SSL connection and can tell if the connection is broken.  I would like the client and service to be able to identify a broken connection.  Is this possible using Axis?  I'm currentl

RE: Sun vs Axis?

2002-02-28 Thread Romin Irani
This is a good thread. +1 for Oliver's comments. In particular, the "extensible" nature of AXIS might very well make it the default Container for Web Services for a lot of Web services products built on top of it. I wouldnt be surprised if the next breed of WS companies take AXIS as the base and

Re: Sun vs Axis?

2002-02-28 Thread Oliver Suciu
Quite the opposite -- it rather seems that Axis is emerging as the standard Java web service container, with support for Sun's JAX-RPC API. To me, it seems more like Axis is starting to become to web services (and JAX-RPC) what Tomcat is today for JSP & servlets -- the reference implementation.

Sun vs Axis?

2002-02-28 Thread Stan Jordan
Axis and Sun seem to be going in different directions, seems to me, when it comes to Web Services. A Web Service developer must choose one or the other. I hate to see the Java world bifurcate like this. (I guess Sun prolly has a speech somewhere called, "The Evil Axis") Comments?

Re: Newbie install problem - alpha3

2002-02-28 Thread Steven Gollery
Len, DeserializationContext is in axis.jar. If you didn't get that as part of your download, then, yes, I'd say you are missing something ;-) Steve Gollery [EMAIL PROTECTED] "DiMaggio, Len" wrote: > Hi everyone, > >I'm missing something basic in trying to get Step 5 in the install guide >

Re: Service returning a bean with a Map member

2002-02-28 Thread R J Scheuerle Jr
Are you using the latest axis code. A soap-enc:Map should automatically be deserialized into a HashMap. Let me know if you continue to have problems. Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115)

Re: wsdl2java and ComplexType from ?wsdl URL

2002-02-28 Thread R J Scheuerle Jr
Could you send me the wsld generated from the classes and the wsdl generated from ?wsdl. Are you using the latest axis code? Also send me your deploy.wsdd file and the java class that implements the service. Rich Scheuerle XML & Web Services Development 512-838-5115 (IBM TL 678-5115)

RE: array serialization problem (user error ?)

2002-02-28 Thread Dave Dunkin
Title: RE: array serialization problem (user error ?) The wsdl is from a deployed axis service. Sorry, I guess I didn't make that part clear before. The problem isn't with the axis stubs (like I said before, .NET stubs fail too), it's with the axis service. I've attached as much of the source

Re: Array Serializer and java.util.List

2002-02-28 Thread R J Scheuerle Jr
I agree with you in principal. The reason for the odd behavior (looking at the class of the List elements) may be due to historical inadequacies. I will change to the code once the doc literal stuff is more stable. (Perhaps Friday). I want to make sure that there are no dependencies on the exi

Re: array serialization problem (user error ?)

2002-02-28 Thread R J Scheuerle Jr
I took a serious look your ServiceOne.wsdl document, and it doesn't appear to match your response files. Here's a snippet of the response file: http://output.getOrderData.ServiceOne.serviceone"; xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/";> <_Record href="#id2"/> <_Re

Service returning a bean with a Map member

2002-02-28 Thread Hrabowski, Jan
I am trying to deserialize a bean which has a Map as a member. // import java.util.Map; public class Order { private String customerName; private Map m; public String getCustomerName() { return customerName; } public void setCustomerName(String name) { customerName = name; }

Newbie install problem - alpha3

2002-02-28 Thread DiMaggio, Len
Hi everyone, I'm missing something basic in trying to get Step 5 in the install guide to run. I'm seeing this exception: Exception in thread "main" java.lang.NoSuchMethodError at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext .java:204) I can't find t

RE: Wsdl2java doesn't generate type classes

2002-02-28 Thread Sedukhin, Igor
You're using document/literal encoding (according to WSDL). The work is in progress on the Axis client to support this. Just change your ASP.NET app to use SOAP-ENC instead of document/literal. Here is how: [System.Web.Services.Protocols.SoapRpcService] public class MyService : System.Web.Service

Re: Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread herve attia
David, It sounds that you only have an issue client side ...not server side like Gus and I have If you have time could you describe your BEA enviromnent ? did you add Axis jar files to the classpath in the startWebLogic.cmd ? How did you deploy axis ? thanks for your answer. herve *

Re: Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread David L. Cole
I am having the same problem u r Gus...something got screwed up in the nightly build WSDL generation I thinklooking into it right now. Gus Delgado

beta release date?

2002-02-28 Thread Oliver Suciu
Hi, Is there a target date for the beta release? Thx, -- Oliver

Re: Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread Gus Delgado
Thanks David I fixed that problem by getting the latest jar from cvs now I'm getting the: White space is required between the public identifier and the system identifier. on the client site and on the server side the same error Herve is getting NullPointerException at java.io.File.(File.java:180)

RE: Wsdl2java doesn't generate type classes

2002-02-28 Thread Simon McClenahan
I'm not familiar enough with Schema to know if this is a workaround for WSDL2Java or a problem with my Schema, but stepping through the code and a bit of experimentation, I found that wrapping the with worked for me. e.g. In my case, I had a complex

Axis/BEA WL 6.1 still issue...

2002-02-28 Thread herve attia
With the latest nighty build 022802, I got this issue below -samples,/axis-samples)] Servlet failed with Exceptionjava.lang.NullPointerException    at java.io.File.(File.java:180)    at org.apache.axis.server.DefaultAxisServerFactory.getServer(Unknown Source) I'm running BEA/Axis on Wi

Re: Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread David L. Cole
That occurred from a ClassLoader error in the commons-logging.jar. I was able to get around the problem by getting the latest commons-loggin.jar v1.2 from axis cvs

Re: Axis/BEA WL 6.1 Can we indicate new location for the server-config.wsdd?

2002-02-28 Thread herve attia
Well I got the same error with nightybuild 022502 !! it sounds something is wrong in my configuration !!!??? Need to know from people who succeeded running BEA WL6.1 how they configure/axis integrate with this app server . herve   - Unknown Exception:org.apache.axis.ConfigurationException: java.la

Re: JWS and Messaging

2002-02-28 Thread Stan Jordan
Ramanathan... I tried it, and also got an exception (below). It would appear that you cannot deploy messaging service with jws. Stan I used nightly download Feb 22. Method not found Method name = e1 Service name = null at org.apache.axis.message.SOAPF

Wsdl2java doesn't generate type classes

2002-02-28 Thread Lasker, Kory
I've been banging my head against the post here trying to consume a web service that's been exposed for our use. However, when I try to generate the client code from the WSDL I get the portType interface, the server-side portType interface, and the client-side stub but none of the complex type

Re: Axis/BEA WL 6.1 Can we indicate new location for the server-config.wsdd?

2002-02-28 Thread Glyn Normington
Herve, >But I still getting the following error when I run "Start server" from the browserusing nighty build 022602 The fix and improved diagnostics [1] were in last night's build [2], so you are not running with them! Glyn [1] http://marc.theaimsgroup.com/?l=axis-dev&m=101483001931003&w=

Re: Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread Gus Delgado
I just tried that version and I keep getting an error: Servlet failed with Exception java.lang.ExceptionInInitializerError: org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor at org.apache.commons.logging

Axis/BEA WL 6.1 for those who have no problems

2002-02-28 Thread herve attia
Hello David, Could you describe your approach to set Axis with BEA WL 6.1 ? Did you replace the weblogic parser : weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl  ?? Did you deploy Axis as a WAR file or just configure your DefaultWebApp directory ? If you could give some informations about

Re: Axis/BEA WL 6.1 Can we indicate new location for the server-config.wsdd?

2002-02-28 Thread herve attia
Hello Glyn, Thanks for your insight. But I still getting the following error when I run "Start server" from the browserusing nighty build 022602   - Exception:org.apache.axis.ConfigurationException: java.lang.NullPointerException: name    at org.apache.axis.configuration.FileProvider.confi

Re: Axis/BEA WL 6.1 Can we indicate new location for the server-config.wsdd?

2002-02-28 Thread David L. Cole
I am using Weblogic 6.1 and this problem doesn't occur IF I use the nightly-build as of 2/25/2002. You might try that. Good Luck, David Cole "Glyn No

How to get Envelope elements in a deployed service

2002-02-28 Thread Rosenfeld, Gary
Can anybody provide an example or point to a right place. I would like to get an accesss (read/write) to a Soap envelope elements (f.e., Header, Fault) in a deployed service Java class. Does Axis provide an API to do it. Any help is greatly appreciated. Gary Rosenfeld Computer Associates Soft

JWS and Messaging

2002-02-28 Thread Krishnamurthy, Ramanathan
Hi, I am trying to use axis messaging as JWS service (i.e drop-in service). I dropped the MessageService.java as MessageService.jws in the webapps/axis/ directory in tomcat. I modified the URL in testMessage.java to point to "http://localhost:8080/axis/MessageService.jws";. But when I execute "t

RE: Performance of WSDL generation (benchmark program included)

2002-02-28 Thread Thomas Börkel
HI! You can optimize tt-bytecode by caching the BCClass in the calling method (please find attached the modified benchmark program), but still bcel is twice as fast. Regards, Thomas > -Original Message- > From: Thomas Börkel > Sent: Mittwoch, 27. Februar 2002 17:41 > To: [EMAIL PROT

RE: Using the generated TestCases

2002-02-28 Thread Egger Oliver
Great! With the latest nighly build (02-27-2002) the junit tasks in ant are back working !!! Thanks a lot! Oliver NEU: NZZ finfox, personal finance, die finanz- und vermögensplanung für private http://finfox.nzz.ch ECOFIN Research and Consulting AG Neumuensterallee 6 CH-8032 Zuerich +41 1 389

Re: Axis/BEA WL 6.1 Can we indicate new location for the server-config.wsdd?

2002-02-28 Thread Glyn Normington
Herve, Believe it or not, I think you got further, at least on the server side. The problem you are seeing seems to be caused by an attachments directory property not being set. If you want to keep trying, you could set a system property axis.attachments.Directory to a suitable directory. Other

Re: java.lang.Exception: No engine configuration file - aborting!

2002-02-28 Thread Glyn Normington
There are two engine configuration files: one for the client-side engine by default called client-config.wsdd and one for the server-side engine by default called server-config.wsdd. It looks like the client-side file is missing. Try comparing the use of the file between your working and failing s

wsdl2java and ComplexType from ?wsdl URL

2002-02-28 Thread Di Maio Guido
Hi there, I've a question for you. I'm fighting with wsdl and complex type. Once I succesfully deploy a service I can get the wsdl description direcly from the URL: http://localhost:/axis/services/?wsdl . That's fine, I can get the wsdl descripton. Since the service makes use of java beans as i/