Re: Errors running wsdl2ws

2006-03-17 Thread Samisa Abeysinghe
Seems like you are using gcj. I suggest you use JDK from Sun, or try to compile the whole WSDL2WS Java tool, including the required jars from Axis Java using gcj. I have never been able to use gcj with Axis successfully :-( Samisa... Lei Tang wrote: I installed latest Axis C++ 1.6b on linux

[Axis2] How to disable addressing globally and enable only for a given service

2006-03-10 Thread Samisa Abeysinghe
Hi, I can disable addressing globally on server side by removing the addressing module entry in axis2.xml. If I do that, how can I and enable addressing only for a given service? Thanks, Samisa...

[Axis2] Problem in om element?

2006-02-26 Thread Samisa Abeysinghe
We have the floowing on line 439 of modules/xml/om/om_element.c: return axis2_om_element_find_namespace ( (axis2_om_element_t*)AXIS2_OM_NODE_GET_DATA_ELEMENT(node, env), env, parent, uri, prefix); I think we are doing something wrong here, mixing up the

Re: using axis 1.6 or moving to axis2?

2006-02-24 Thread Samisa Abeysinghe
Planting, Hans wrote: Hi there, We're considering the use of axis c/c++ to help us implement dynamic webservices integration with our c/c++ based product. Will axis-c 1.6 offer the same functionality as axis java 1.2.1 (or 1.3) that we have used for java-based implementations?? Will it also

Re: Status of WSS4C

2006-02-15 Thread Samisa Abeysinghe
Tao Yang wrote: Hi, I am trying to use Axis 4 C++ in a project. However, I did not find any info about WSS implementation. Is there a counter-part project for WSS4J in C/C++? We do not have an equivalant for WSS4J for Axis C++ I do notice the 1.5 release (not sure about previous ones)

Re: related with Axis c++

2006-01-19 Thread Samisa Abeysinghe
Simple axis server is meant to be used with simple tests with C++ clients. There seem to be some socket related problems there. Please try to deploy the Apache httpd module and try with the Java client. Thanks, Samisa... Arshad Ahamad wrote: hi, I am creating Web Service client application

Re: axis c++ and java client

2006-01-19 Thread Samisa Abeysinghe
Hi Arshad, As I mentioned earlier, this is a C++ server side (simple axis server) problem. C++ server is not writing the response to the client properly, as far as I understand. Thanks, Samisa... Arshad Ahamad wrote: Hi Samisa, I am creating Web Service client application in Java

Re: axis c++ and java client

2006-01-19 Thread Samisa Abeysinghe
Hi Arshad, It has been some time after I last visited the code. My gut feel is that there are some socket based problems in the simple axis server. You would have to look into the source code of simple axis server to figure out the problems. Basically look into the places where it writes

Re: Memory management

2005-12-11 Thread Samisa Abeysinghe
John Hawkins wrote: I'm going to put this onto the web-site in the next few days but sneak preview - Many Web Services Client for C++ methods either expect or create memory objects. Below is a list of rules that you must follow when developing web service client applications: v Any memory

Re: Newbie - authentication question

2005-12-07 Thread Samisa Abeysinghe
Gabriel Malik wrote: I apologize if this question has been brought up before, but I searched and couldn't find relevant threads on it. I'm working on the server side code, and trying to get the username and password of the current session. I called getUserName() method from the

Re: [Axis2] Jira for Axis2C

2005-11-24 Thread Samisa Abeysinghe
-Lilantha -Original Message- From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] Sent: Sunday, November 13, 2005 11:37 AM To: Apache AXIS C Developers List Subject: Re: [Axis2] Jira for Axis2C What is the procedure for creating a Jira space for Axis2C? Do we have to have a vote, or can we

Re: WS-Callback support in Axis?

2005-11-12 Thread Samisa Abeysinghe
[EMAIL PROTECTED] wrote: Hi All, Does Axis support any form of the WS-Callback spec from async callbacks to the web services client? And if so, where might I find some examples. Sorry, Axis C++ does not support async callsbacks. Thanks, Samisa... Thanks! Thank you, **John

Re: Axis as Client and Server?

2005-11-12 Thread Samisa Abeysinghe
Duane Murphy wrote: Howdy Axis folks, Is it possible to use axis as a client and a server? We have an application that is somewhat peer oriented. The HTTP payload will actually include requests and responses in both directions. That is the XML portion can include a response from a previous

Re: A small problem of wsdlsoap:operation soapAction=add/

2005-11-12 Thread Samisa Abeysinghe
I assume that you are using Axis C++ 1.5 release. The need for SOAP Action for operations to succeed was dropped in the post 1.5 code. If you could try with a latest SVN checkout, you could see if the problem id solved. Thanks, Samisa... Liu, Richard wrote: Hi, I found out the problem

Re: How can I see the cout debug info in Calculator demo

2005-11-12 Thread Samisa Abeysinghe
You could see the couts if you run Apache in debug mode using -X option. On linux, run: httpd -X Thanks, Samisa... Liu, Richard wrote: Hi, I am new to C++ webService apache. I believe this one should be an easy question. I have made Calculator demo C++ server and client working.

Re: building axis c

2005-10-27 Thread Samisa Abeysinghe
Hi Chris, Just a question out of curiosity, why would you want to implement a custom transport? In other words, what features are missing in the current transport that you are trying to implement with custom transport? Thanks, Samisa... Christopher S. Johnson wrote: properties on

Re: axis3 Transport?

2005-10-21 Thread Samisa Abeysinghe
Duane Murphy wrote: Hi Folks, I'm working on building axis-c for Mac OS X so I don't have the benefit of a build system that works and I am trying to assemble the build by hand. Is the transport in the axis3 directory supposed to be compilable? Or is it still under construction? Axis3

Re: building axis c under windows

2005-10-21 Thread Samisa Abeysinghe
It looks to me as if you do not have the cpptask jar on your class path. You need both both ant-contrib and cpptasks in your class path and they can be downloaded from http://ant-contrib.sourceforge.net/. Please see our ant build guide http://ws.apache.org/axis/cpp/antbuild-guide.html for

Re: Why m_pCall-initialize(CPP_RPC_PROVIDER)) fails?

2005-10-08 Thread Samisa Abeysinghe
Tomaz Rotovnik wrote: Hi I've the same problem. Couple of days ago I send question about safe threading on client side. When I start debugging I found out that call m_pCall-initialize(CPP_DOC_PROVIDER)) causes exception. Then I enable possibility (uncomment) to print out possible

Re: Removing call parameters

2005-10-05 Thread Samisa Abeysinghe
Pico Florin wrote: Hi! 1. I was referring to the Call parameters. You have a method addParameter in the Call class, therefore I was thinking that could exists the oposite removeParameter(in Java we have removeAllParameters()) OK, may be this is a good suggestion, but need to have to have

Re: axis 1.5.0 compilation problem

2005-10-05 Thread Samisa Abeysinghe
Did you follow the guidelines in ant build gude and download the reqired jars for building? If not please have a look at the Preparing system of http://ws.apache.org/axis/cpp/antbuild-guide.html) If you have done that already, please let know your platform/operating system and the compiler

Re: Safe threading - Client side

2005-10-05 Thread Samisa Abeysinghe
We have some tests with threads in the test forlder, some of which were passing. (I did not run the test framework lately, could someone please mention what threded tests are passing/running) Please have a look at tests with the name suffix 'TTest' (run `ls

Re: Removing call parameters

2005-10-04 Thread Samisa Abeysinghe
Pico Florin wrote: Hi! I have two question: 1.I've seen that in class Call we didn't have a method called removeAllParametrers() like in the correspondent class in java. In this case how can I release the parameters? What are the parameters that you are talking about? Please give an

Re: Newbie question: How to view debug messages in web service?

2005-10-02 Thread Samisa Abeysinghe
Alok Mathur wrote: Hello, Axis: 1.5 Final; Web server: Simple Axis server I compiled one the sample web services and am trying to add debug messages. somehow, simple printf does not work and am also unable to write to a file. Is there a way I can see debug messages on the screen while the

Re: [Axis2] Axis2 architecture implementation in C

2005-09-28 Thread Samisa Abeysinghe
, and style Thanks, Samisa... Thanks -Lilantha -Original Message- From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] Sent: Monday, September 26, 2005 12:18 PM To: axis-c-dev@ws.apache.org Cc: Apache AXIS C User List Subject: [Axis2] Axis2 architecture implementation in C Hi All, Damitha

Re: Install Problems on RedHat Enterprise/Apache 2.0.46

2005-09-19 Thread Samisa Abeysinghe
zxis-c-current bin is compiled against xerces-c 2.2.0. Hence you will not be able to run axis c with xerces 2.7.0. If you want to get axis c working with xerces 2.7, you would have to build axis c source. If you want to use axis c bin vertion, you got to use xerces 2.2.0. Thanks, Samisa...

Re: http header fields should be case-insensitive

2005-09-18 Thread Samisa Abeysinghe
Xavier Toth wrote: Rails generates soap requests with the header Soapaction. Axis C++ fails to recognize this header because it appears to be looking for SOAPAction. According to the HTTP spec Field names are case-insensitive. I fixed the code few weeks ago, so that the server side does

Time for 1.6 Alpha? [was Re: server memory leak]

2005-09-15 Thread Samisa Abeysinghe
Hi all, I noticed in the past week or so, the users are complaining about probelms in 1.5 that we have alredy fixed in the SVN head. Most of the issues are non issues against the current code base. Hence would it be not a good idea to package our 1.6 alpha so that users could try and

Re: v1.5 on XP fails to load mod_axis2.dll

2005-09-15 Thread Samisa Abeysinghe
We need to revisit the docs for sure. That will save time on the part of both users as well as developers. Peter wrote: John Hawkins wrote: ... I've just trawled the code and can find no instance of AXIS_HOME being used anywhere So I removed the definition of the AXIS_HOME

Re: viewing wsdls in browser

2005-09-14 Thread Samisa Abeysinghe
Xavier Toth wrote: I've run the samples in apache2 but then I tried to view the wsdls in a browser and it doesn't work. In the apache error log I see a segmentation violation which I'm sure is related to the axis c++ module. The axis server log contains the following: [14/09/2005 11:11:33:000

Re: Trying to run simple Calculator sample client program

2005-09-13 Thread Samisa Abeysinghe
I got Xerces 2.2.0 from http://archive.apache.org/dist/xml/xerces-c/Xerces-C_2_2_0/ It works for me. Did you get yours from the same location. Thanks, Samisa... Kon Kam King, France wrote: Hi Fred, I have tested with MSVC 6 without any change. Also on another issue, Samisa Abeysinghe

Re: axis 1.5 deplloyment error. Tomcat stops immediately after start.

2005-09-04 Thread Samisa Abeysinghe
On 9/4/05, John Hawkins [EMAIL PROTECTED] wrote: But, we can always ask them what version they use when they come to us with problems. And say what we have tested and support? 99% of the time there are no problems as far as I can see? Yes I agree :) Samisa Abeysinghe

Re: axis 1.5 deplloyment error. Tomcat stops immediately after start.

2005-09-03 Thread Samisa Abeysinghe
as the users seem to use three versoions 2.2, 2.5 and 2.6. Samisa Abeysinghe [EMAIL PROTECTED] 03/09/2005 02:25 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user@ws.apache.org cc Subject Re: axis 1.5 deplloyment

Re: axisclient crashes when deleting the Call object

2005-08-31 Thread Samisa Abeysinghe
Hi Anders, I am using the latest cvs version on Win XP and I do not get to see such a problem. Any chance that you could try with the nigtly build? Thanks, Samisa... On 8/31/05, Anders Eriksson [EMAIL PROTECTED] wrote: Hi everybody, I have a web services client using Axis C++ 1.5 on

Disabling multirefs on client side

2005-08-26 Thread Samisa Abeysinghe
Hi All, Is there any way that I could disable multiref on client side. I found setDoMultiRefs in SerializationContext. However I am not sure how to use this on cliet side. I looked in samples as well as in tests but could not find any code that deals with clients. Thanks in advance for

RE: Two build questions

2005-08-24 Thread Samisa Abeysinghe
names in conf then Axis relies on defaults which should get picked up from lib path. Samisa Abeysinghe [EMAIL PROTECTED] 24/08/2005 05:34 Please respond to Apache AXIS C User List To Apache AXIS C User List

Re: Having issues running samples out of the box.

2005-08-22 Thread Samisa Abeysinghe
, confirming that the service is clean. The only problem is... that the cpp client gets back a (null). Have you seen this before? do you know why this would be the case? Any input would be greatly appreciated. Here is what I see: Samisa Abeysinghe wrote: Well you seem to have

Re: Two build questions

2005-08-22 Thread Samisa Abeysinghe
Hi Kevin, Please see below for my response. On 8/22/05, Kevin Rogers [EMAIL PROTECTED] wrote: Hi! Before I drop a bunch of question on you, I just wanted to say great job on the library! =) I have two build-related questions for the group: The first question has to do with the

RE: Setting HTTP 1.0 property

2005-08-10 Thread Samisa Abeysinghe
=axis-c-userm=108748469319593w=2 Thanks ..Chris On Wed, 10 Aug 2005, Samisa Abeysinghe wrote: I'm doing this to get around the HTTP 1.1 bug as discussed in the archives. What is this HTTP 1.1 bug? Can you give me a pointer please? Thanks, Samisa... On 8/9/05, csj

Re: Problem deserializing SOAP response in Axis C++ client

2005-08-08 Thread Samisa Abeysinghe
We seem to have a problem with encoding. There are few Jira issues on this. We got to look into XML encoding to solve this problem. Samisa... On 8/6/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: OK, I think I see my mistake. The SOAP response sent by the webservice has character entities

RE: Problems running under C++ Builder 6

2005-07-14 Thread Samisa Abeysinghe
Have you set the environment variables correctly? Do you have the axiscpp.conf in AXISCPP_DEPLOY folder and did you edit it to tune the content to match your system? Samisa... -Original Message- From: Myles Bunbury [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 7:31 PM To:

RE: refresh says url not available

2005-06-01 Thread Samisa Abeysinghe
This problem does not happen on my machine. May be this is related to the processor speed and memory that your machine has not sure. Samisa -Original Message- From: Din%$h [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 01, 2005 12:07 PM To: axis-c-user@ws.apache.org

RE: Returning an array from Java Webservice

2005-06-01 Thread Samisa Abeysinghe
The problem is with the use of href/multiref in the SOAP response. Axis C++ cannot deal with href/multiref. An alternative is to disable href/multiref in Axis Java server side. Please see http://issues.apache.org/jira/browse/AXISCPP-111 for more details. (This issue also has details on how to

RE: Server closing connection

2005-05-26 Thread Samisa Abeysinghe
. Thanks, Samisa -Original Message- From: Popa Horia [mailto:[EMAIL PROTECTED] Sent: Thursday, May 26, 2005 4:15 PM To: 'Apache AXIS C User List' Cc: Samisa Abeysinghe Subject: RE: Server closing connection I have installed a network analizer: http://www.ethereal.com/and checked

WSDL 1.1 Operation Overloading Support

2005-05-25 Thread Samisa Abeysinghe
Hi All, I need some help with information on level of support on Operation Overloading in Axis Java 1.1. WSDL 1.1 seem to support operation overloading. Does Axis Java 1.1 support this? What about Axis Java 1.2? I greatly appriciate any answers or pointers to some documentation on this.

RE: Can't build 1.5 source - .deps not there

2005-05-24 Thread Samisa Abeysinghe
Title: RE: Can't build 1.5 source - .deps not there Please note that the Makefile.am files are not up-to-date in 1.5 release. (May be it builds half way, but may not link all the stuff correctly ) Only the ant build works properly. Have you tried building with ant? Samisa

Re: Exception when I use WSDL2Ws whith axis-1_2RC3's jar lib

2005-05-20 Thread Samisa Abeysinghe
I am using axis-1_2RC1 jars and see no problems. Will check with Axis java 1.2 Jars and see if something wrong. Samisa... On 5/20/05, huagang [EMAIL PROTECTED] wrote: C:\axis-1_2RC3\lib 2005-05-20 10:16 DIR . 2005-05-20 10:16 DIR .. 2005-02-28 22:39

RE: WS-Security

2005-05-12 Thread Samisa Abeysinghe
There were some efforts and there were some improvements proposed to the current engine to help implement WS-Security ,like opening up the SOAP body in handlers. But we did not hear from anyone on this lately. Is there anyone working on WS-Sec at the moment? Thanks, Samisa... -Original

RE: soapAction and .NET interoperability

2005-05-12 Thread Samisa Abeysinghe
- which should we adopt (or some other third method?) Samisa Abeysinghe [EMAIL PROTECTED] 12/05/2005 06:37 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user

RE: soapAction and .NET interoperability

2005-05-10 Thread Samisa Abeysinghe
Does anybody know of a workaround for this? Either a way to define my service to not require soapAction or a way to get a .NET client to provide the method name in the soapAction header? There is no way in Axis C++ to define the service not to require the SOAPAction as of now. (But we wish

RE: list of deployed web services

2005-05-09 Thread Samisa Abeysinghe
Hi, If you have the wsdl files in %AXISCPP_DEPLOY%\wsdls folder, you should get the ?wsdl thing working. http://localhost/axis/array?wsdl is the correct link (and it works on my machine) Also the calculator sample need three mandatory parameters: calculator.exe add 101 10 HTH Samisa...

Re: Newbie questions and some weird behavior

2005-05-05 Thread Samisa Abeysinghe
=HUB_TO_HUB wsdl:port name=HUB_TO_HUB binding=tns:HUB_TO_HUBSoap soap:address location=http://localhost/axis/HUB_TO_HUB; / /wsdl:port /wsdl:service /wsdl:definitions R o b Y a m p o l s k y Harris Corporation [EMAIL PROTECTED] (212) 303 - 4250 -- Samisa Abeysinghe [EMAIL

Re: Newbie questions and some weird behavior

2005-05-05 Thread Samisa Abeysinghe
, Samisa Abeysinghe wrote: You could test this with simple axis server and debug the same on Linux with gdb. I have written a small help file to let you know how to get simple axis server up and running on Windows. I hope you could adopt this to Linux. I have it http://people.apache.org/~samisa

[Fwd: Re: Apache 2.0 vs Apache 1.3]

2005-05-05 Thread Samisa Abeysinghe
been thinking this too - we should go to the user list first. Samisa Abeysinghe [EMAIL PROTECTED] 05/05/2005 16:30 Please respond to Apache AXIS C Developers List To Apache AXIS C Developers List axis-c-dev@ws.apache.org cc Subject Apache 2.0

Re: Sending faults from server

2005-05-05 Thread Samisa Abeysinghe
:varString ns1:varInt1/ns1:varInt ns1:varFloat10.52/ns1:varFloat /DivByZeroStruct /detail /SOAP-ENV:Fault /SOAP-ENV:Body /SOAP-ENV:Envelope -- Samisa Abeysinghe [EMAIL PROTECTED] Virtusa Corporation

RE: Newbie questions and some weird behavior

2005-05-05 Thread Samisa Abeysinghe
location=http://localhost/axis/HUB_TO_HUB; / /wsdl:port /wsdl:service /wsdl:definitions -- Samisa Abeysinghe [EMAIL PROTECTED] Virtusa Corporation

RE: Apache 2.0 vs Apache 1.3

2005-05-05 Thread Samisa Abeysinghe
Darshana wrote: My -1 for dropping 1.3 support. I strongly believe, there are so many instances out there who still depends on 1.3 server and in need for web services to support their legacy services. thanks -Lilantha -Original Message- From: Samisa Abeysinghe [mailto

RE: setting ref attribute

2005-05-03 Thread Samisa Abeysinghe
Hi Krishna, This is a Stub API call - meaning that this is available only on the client side. I am not sure on the effort required to get this supported on the server side, but my gut feel is that it should be comparatively easier as the client is already doing this. Please

RE: axis 1.5 build failed in FC 3

2005-04-28 Thread Samisa Abeysinghe
I cannot exactly understand what is going wrong with ant based pacaking. Adrian, could you please help ass you are the expert in this space. Thanks, Samisa... -Original Message- From: So Hok Chun, Bill [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 12:10 AM To:

Re: axis 1.5 build failed in FC 3

2005-04-27 Thread Samisa Abeysinghe
Looks to me as if there is something wrong in locating the Xerces parser. Please double check the parser related settings on your system (as defined by the ant build guide) Thanks, Samisa... On 4/26/05, So Hok Chun, Bill [EMAIL PROTECTED] wrote: Dear All, I've been trying to build Axis cpp

RE: Problems deploying Axis version 1.5

2005-04-27 Thread Samisa Abeysinghe
about. I was hoping to be able to transfer small ZIP files between my clients and my server. Thanks again, Srdjan Pejic Software Development Intern Environment Canada Phone: (416) 739-5740 E-Mail: Srdjan.Pejic AT ec.gc.ca -Original Message- From: Samisa Abeysinghe

RE: Problems deploying Axis version 1.5

2005-04-26 Thread Samisa Abeysinghe
Title: Problems deploying Axis version 1.5 Do you have the Xerces DLL on your path? If you are using the binary distribution of Axis C++ 1.5, then you need Xerces 2.2.0, and not Xerces 2.6. Thanks, Samisa -Original Message- From: Pejic,Srdjan [Ontario] [mailto:[EMAIL

Re: wrong order of parameters in axis c++ 1.5 (using google API)

2005-04-24 Thread Samisa Abeysinghe
This is a known bug and I have looked to fix this before 1.5 release -but gave up due to the complexity of the fix required. Basically the WSDL2Ws tool seem to have some assupmtions on the ordering of the elements and due to the current nature of implementation of the deserializer, it seems to

RE: server shutdown of long lived connections

2005-03-15 Thread Samisa Abeysinghe
On deciding whether to put in 1.5, we could apply the patch and do the tests before commit for side effects, provided the diff is against the latest CVS. This looks to me as if it is a moderate change (as far as amount of changes are concerned) Hence I believe we could manage. Thanks,

RE: SOAP Headers

2005-03-09 Thread Samisa Abeysinghe
). Is there API documentation anywhere? ;) Brian -Original Message- From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 11:56 PM To: Apache AXIS C User List Subject: RE: SOAP Headers If you mean to add HTTP headers, yes you can use

RE: SOAP Headers - Setting Type information

2005-03-09 Thread Samisa Abeysinghe
Title: Message I have not tried this but I hope that you can use createAttribute() on the node object. Please have a look at BasicNode.h in include folder. Thanks, Samisa -Original Message- From: Brian Abbott [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 3:14

RE: Google with Axis

2005-03-08 Thread Samisa Abeysinghe
Hi Krishna, As there are quite a number of files that I would have to look into, please give me some time. I will get back to you. Thanks, Samisa... -Original Message- From: krishna [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 7:05 AM To:

RE: SOAP Headers

2005-03-08 Thread Samisa Abeysinghe
-Original Message- From: Samisa Abeysinghe [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 08, 2005 11:12 PM To: Apache AXIS C User List Subject: RE: SOAP Headers Hi Brian, You can use this method to set the SOAP action. However, at the moment, this will be overridden by the generated code

Re: Automating server side test implimentation

2005-03-03 Thread Samisa Abeysinghe
Simply put, If we change the PortType name in the test WSDL file, would that have an impact on the current ant based client test framework. We would like the PortType to be the same as the name of the WSDL file, so that we have unique names to the services in the test framerowk. Thanks,

Re: Ant Build Faild in Windows

2005-02-13 Thread Samisa Abeysinghe
The problem was fixed. Please check now. Thanks, Samisa... On Mon, 14 Feb 2005 09:09:32 +0600, Chinthana C. Dinapala [EMAIL PROTECTED] wrote: Guys, Ant build give following arror. [cc] This conversion requires a reinterpret_cast, a C-style cast or function-style cast

Re: Client configuration without axiscpp.conf?

2005-02-10 Thread Samisa Abeysinghe
it on the release candidate list for 1.6 ? sanjaya singharage [EMAIL PROTECTED] 10/02/2005 04:46 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user@ws.apache.org, Samisa Abeysinghe [EMAIL PROTECTED] cc Subject Re: Client configuration

Re: Client configuration without axiscpp.conf?

2005-02-09 Thread Samisa Abeysinghe
Is it possible to specify the configuration parameters to the Axis C++ client without using axiscpp.conf. No. The only way is to have c conf file :-( I am concerned that multiple clients on the same machine are forced to share the same /etc/axiscpp.conf file. Also I am concerned that

Re: Setting certain non-standard http header request properties with Axis

2005-02-01 Thread Samisa Abeysinghe
looked at http://issues.apache.org/jira/browse/AXISCPP-397 Do you think this would work/be easy to do? John Hawkins Samisa Abeysinghe [EMAIL PROTECTED] 01/02/2005 03:59 Please respond to Apache AXIS C User List ToApache AXIS C User List axis-c-user@ws.apache.org, Tudor Denilson

Re: regarding bug in a Axis C++ Windows Installation Guide

2005-01-18 Thread Samisa Abeysinghe
Hi Rangika, As we no longer support Expat as a core module, would it not be more aprropriate to remove Expat referances from the doc alltogether? I agree that the NOTE on top says it all, but at times, I too skip those and jump into the doc content, with the intention of quick start ;-)

Re: Returning Complex Object which contains an array is always null

2005-01-11 Thread Samisa Abeysinghe
Could this problem be due to the use of href/multiref by server side response? Or does this happen in the absance of href/multiref? If you could send the response sent by service, we could clarify the problem further. Thanks, Samisa... On Tue, 11 Jan 2005 14:40:50 -0500, Franklin, Allen

<    1   2   3   4   5   6