Re: OMException when receiving a fault message from a server using Axis2 with MTOM enabled

2006-05-26 Thread Ruchith Fernando
Can you please try replacing all your axiom-* jars with the jars available here: http://people.apache.org/~ruchithf/axiom/ If the problem still persists please file a JIRA as Thilina mentioned Thanks, Ruchith On 5/26/06, Jim Peterson <[EMAIL PROTECTED]> wrote: With MTOM enabled on the serv

Re: Axis Security with WSS4J

2006-05-26 Thread Ruchith Fernando
Following links should be helpful: http://ws.apache.org/wss4j/axis.html http://ws.apache.org/wss4j/package.html Thanks, Ruchith On 5/25/06, Ahmet Faruk Nacaroğlu <[EMAIL PROTECTED]> wrote: Hi everbody, I am new in webservices. I have created a web project with eclipse. There are some simple b

axis security properties

2006-05-26 Thread Christian Roth
hi! may be someone can help me with the following quesion: we have soap web services deployed on some systems and would like to access them with axis based clients; the server side is implemented with ibm web sphere technology and also clients based on websphere are working for some security re

Re: new connection for every call! Keep-alive?

2006-05-26 Thread Davanum Srinivas
http://www.wso2.net/2006/05/reuse_share_http_connections On 5/26/06, Morten Steffensen <[EMAIL PROTECTED]> wrote: Hello happy axis users, How do I prevent axis2 client from making a new connection for every call? I have built a client app based on the axis2 v1.0. The client is built like the E

Re: Controlling the reply destination of the SOAP client for IN-OUT sync pattern

2006-05-26 Thread Davanum Srinivas
Ozzie, Please submit a patch and i'd be very happy to check it in. we ported some of the JMS stuff from Axis1 and this may have been a mistake while porting and shows my lack of JMS knowledge :) thanks, dims On 5/26/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Ideally, This is what we

Re: where is this site maintained now?

2006-05-26 Thread Cyrille Le Clerc
Hello Amjad, Osmoticweb site seems to have disappeared. However, gzip compression is nowadays an "out-of-the-box" feature of Axis 1 : Axis 1 has integrated all the compression features that osmoticweb implemented in their custom version of http sender. Thus, even if osmoticweb site has dis

Re: WSDL2Java

2006-05-26 Thread Chathura Herath
Did u try the -xmlbeans option. Anyway it would be helpful if u can post the wsdl. Chathura On 5/26/06, Dale Herrig <[EMAIL PROTECTED]> wrote: Hi, It appears that the WSDL2Java is a single pass compiler. I kept getting, org.apache.axis2.schema.SchemaCompilationException: Type missing! excep

WSDL2Java

2006-05-26 Thread Dale Herrig
Hi,   It appears that the WSDL2Java is a single pass compiler. I kept getting,   org.apache.axis2.schema.SchemaCompilationException: Type missing!   exception. It appears that types have to be defined in the WSDL before they are referenced. However, this does not appear to be a WSDL restrict

RE: Controlling the reply destination of the SOAP client for IN-OUT sync pattern

2006-05-26 Thread ozgur.y.gurkan
Ideally, This is what we want:       String replyDestination = extractReplyDestination(properties);     Destination reply = null;     if( replyDestination != null ) {     reply = m_session.createQueue(replyDestination);

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Chathura Herath
Hi Michele , On 5/26/06, Michele Mazzucco <[EMAIL PROTECTED]> wrote: Hi Chathura, so now my questions are: 1 - What happens if the response doesn't follow the in-out MEP but it is created from scratch by a new ServiceClient?, I think my informations are lost, am I right (but I could save the m

Re: [Axis2] setOperationContext() question

2006-05-26 Thread robert lazarski
You can use WSDLConstants.MESSAGE_LABEL_IN_VALUE and  WSDLConstants.MESSAGE_LABEL_OUT_VALUE . Or, messageContext.getFLOW(), ie: if (messageContext.getFLOW() == MessageContext.IN_FLOW) { ... } else (messageContext.getFLOW() == MessageContext.OUT_FLOW) { ... } HTH, Robert http://www.braziloutsourc

RE: Controlling the reply destination of the SOAP client for IN-OUT sync pattern

2006-05-26 Thread ozgur.y.gurkan
When communicating with the ESB, you are not allowed to create temporary destinations because this could violate security requirements. There has to be a better way to not only use the generated stub but also the built-in JMS Sender without modification.   Thanks, Ozzie Fro

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Michele Mazzucco
Chathura, I'm sorry, but if I use the same handler, how can I distinguish between incoming and outgoing messages? Thanks, Michele Chathura Herath wrote: > The out message context is created at the end of the in chain by the > message receiver only if required(e.g. if the mep is In-Only the > par

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Michele Mazzucco
Hi Chathura, so now my questions are: 1 - What happens if the response doesn't follow the in-out MEP but it is created from scratch by a new ServiceClient?, I think my informations are lost, am I right (but I could save the message context and correlate the request and reply message through messag

RE: Complex type problem

2006-05-26 Thread Suyog Gandhi
Check out the issue AXIS2-770 , may be it is realted to this. I faced problems about serialization of complex types. 2nd level of nesting is not working. Once I re-structure wsdl for only 1 level of nesting, it started working. e.g   following complex type does NOT work: ( Gives null for Name

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Michele Mazzucco
Ok, this is the point. The problem is that it seems they don't work. Michele Samisa Abeysinghe wrote: > Michele Mazzucco wrote: > >> Right, but how can I get the same result, say, in a message handler, >> where you have only the message context? >> >> > If I understand your problem correct, yo

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Chathura Herath
Following was for server side header manipulation btw. Regards Chathura On 5/26/06, Chathura Herath <[EMAIL PROTECTED]> wrote: The out message context is created at the end of the in chain by the message receiver only if required(e.g. if the mep is In-Only the particular message receiver will no

Re: [Axis2] Returning a MTOM message causes IOException (closed stream)

2006-05-26 Thread Thilina Gunarathne
>/>>--MIMEBoundaryurn_uuid_19E43A1912FEAF555111483041641261>content-type: image/jpeg>content-transfer-encoding: binary >content-id: <1.urn:uuid:[EMAIL PROTECTED]>>ÿØÿà  Didn't you had a trailing boundary after this in your message...? Also try using FileDataSource instead of ImageDataSource...  

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Chathura Herath
The out message context is created at the end of the in chain by the message receiver only if required(e.g. if the mep is In-Only the particular message receiver will not create the out message context). Anyway, what you have described below isnt the anticipated programming model of axis2. Here is

[axis2] Can my service get a notification for application shutdown / session ending?

2006-05-26 Thread sol myr
Hi,   Using Axis2, can my Service class get a notification when the web application shuts down ? (I'm managing some resources - temporary file directory, TCP connection pool, etc - which should be cleared when the web application is shut down or restarted).   Also, is there any notion of 'sess

WSDL for passworded Service?

2006-05-26 Thread MacDermid, Kenny
Hello, I'm looking to get the wsdl for a middle-tier application for which I don't yet have the service password. I can retrieve the wsdl's for the other services by simply adding '?wsdl' to the end, but this service requests authentication even when just requesting the wsdl. Is there any way to

Controlling the reply destination of the SOAP client for IN-OUT sync pattern

2006-05-26 Thread ozgur.y.gurkan
I have a question about the JMS usage in Axis2. I see the following snippet in the SendSession inner class:       byte[] call(JMSEndpoint endpoint, byte[] message, long timeout, HashMap properties)     throws Exception {     Destination reply = create

Axis2[1.0] missing POM file on Maven2 repository

2006-05-26 Thread Gopal Patwa
Axis2 Team, Is it possible to upload a axis2 1.0 pom.xml on maven2 repository. http://www.ibiblio.org/maven2/axis2/axis2/1.0/ I get this error if pom file is not uploaded, when I manually added my dependencies. May this is maven2 problem Project ID: ws-commons:axiom-impl Reason: Error getting

REPOST: String[] for xsd:anyType with axis1.2.1

2006-05-26 Thread Ravi Krishnamurthy
Hello: Could anyone give any pointers on this one. It is very urgent. Thanks, Ravi Ravi Krishnamurthy wrote: XinJun/Anne: I was monitoring the soap message using the tcp monitor. The soapresponse for the RPC is as below:    "http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http

[Axis2] WSDL2Code ?

2006-05-26 Thread Paul Gonchar
Has anyone used WSDL2Code generator successfully? I keep getting code that contains call to org.apache.axiom.om.OMElement.Factory.parse(). Axiom spec says OMElement is an interface and it can't contain any Factory. Any ideas? Thanks! Paul. P.S. Data binding mode does not matter - in all cases I

Re: QUESTION: meaning of message - FileProvider - Configuration file read-only so engine configuration changes will not be saved

2006-05-26 Thread Jeff Greif
You could probably set the logging level to Warn for the logging category org.apache.axis.configuration.FileProvider. (The message you're trying to suppress is of level Info.) You'd probably need to edit the logging.properties file in the axis jar or alter the logging configuration programmatica

[Axis 2]Deploying a Service and WSDL woes

2006-05-26 Thread James Loghry
Hi all, Due to a need for supported Asynchronous messaging, I'm attempting to migrate services from Axis 1.3 to Axis 2 1.0. I'm having trouble deploying a service. When I deploy a service, a archive it into a .aar file, along with its services.xml file in the META-INF folder. I upload it to the

Re: Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Gopal Patwa
Thanks guys, now I am more clear weblogic 9.1 behaviour with axis2.war I like 2nd option b'cos with 1st option I can't deploy exploded war in production -Gopal -- View this message in context: http://www.nabble.com/Axis2-1.0-+war+in+Weblogic+9.1-t1685447.html#a4579488 Sent from the Axis - Us

Re: QUESTION: meaning of message - FileProvider - Configuration file read-only so engine configuration changes will not be saved

2006-05-26 Thread ANTHONY ZIOLKOWSKI
I see. Is there anyway of supressing the message or eliminating entirely? My applet will be polling frequently and the message appears in the console on every poll.- Original Message From: Jeff Greif <[EMAIL PROTECTED]>To: axis-user@ws.apache.orgSent: Friday, May 26, 2006 11:53:20 AMSubject

Re: Type missing!

2006-05-26 Thread Martin Gainty
Dale- Can you post the WSDL you are using for us to look at? Thanks,Martin -- *This email message and any files transmitted with it contain confidentialinformation intended only for the person(s) to whom this email message is

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Samisa Abeysinghe
Michele Mazzucco wrote: Right, but how can I get the same result, say, in a message handler, where you have only the message context? If I understand your problem correct, you want to add a header from a handler. If that is the case, you can access the SOAP envelope and use its API to get t

Re: QUESTION: meaning of message - FileProvider - Configuration file read-only so engine configuration changes will not be saved

2006-05-26 Thread Jeff Greif
ANTHONY ZIOLKOWSKI wrote: While running an axis client under in a web browser applet, I get the message - FileProvider - Configuration file read-only so engine configuration changes will not be saved. What does it mean? Applets usually run in a sandbox which prevents them from writing to the fi

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Michele Mazzucco
Right, but how can I get the same result, say, in a message handler, where you have only the message context? Michele Samisa Abeysinghe wrote: > Michele Mazzucco wrote: > >> Hi all, >> >> is it possible to get the same result with outgoing messages as well by >> using the setOperationContext() (

Re: [Axis2] Namespaces with and without security turned on

2006-05-26 Thread Marcus Ludvigson
Of course,   JIRA: http://issues.apache.org/jira/browse/AXIS2-771   Regards, Marcus Ludvigson  On 5/26/06, Eran Chinthaka <[EMAIL PROTECTED]> wrote: Seems like a bug in ns handling of DOOM. Can you please create a JIRAissue ( http://issues.apache.org/jira/browse/AXIS2).Ruchith, you wanna try this

RE: Type missing!

2006-05-26 Thread Dale Herrig
The actual exception being thrown is:   Exception in thread "main" org.apache.axis2.wsdl.codegen.CodeGenerationException: java.lang.RuntimeException: org.apache.axis2.schema.SchemaCompilationException: Type missing!    at org.apache.axis2.wsdl.codegen.CodeGenerationEngine.generate(Code

Re: Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Junaid . Bhatra
>>> If you are interested in distributing Axis2 with a set of fixed pre-deployed services/modules, you can try to put those services/modules directly within the war, and deploy the modified war. I doubt if this will work in all containers since Axis2 relies on the repository being a regular folder

Re: [Axis2] Namespaces with and without security turned on

2006-05-26 Thread Eran Chinthaka
Seems like a bug in ns handling of DOOM. Can you please create a JIRA issue (http://issues.apache.org/jira/browse/AXIS2). Ruchith, you wanna try this ? Marcus Ludvigson wrote: > Hi, > > I am executing a webservice with and without security turned on. The > result when executing the WS with se

Type missing!

2006-05-26 Thread Dale Herrig
Hi,   I am using WSDL2Java from AXIS2 1.0 release version and getting the error"axis2.schema.SchemaCompilationException: Type missing!Is there any way I can figure out what the "Type missing" is. XMLSpy saysthe WSDL file is syntactical correct but apparently WSSD2Java thinks there isa semantic

[Axis2] Namespaces with and without security turned on

2006-05-26 Thread Marcus Ludvigson
Hi,   I am executing a webservice with and without security turned on. The result when executing the WS with security turned on is that I get excessive amount of namespaces ( axis2ns23, axis2ns24, axis2ns25, etc) compared to executing without security. I also get a ArrayIndexOutOfBoundsException t

RE: AXIS2 1.0

2006-05-26 Thread Suyog Gandhi
Created JIRA issue: AXIS2-770. Let me know if you need more information. Thanks & Regards, Suyog -Original Message- From: Deepal Jayasinghe [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 6:57 AM To: axis-user@ws.apache.org Subject: Re: AXIS2 1.0 Hmm , can u pls create a JIRA ,I th

Re: [Axis2] setOperationContext() question

2006-05-26 Thread Samisa Abeysinghe
Michele Mazzucco wrote: Hi all, is it possible to get the same result with outgoing messages as well by using the setOperationContext() (it seems to me that the outMsgCtx = opctx.getMessageContext(WSDLConstants.MESSAGE_LABEL_OUT_VALUE); into the setOperationContext() doesn't work as espected

QUESTION: meaning of message - FileProvider - Configuration file read-only so engine configuration changes will not be saved

2006-05-26 Thread ANTHONY ZIOLKOWSKI
While running an axis client under in a web browser applet, I get the message - FileProvider - Configuration file read-only so engine configuration changes will not be saved. What does it mean?

RE: Incorrect parameter type in WSDL2Java generated stub method OMElement instead of specific type

2006-05-26 Thread Suyog Gandhi
No I didnot try your zip, .. I just crosschecked with my running code. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 10:45 AM To: axis-user@ws.apache.org Subject: RE: Incorrect parameter type in WSDL2Java generated stub method OMElemen

RE: Incorrect parameter type in WSDL2Java generated stub method OMElement instead of specific type

2006-05-26 Thread ozgur.y.gurkan
I tried with 1.0, too. I will try with -s option to see if the parameter is getting added. Have you tried with my zip contents? Thanks, Ozzie -Original Message- From: Suyog Gandhi [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 10:44 AM To: axis-user@ws.apache.org Subject: RE: Incor

RE: Incorrect parameter type in WSDL2Java generated stub method OMElement instead of specific type

2006-05-26 Thread Suyog Gandhi
I have created the stub in a same way u creating, and it is creating proper stubs for me. But I didn't use -s option. Also I am using WSDL2Java from AXIS2 1.0 release version, not a snapshot. Hoep it helps. Suyog -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: F

Re: REPOST FOR HELP: Axis client logging from web applet causes security error

2006-05-26 Thread ANTHONY ZIOLKOWSKI
Nevermind. I found the latest build, used it and it works perfectly.- Original Message From: ANTHONY ZIOLKOWSKI <[EMAIL PROTECTED]>To: [EMAIL PROTECTED]; axis-user@ws.apache.orgCc: robert lazarski <[EMAIL PROTECTED]>Sent: Friday, May 26, 2006 7:31:01 AMSubject: Re: REPOST FOR HELP: Axis cli

[Axis2] setOperationContext() question

2006-05-26 Thread Michele Mazzucco
Hi all, is it possible to get the same result with outgoing messages as well by using the setOperationContext() (it seems to me that the outMsgCtx = opctx.getMessageContext(WSDLConstants.MESSAGE_LABEL_OUT_VALUE); into the setOperationContext() doesn't work as espected )? If no, is there any way

new connection for every call! Keep-alive?

2006-05-26 Thread Morten Steffensen
Hello happy axis users, How do I prevent axis2 client from making a new connection for every call? I have built a client app based on the axis2 v1.0. The client is built like the EchoBlockingClient userguide sample. It seems that every call is done by a opening a new connection to the server.

How do I get wsdl2java to include code in generated stub for custom serializers/deserializers?

2006-05-26 Thread Ryan Norris
> I have written a custom serializer and deserializer and I would like the stub > that is generated from wsdl2java to register them for one of my objects. The > generated stub's constructor contains code that registers Axis' serializers > and deserializers, however, I can't figure out how to g

where is this site maintained now?

2006-05-26 Thread Amjad Abu Zur - TusAlas
  Hi all:   I need to make the compression with the old version of axis. At the final part of this site   http://wiki.apache.org/ws/FrontPage/Axis/GzipCompression     there is a reference to the following one:     http://www.osmoticweb.com/axis-soap-compression.htm     But thi

RE: Incorrect parameter type in WSDL2Java generated stub method OMElement instead of specific type

2006-05-26 Thread ozgur.y.gurkan
Has no-one ever run into this problem? This in reference to Axis2. Thanks, Ozzie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 1:32 PM To: axis-user@ws.apache.org Subject: RE: Incorrect parameter type in WSDL2Java generated stub method O

Re: Complex type problem

2006-05-26 Thread robert lazarski
The other thing is make sure your vendor supports wsdl2java - jboss does not, for example (although they run a modified version of axis 1.2 internally). The problem I had was similair, although IIRC correctly I was getting ser / deser errors, not null. It was working on simple types but failing on

Re: Complex type problem

2006-05-26 Thread Roy
I think that this is not exactly my problem. I can call normally the service from my client when i use simple types. When i try to pass complex types i face the problem.robert lazarski <[EMAIL PROTECTED]> έγραψε: You're trying to use a non-ejb client to connect to a Web Service that implements impl

Re: get server name

2006-05-26 Thread Matteo Cremolini
Thanks!!! i will try!! Matteo Michele Mazzucco ha scritto: Yes, you can in the usual way (i.e. through java.net.InetAddress). Michele Matteo Cremolini wrote: Hi, can i retrieve (at run-time) in my web servcie the name or address of the server in them my web service is deploye

Re: Axis2: REST-Style with HTTP-GET - how to add parameters?

2006-05-26 Thread Christoph Miksovic
Thank you for your help! But how can I configure Axis2 to generate a WSDL that does have a GET binding? Thank you very much. Cheers, Christoph "Anne Thomas

Re: Complex type problem

2006-05-26 Thread robert lazarski
You're trying to use a non-ejb client to connect to a Web Service that implements implements SessionBean, is that correct? The only way I got that to work - using jboss - was something like...  // remote ejb / web service  private CallCentreWebEndpoint endpoint;  String wsdl_loc   = "http://local

[ADB] Problem with conversion object -> OMElement

2006-05-26 Thread vandenberget
Hi, I'm trying to convert an object to an OMElement, as described in the "ADB Howto" (http://ws.apache.org/axis2/1_0/adb/adb-howto.html). In fact, I'm doing exactly the same as in the code snippets in the howto -- using the same xml and code examples. I'm hitting a problem when I have created th

Re: Complex type problem

2006-05-26 Thread Roy
I tried the beanmapping too but it didn't work. This is the the complex type i want to send and the deploy.wsdd file:Deploy.wsdd:                                                                                            ---public class RequestData implements java.io.Serializable{private String x;p

Re: REPOST FOR HELP: Axis client logging from web applet causes security error

2006-05-26 Thread ANTHONY ZIOLKOWSKI
I'm sorry. I do not know how to do that.- Original Message From: Davanum Srinivas <[EMAIL PROTECTED]>To: axis-user@ws.apache.org; ANTHONY ZIOLKOWSKI <[EMAIL PROTECTED]>Cc: robert lazarski <[EMAIL PROTECTED]>Sent: Thursday, May 25, 2006 10:40:47 PMSubject: Re: REPOST FOR HELP: Axis client lo

Deployment with JDK5 and annotations?

2006-05-26 Thread Larry Meadors
Are there any examples of doing annotation-based deployment of web services with axis? I can't help but think that if I can generate all of the XML that I need to use for deployment, that I could auto-deploy web services based on annotations, but I haven't seen anything like that anywhere in the

Re: get server name

2006-05-26 Thread Michele Mazzucco
Yes, you can in the usual way (i.e. through java.net.InetAddress). Michele Matteo Cremolini wrote: > Hi, > > can i retrieve (at run-time) in my web servcie the name or address of > the server in them my web service is deployed??? > Any suggestion?? > > Matteo > > > --

Re: [Axis2]How to process SOAP header in service class? or handler class?

2006-05-26 Thread Deepal Jayasinghe
Hi Sukie; pls see my comment blow; 蘇 軼(CEC) wrote: >hi Chinthaka, > >Thank you for your help ! > >Please let me ask tow more question : > >1. If I don't use RawXMLINOutMessageReceiver, I can't >process headers in service method? > > If you use any of the default message receivers in Axis2 y

Re: [Axis2] How to build aar and Axis2 war with Maven2?

2006-05-26 Thread Deepal Jayasinghe
Hi Dave ; I dont think you need to compile Axis2 code , what I think is you have to add dependency into your project to pick Axis2 jars from apache repo. Dave Hoffer wrote: > I would like to start using Axis2 in a new project. The project will > use Maven2 as the build system. How can I integrate

Re: AXIS2 1.0

2006-05-26 Thread Deepal Jayasinghe
Hmm , can u pls create a JIRA ,I think this a bug. Suyog Gandhi wrote: >I am using AXIS2, RPCMessageReceiver. > >I am passing following obbject as a parameter in one of my call. > >WMemberInfo > |- ID > |- WMemberAttribute [] > |- Name > |- Value >

get server name

2006-05-26 Thread Matteo Cremolini
Hi, can i retrieve (at run-time) in my web servcie the name or address of the server in them my web service is deployed??? Any suggestion?? Matteo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Ali Sadik Kumlali
Thanks Rodrigo. --- Rodrigo Ruiz <[EMAIL PROTECTED]> wrote: > Hi, > > The behaviour you describe is perfectly normal with regard to the > Servlet Specification. > > When deploying Axis 2 as a war, the container is not creating a > "read-write" directory structure, and peforms all accesses dir

RE: Pls Help: Server returned HTTP response code: 500 for URL

2006-05-26 Thread Amjad Abu Zur - TusAlas
Dear ajax:   The server accept gzip encoding.     De: ajax chelsea [mailto:[EMAIL PROTECTED] Enviado el: viernes, 26 mayo, 2006 11:30 Para: axis-user@ws.apache.org Asunto: Re: Pls Help: Server returned HTTP response code: 500 for URL   it seems that ("Accept Encoding","gzi

Re: [Axis2] ServiceClient - empty SOAP headers

2006-05-26 Thread Brian De Pradine
Hello, It sounds like you haven't engaged the Addressing module in your client. See the EchoNonBlockingDualClient example in the Axis2 User's Guide for details on how to do this. Cheers Brian DePradine Web Services Development IBM Hursley External  +44 (0) 1962 816319         Internal 246319

Re: Pls Help: Server returned HTTP response code: 500 for URL

2006-05-26 Thread ajax chelsea
it seems that ("Accept Encoding","gzip") should be set at server side.2006/5/26, Amjad Abu Zur - TusAlas <[EMAIL PROTECTED] >:Hi all:I have this code:urlConn.setRequestProperty ("Accept Encoding","gzip");printout = new DataOutputStream(newGZIPOutputStream(urlConn.getOutputStream())); //create a

Pls Help: Server returned HTTP response code: 500 for URL

2006-05-26 Thread Amjad Abu Zur - TusAlas
Hi all: I have this code: urlConn.setRequestProperty("Accept Encoding","gzip"); printout = new DataOutputStream(new GZIPOutputStream(urlConn.getOutputStream())); //create a gzipped stream String content = "http://schemas.xmlsoap.org/soap/envelope/\"; xmlns:SOAP-ENC=\"http://schemas.xmls

Re: Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Rodrigo Ruiz
Hi, The behaviour you describe is perfectly normal with regard to the Servlet Specification. When deploying Axis 2 as a war, the container is not creating a "read-write" directory structure, and peforms all accesses directly through the war archive, instead of unpacking it. Whether to unpack

Re: Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Ali Sadik Kumlali
Hi Gopal,The same problem exists with WL8.1 SP4. What I saw there, when the war is uploaded by using console application, war is not totally extracted. Only some of subfolders and the files are extracted. May be the same extraction problem exists on WL9.1, too.I don't know why this happens, though.

Re[2]: Axis2 High memory usage, OutOfMemory exception

2006-05-26 Thread Andreas Hörnicke
If you really want to store configurations from a service or module i think you'd better use their contexts (again my proposal of adding a init-method to the AbstractMessageReceiver to do some one-time operations :) instead of http sessions. Because if some client-api lacks the feature of sessions

Axis2[1.0] war in Weblogic 9.1

2006-05-26 Thread Gopal Patwa
I tried axis2.war deploying on weblogic 9.1 as war, deployment was sucessful but unable to load version service. But if I use exploded war it works.. Any idea why it's happening, did any one had success runing axis2.war under weblogic 9.1 Thanks Gopal -- View this message in context: http://ww

Axis2[1.0] BUG in WSDL2Java Error running test

2006-05-26 Thread Gopal Patwa
Is this is a BUG I have used WSDL2Java to generate code and test class, Axis2 1.0, I get this error when I run it, I have copied schema and wsdl to can recreate this problem after generating code from WSDL2Java and running test I get this problem with all my wsdl?? Even I tried with sample

Re: Axis2 High memory usage, OutOfMemory exception

2006-05-26 Thread Rodrigo Ruiz
Hi, AFAIK, Axis 1 did not create HTTP sessions. I believe Axis 2 does, and that may be the difference. The suggestion of Andreas may work for you now, but I guess it may lead you to some problems in a future, as other services or modules may need the session to store configurations. Anyway,