server-config.wsdd

2005-01-28 Thread Tysnes Are Thobias
Title: Message Hello! Probably a simple question, but.. Is runtime changes to server-config.wsdd read by the axis engine !? (i.e is it possible to change the attachments.Directory property at runtime !?) Cheers, Are T. Tysnes

java.lang.ExceptionInInitializerError in AxisServlet

2005-01-28 Thread Petese Fabienne (CSE)
Title: Nachricht Hello, I've installed my Webapps with Axis on my Apache Tomcat 4.1.30 Server. When I try the AxisServlet an error message come . Can somebody help me please ? Error message text : StandardWrapperValve[AxisServlet]: Allocate exception for servlet

Axis web service send and receiving DIME attachments

2005-01-28 Thread Brammer, Steve
Hi, I am working on a project that requires interop between Java (web services/axis/tomcat) and .Net (C#/ASP.Net etc). I have some web services I am developing using Axis and I want them to be consumed by a .Net application. I have currently got a simple example working where I am able to

Returning array of complex-type

2005-01-28 Thread Lubomir ILanovsky
hi, I have a web service which should return an array of complex-types. But it does not work properly. My complex type looks like this: public class UctovnyZapisDTO { int id; String doklad; float suma; ... } Fields are of type int, float and String only. Type

AxisServlet JWS Compilation Error

2005-01-28 Thread John Delaney
Gentlefolk, I have installed Axis 1.2 and am trying to get it to function under Tomcat 5.0. To get happyaxis.jsp to run I had to configure Tomcat to set ant to fork off the jsp compiles, as I am running java 1.5. Without this the compile gets an error which indicates the first java class that it

Re: server-config.wsdd

2005-01-28 Thread jayachandra
I think, if it's an isolated modification from external sources its not reflected. Where as if it's something like dynamic deployment through AdminClient then the changes are read. The funda is at the time of Tomcat start-up itself the engine configuration etc. are populated. Unless you force (as

RE: server-config.wsdd

2005-01-28 Thread Tysnes Are Thobias
Thanks a lot Jayachandra! Maybe this is somthing which should be possible in the future !? Cheers, Are T. Tysnes -Original Message- From: jayachandra [mailto:[EMAIL PROTECTED] Sent: 28. januar 2005 12:30 To: [EMAIL PROTECTED] Subject: Re: server-config.wsdd I think, if it's an

Configurable MAX_MEMORY_DISK_CACHED

2005-01-28 Thread Tysnes Are Thobias
Hello! Wonder if anyone knows the theory behind the 16kb limit on in-memory Attachments !? And I second this post: http://marc.theaimsgroup.com/?l=axis-userm=110674506306782w=2 (and several others) in making MAX_MEMORY_DISK_CACHED a configurable property Cheers, Are T. Tysnes

Re: Problem using Axis RC2 against JBoss 4.0.1

2005-01-28 Thread Joel Rosi-Schwartz
Dims, I owe you an apology. I jumped to the wrong conclusion when I read this message the first time. Last night while mulling over the problem I realised that the dates did not jive and when I checked this again this morning I found out that you are absolutely right here. The changes to

Re: Problem using Axis RC2 against JBoss 4.0.1

2005-01-28 Thread Davanum Srinivas
no problem. No apologies needed :) -- dims On Fri, 28 Jan 2005 11:11:15 +, Joel Rosi-Schwartz [EMAIL PROTECTED] wrote: Dims, I owe you an apology. I jumped to the wrong conclusion when I read this message the first time. Last night while mulling over the problem I realised that the

Re: AxisServlet JWS Compilation Error

2005-01-28 Thread Davanum Srinivas
John, Please log a enhancement request. thanks, dims On Fri, 28 Jan 2005 22:15:15 +1100, John Delaney [EMAIL PROTECTED] wrote: Gentlefolk, I have installed Axis 1.2 and am trying to get it to function under Tomcat 5.0. To get happyaxis.jsp to run I had to configure Tomcat to set ant to

Re: Using complex types Axis and .Net

2005-01-28 Thread TMG
It is my understanding that with document/literal, "message"s must be (Bspecified using part name="xx" element="y:zzz" syntax, and that you (Bcan NOT use part name="xx" type="xsd:string". (B (BThus, the AddOrderRequest and GetOrderRequest messages need to reference (Belements from the schema

Re: Returning array of complex-type

2005-01-28 Thread Lubomir ILanovsky
I've just found out that everything works fine if I set the sendMultiRefs parameter to false in server-config.wsdd. globalConfiguration ... parameter name=sendMultiRefs value=false/ ... /globalConfiguration Lubomir ILanovsky wrote: hi, I have a web service which should return an array of

My solution to embed axis in a non webapp

2005-01-28 Thread Colin Surprenat
Hi, After looking at ways to embed Axis into my application that does not run in the context of a web application server servlet I came up with the following solution. Ultimately I wanted to be able to control Axis programmatically but my solution is an acceptable compromise and is quite

WSDLException: Can't find prefix for...

2005-01-28 Thread Greg Cawthorn
I am having a problem with a web service under Axis 1.1 in Tomcat 5. The service is a stub for a data handler and declares CRUD methods for a profile object which I have built custom serializers for and declared in my deployment descriptor. The interface looks like this: public void

Re: WSDLException: Can't find prefix for...

2005-01-28 Thread TMG
Greg, Without being able to review all the parts, my first guess is that you have inconsistencies with your namespace. It appears you are using an URN namespace xmlns:ns=urn:notification:voxsurf.com in the wsdd, and the wsdl has a URL namespace xmlns:http://notification.voxsurf.com;. Tom

Sending binary data as byte array

2005-01-28 Thread Brammer, Steve
Hi, I have implemented a web service using axis and I consume the web service from .Net. I have a need to send and receive binary data (office documents) but I haven't been able to work out how to use DIME attachements, so I have worked around this by simply turning the filestream into a byte

RE: Sending binary data as byte array

2005-01-28 Thread Hamilton, Ian [IT]
Steve, Check out this article: http://www-106.ibm.com/developerworks/library/ws-tip-noattach.html it gives some insight into what you ask. I also know that sending binary data as a byte array increases the data's size by about 33%, according to what I've read. That's because of the base64

Problem with byte[][]

2005-01-28 Thread Brian Gladish
I have a Java method declared to take byte[][] and return byte[][]. Axis generates the following type: - wsdl:types - schema targetNamespace=http://localhost:8080/axis/services/TigerLogic xmlns=http://www.w3.org/2001/XMLSchema import

is there a way to avoid duplication in wsdd? specifically for typeMappings

2005-01-28 Thread Jay Glanville
Hello all. I know that there are ways to reduce duplication in the WSDD with respect to the handlers. I'd like to know if there is a similar feature for type mappings? For example, I know that I can define a handler before the global configuration element, like this: handler

MTOM, XOP support

2005-01-28 Thread Eugene Shershnev
http://www.eweek.com/article2/0,1759,1756174,00.asp Hi All, When do you think the implementation can be expected from Axis team? Thanks, Eugene

Re: MTOM, XOP support

2005-01-28 Thread Davanum Srinivas
Are u willing to help? -- dims On Fri, 28 Jan 2005 15:38:02 -0500, Eugene Shershnev [EMAIL PROTECTED] wrote: http://www.eweek.com/article2/0,1759,1756174,00.asp Hi All, When do you think the implementation can be expected from Axis team? Thanks, Eugene --

Re: Securing an Axis deployment

2005-01-28 Thread Tim K. (Gmane)
Anyone out there who uses Axis on a production system and has disabled these features? Thanks. Tim Tim K. (Gmane) wrote: Hello, How can I turn off these features for an Axis production deployment: 1) Disable the generation of WSDL when one goes to http://server:port/app/ws/ServiceName?wsdl 2)

Re: server-config.wsdd

2005-01-28 Thread Mike Barton
The short answer to your question is no. But it is possible to perform hot updates to wsdd. Have a look at WSABI, an open-source Axis administration tool. It provides a graphical interface for managing Axis deployments, including the ability to manage deployment descriptors. Some useful

Re: Securing an Axis deployment

2005-01-28 Thread Mike Barton
Tim, Yes, we have done something very similar to that by using custom Axis handlers and web app filters. Mike Tim K. (Gmane) wrote: Anyone out there who uses Axis on a production system and has disabled these features? Thanks. Tim Tim K. (Gmane) wrote: Hello, How can I turn off these features

Re: HELP! DLLs and Axis

2005-01-28 Thread Matt_Dunnerstick
No bites on this one yet? Any ideas to help me properly load Windows DLLs into Axis such that the Axis JVM will not throw me Access Violation errors when accessing these DLLs? Either what I'm asking for no one else is doing.. or it's so n00b that no one else is answering :) Many thanks-- Matt

Re: Securing an Axis deployment

2005-01-28 Thread Tim K. (Gmane)
OK, so it's not possible via Axis' configuration. That's what I wanted to know so I can look at alternatives. I guess one alternative is to patch the code, maybe even add an option so I can flip it between dev and production envs. Tim Mike Barton wrote: Tim, Yes, we have done something very

Re: MTOM, XOP support

2005-01-28 Thread thilina Gunarathne
Hi, Currently I'm working on a MTOM prototype for Axis 2. It's almost complete and working. But it'll take little time (2 weeks) to release for ur comments, cause i'm having my Uni exams these days. regards, Thilina Gunarathne On Fri, 28 Jan 2005 15:38:02 -0500, Eugene Shershnev [EMAIL

Re: [Announce] Internationalization progress of Axis (fwd)

2005-01-28 Thread Toshiyuki Kimura
To: $BpJs$N$&$A!";d$NJ}$G!V2x$7$$Lu!W$H$J$C$F$$$k2U=j(B $B$r8+D>$7$F$_$^$7$?!#(B (B (Bhttp://www.home.isp.ne.jp/~s-kodama/ite-way/index.php (B $B!!0J2 $B$7$^$9!#(B (B $B59$7$/$*4j$$$7$^$9!#(B (B---