Re: Axis2/C 1.2 breaks my webservice

2008-02-29 Thread Samisa Abeysinghe
Subra A Narayanan wrote: You mean 1.1? Sorry for the confusion. Yes I meant Axis2 1.1 This is a thread issues as per your description. Hence I wonder if gdb trace would lead to the exact problem, but it will lead to some clues as to where it is hanging etc.

Re: Axis2/C 1.2 breaks my webservice

2008-02-29 Thread Senaka Fernando
Hi Subra, I suggest you check out from a branch and try running ./build.sh so that the configure scripts will be regenerated to support your CFLAGS. If this also fails, may be it is the -static-libgcc -shared combination that gives trouble. And, also, this can be caused by someone hard-coding

Re: Axis2/C 1.2 breaks my webservice

2008-02-29 Thread Manjula Peiris
Hi subra, I compiled the program in [1] to an external library after replacing the main function to a general c function. Then call this function through my echo service. It worked fine for me with the current svn. As you see it is a multithreaded program using semaphores. Following are my CFLAGS

Axis2/C and UDDI

2008-02-29 Thread Sam Carleton
I am new to web services and I am still trying to figure out how all the pieces going together. My final objective is to write bunches of web services using Axis2/C and served up by Apache that can be consumed by a .Net Windows application. According to this book I am reading online, UDDI are

Re: Axis2/C and UDDI

2008-02-29 Thread Dinesh Premalal
Hi Sam, Please follow axis2c_manual [1]. thanks, Dinesh 1. http://ws.apache.org/axis2/c/docs/axis2c_manual.html On Sat, Mar 1, 2008 at 8:20 AM, Sam Carleton [EMAIL PROTECTED] wrote: I am new to web services and I am still trying to figure out how all the pieces going together. My

Re: Axis2/C and UDDI

2008-02-29 Thread Senaka Fernando
Hi Sam, OK, I believe you are looking for WSDL generation for C Services. You don't see a WSDL file because in .NET, when you point to your URL you will see an ASMX test interface rather. That is .NET specific, and we don't have a similar alternate. Calling

mtom speed

2008-02-29 Thread mark . nuessler
hello users, i am running a axis2 (1.3) server inside tomcat6. when i send and receive files using mtom via a C# client i noticed that sending files to the server needs up to 4 times longer than receiving files from the server. question 1, does anyone of you noticed this behavior between axis2

MTOM with JMS??

2008-02-29 Thread callagc4
Hi, I am having a problem using MTOM with JMS. I am using Axis2 version 1.3. I have tried both jaxbri data binding and adb data binding. Example wsdl and xsd are outlined below. JaxBRI data binding: The generated code after JaxBRI does not seem to have the appropriate MTOM awareness. Does

MTOM with HTTP??

2008-02-29 Thread callagc4
Hi, I have created a sample service for uploading a binary document. This is defined using the appropriate xsd:base64Binary type. I am using Axis2 version 1.3. I am using ADB data binding. I have enabled MTOM on the client by setting the Constants.Configuration.ENABLE_MTOM property to true.

Re: MTOM with HTTP??

2008-02-29 Thread Paul Fremantle
I'm guessing that when the data is being set into the OMText element its not set as optimize=true. Paul On Fri, Feb 29, 2008 at 11:27 AM, callagc4 [EMAIL PROTECTED] wrote: Hi, I have created a sample service for uploading a binary document. This is defined using the appropriate

Re: [Axis2] JAXB integration status

2008-02-29 Thread andreas netter
We tried the latest nightly build, but codegeneration with jaxbri still creates a faulty stub as the (released) axis2 versions before: there is a problem with the generation of soap header elements. we use soap headers for our messages to pass meta information. but the headerpart of the wsdl

Re: [Axis2] JAXB integration status

2008-02-29 Thread Davanum Srinivas
Andreas, Please create a new JIRA issue and upload your WSDL/xsd's. thanks, dims On Fri, Feb 29, 2008 at 8:50 AM, andreas netter [EMAIL PROTECTED] wrote: We tried the latest nightly build, but codegeneration with jaxbri still creates a faulty stub as the (released) axis2 versions before:

Re: MTOM with HTTP??

2008-02-29 Thread Thilina Gunarathne
Hi, Try using the xmime schema as mentioned in http://ws.apache.org/axis2/1_3/mtom-guide.html#25.. thanks, Thilina On Fri, Feb 29, 2008 at 6:51 AM, Paul Fremantle [EMAIL PROTECTED] wrote: I'm guessing that when the data is being set into the OMText element its not set as optimize=true.

Re: MTOM with HTTP??

2008-02-29 Thread callagc4
Hi Paul, At what point is the OMText node created? I have debugged the code to the oint where the toEnvelope() method is called on the stub, the optimizeContent() method does return true. Should this not mean that the attachment is sent outside of the envelope? Thanks, Cathal pzfreo wrote:

Re: MTOM with HTTP??

2008-02-29 Thread Thilina Gunarathne
BTW are you using Rampart... I'm not sure about the MTOM behavior with Rampart. There were known issues with MTOM+Rampart, which I'm not aware anybody fixing them:(.. Please test without WSSec and report a JIRA to Rampart if it works without security.. Thilina On Fri, Feb 29, 2008 at 10:52 AM,

Re: Problem with xs:base64Binary

2008-02-29 Thread Thilina Gunarathne
First of all I wonder why do you want to send a plain string using base64Binary.. Is it a huge string and do you want to send it as an attachement?.. Use org.apache.axiom.attachments.ByteArrayDataSource.. String test = test; ByteArrayDataSource dataSource = new

RE: MTOM with HTTP??

2008-02-29 Thread Narayan Dhillon
Try following in your client to force MTOM with WS-Securty... stub._getServiceClient().getOptions().setProperty(WSSHandlerConstants.US E_DOOM, Constants.VALUE_TRUE); -Original Message- From: callagc4 [mailto:[EMAIL PROTECTED] Sent: 29 February 2008 11:27 To: axis-user@ws.apache.org

RE: MTOM with HTTP??

2008-02-29 Thread callagc4
Hi Narayan, Thanks a million fro your help, setting this property worked for me and it is now sending the data correctly, i.e via reference. Agains thanks to all for your replys Cathal Narayan Dhillon wrote: Try following in your client to force MTOM with WS-Securty...

RE: Nested return types from POJO web service method -shouldn't this work?

2008-02-29 Thread Kraus, David
I have verified that I can correctly use nested return types in a POJO service. Now I need to figure out why my more complex POJO service is not working correctly Dave From: Kraus, David Sent: Thursday, February 28, 2008 10:40 PM To:

Re: Nested return types from POJO web service method -shouldn't this work?

2008-02-29 Thread Martin Gainty
David- Take a look at http://commons.apache.org/beanutils/api/org/apache/commons/beanutils/Propert yUtilsBean.html specifically the copyProperties method.. copyProperties(java.lang.Object dest, java.lang.Object orig) As copyProperties method is a shallow copy I think

unsubscribe help

2008-02-29 Thread Naren Palepu (npalepu)
how to unsubscribe I tried [EMAIL PROTECTED] it seems not working

RE: Nested return types from POJO web service method -shouldn't this work?

2008-02-29 Thread Kraus, David
Ok... this is what is happening. It seems that the name of a member variable is affecting serialization...My objects, which were having problems, had fields starting with a low cap a, and continuing with a large cap letter This version of nested object works fine... public class NestedObj {

XMLBeans AXIS2 Responses

2008-02-29 Thread Inman, Peter
I'm working with a web service that someone else has designed and I have to host one or two operations. I'm using AXIS2 XMLBeans databindings. I've got one operation in my *skeleton class which returns a complex type. I've set the object up correctly in my skeleton class, and if you

Re: Serialization of XML includes an abstract elemt and not one of the possible substitutions

2008-02-29 Thread ogryb
I just want to let you know that I switched from ADB to xmlbeans (wdl2java -d xmlbeans...) that work correctly for this WSDL, so I'm going to stick to xmlbeans. http://www.nabble.com/file/p15728080/authz.wsdl authz.wsdl http://www.nabble.com/file/p15728080/info_gryb_xacml_config.xml