RE: What is a good Axis compatible suite for doing C/C++ SOAP ser vices/clients

2002-06-04 Thread Lilantha Darshana
At this moment Yes, What you find in Axis contrib directory is in pre-alpha & is under development, which is not yet compatible as the axis-java (beta 2) impl. I would encourage more C/C++ contributors to get this done as a pure C++ Axis. Until then you may want to look for other impl. regar

cvs commit: xml-axis/java/test/functional TestJAXMSamples.java

2002-06-04 Thread dims
dims2002/06/04 05:46:56 Modified:java/samples/jaxm DelayedStockQuote.java java/test build_functional_tests.xml java/test/functional TestJAXMSamples.java Log: - Comment out the pass-thru of proxy parameters. - Added package for DelayedStockQuote

Re: cvs commit: xml-axis/java/src/org/apache/axis/wsdl/symbolTableUtils.java

2002-06-04 Thread Russell Butek
Just curious. What was the point of this? The imports used to be in alphabetical order. Now I have no clue what the order is. I don't mind seeing imports cleaned up, but this just rearranged things (and pulled out a few blank lines, which I personally like). It might be helpful if we could dec

cvs commit: xml-axis/java/test build_functional_tests.xml

2002-06-04 Thread dims
dims2002/06/04 08:44:19 Modified:java axis.properties build.xml java/test build_functional_tests.xml Log: Support for proxy settings when running functional tests. Revision ChangesPath 1.6 +9 -0 xml-axis/java/axis.properties Index:

RE: What is a good Axis compatible suite for doing C/C++ SOAP ser vices/clients

2002-06-04 Thread Alan Moore
You might also take a look at gSOAP. We have this working with Axis both on the client and server sides. In our setup, the gSOAP toolkit generates the WSDL and from that we create the Axis stubs and skeletons. It took a while to get it working largely because we were not following the naming conv

[axis] LF vs CR/LF in axis generated code

2002-06-04 Thread Richard Sitze
Can someone give us a quick overview of when it is appropriate to HARDCODE CR/LF or LF in generated output, versus when we should use the system "line.separator" property? I'd be happy to summarize the replies and update the developers guide. *** Richard

cvs commit: xml-axis/java/test/functional TestElementSample.java

2002-06-04 Thread dims
dims2002/06/04 10:50:37 Modified:java/samples/encoding TestElem.java java/src/org/apache/axis/client Service.java java/test build_functional_tests.xml java/test/functional TestElementSample.java Log: - Make TestElementSample pick up t

Jakarta community question...

2002-06-04 Thread Richard Sitze
Sam, I'd like your advice... recent voting in the jakarta commons project made me a committer. Then silence. I've got changes/fixes that I need to get in, but I'm not sure who the 'lead' is for the project to make sure that things get done. Suggestions or are you in a position to drive this tho

oopss...

2002-06-04 Thread Richard Sitze
Sorry, folks, my last note was sent to the wrong address.. *** Richard A. Sitze[EMAIL PROTECTED] CORBA Interoperability & WebServices IBM WebSphere Development

Re: [axis] LF vs CR/LF in axis generated code

2002-06-04 Thread Russell Butek
I think we should let the system do it. Always. If I've coded "\n" in the WSDL2java code, feel free to slap me around a bit. Russell Butek [EMAIL PROTECTED] Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: [axis] LF vs CR/LF in axis generated code Can someone give u

cvs commit: xml-axis/java .cvsignore

2002-06-04 Thread dims
dims2002/06/04 10:53:37 Modified:java .cvsignore Log: Ignore junit* intermediate files. Revision ChangesPath 1.5 +1 -0 xml-axis/java/.cvsignore Index: .cvsignore === RCS file: /ho

RE: [axis] LF vs CR/LF in axis generated code

2002-06-04 Thread Taras Shkvarchuk
CRLF sequences are required by rfc 822 for the headers. They are also used in MIME as delimiters. In some instances, rfc 2049, it is acceptable to use system's local representation of new line, but CRLF is preferred. Some parser out there may understand single LF or just CR, but all are going to u

RE: [axis] LF vs CR/LF in axis generated code

2002-06-04 Thread Tom Jordahl
  You always need to use \r\n in HTTP code, which is what SimpleAxisServer is trying to do.   -- Tom Jordahl Macromedia   -Original Message-From: Richard Sitze [mailto:[EMAIL PROTECTED]]Sent: Tuesday, June 04, 2002 10:37 AMTo: [EMAIL PROTECTED]Subject: [axis] LF vs CR/LF i

RE: cvs commit: xml-axis/java/src/org/apache/axis/wsdl/symbolTable Utils.java

2002-06-04 Thread Tom Jordahl
  I pushed the wrong button in IDEA and it sorted the imports and removed unused ones.  I figured I would just check it in, as it would be general goodness.   It groups imports in (what I think) is a logical manner, with the different packages grouped together.   Not something I do as a ma

RE: [axis] LF vs CR/LF in axis generated code

2002-06-04 Thread Taras Shkvarchuk
Yes. But code should NOT rely that it will get CRLFs from the client. For instance some of perl libraries, lib-www and MIME::Tools, are breaking the spec and are sending just LFs. -Original Message- From: Tom Jordahl [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 11:20 AM To: '[E

Re: BeanSerializer is missing xsi:tye

2002-06-04 Thread Davanum Srinivas
Kesav, Change for #1 that you suggest breaks the functional-tests. Here's the procedure for posting patches the next time. 1. Pick up latest sources direct from CVS. 2. Make your changes. 3. Run "ant all-tests" and make sure the functional tests are ok. 4. Run "cvs diff -u" from the xml-axis\ja

RE: cvs commit: xml-axis/java/src/org/apache/axis/wsdl/symbolTabl eUtils.java

2002-06-04 Thread Russell Butek
It may be a logical manner, but it's an unknown manner to some of us. I've talked with dims and he's explained it to me thusly: imports are in 3 consecutive groups: - everything else in alphabetical order - javax in alpha-order - java in alpha-order I can live with this. I just think it should

[axis] MessageContext: getPossibleOperationsByQName has side-effects

2002-06-04 Thread Richard Sitze
calling getPossibleOperationsByQName has a side-effect that the messages context service handler [getService()] is set if it was null. Does anyone have a problem if I move the test and setService directly into getService() instead? Seems that if we are going to have a default, then it should be c

No HTML in maillists please!!

2002-06-04 Thread Ignacio J. Ortega
Please Do not send HTML to mail list.. because 1) makes reading difficult, and formatting impossible ( without changing fonts ) 2) people with ancient mail readers will have problems.. 3) it's a waste of bandwidth 4) makes chatting in email impossible 5) Thanks :))) Saludos , Ignacio J. Ortega

Re: [axis] MessageContext: getPossibleOperationsByQName has side-effects

2002-06-04 Thread Richard Sitze
Along these lines, is there a one-to-one correlation between some namespace URI and a message context? *** Richard A. Sitze[EMAIL PROTECTED] CORBA Interoperability & WebServices IBM WebSphere Development Richard Sitze/Charlotte/IBM@IBMUS

cvs commit: xml-axis/java/src/org/apache/axis/client Call.java

2002-06-04 Thread dims
dims2002/06/04 13:06:59 Modified:java/src/org/apache/axis/client Call.java Log: - Make sure that getParamList is called from only one spot. - Fix possible NullPointerException in getParamList - Fix getParamList such that if RPCParam already exists in the object array it is

Re: cvs commit: xml-axis/java/src/org/apache/axis/client Call.java

2002-06-04 Thread Davanum Srinivas
Dug, This should fix the problem that you had this morning. Thanks, dims --- [EMAIL PROTECTED] wrote: > dims2002/06/04 13:06:59 > > Modified:java/src/org/apache/axis/client Call.java > Log: > - Make sure that getParamList is called from only one spot. > - Fix possible NullP

Re: cvs commit: xml-axis/java/src/org/apache/axis/client Call.java

2002-06-04 Thread Doug Davis
Thanks - I'll give it a shot. -Dug Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Doug Davis/Raleigh/IBM@IBMUS Subject: Re: cvs commit: xml-axis/java/src/org/apache/axis/client Call.java Dug, This should fix the problem that you had this morning. Thanks, dims --- [EMAIL PRO

cvs commit: xml-axis/java/src/org/apache/axis/deployment/wsdd WSDDService.java

2002-06-04 Thread rsitze
rsitze 2002/06/04 13:34:03 Modified:java/src/org/apache/axis MessageContext.java java/src/org/apache/axis/client Call.java java/src/org/apache/axis/description ServiceDesc.java java/src/org/apache/axis/deployment/wsdd WSDDService.java Log:

cvs commit: xml-axis/java/test/wsdl/extensibility server-deploy.wsdd

2002-06-04 Thread scheu
scheu 2002/06/04 13:35:08 Modified:java/src/org/apache/axis Constants.java java/src/org/apache/axis/encoding DefaultTypeMappingImpl.java java/src/org/apache/axis/encoding/ser BeanDeserializer.java java/src/org/apache

cvs commit: xml-axis/java/src/org/apache/axis/transport/http AxisServlet.java

2002-06-04 Thread rsitze
rsitze 2002/06/04 13:35:42 Modified:java/src/org/apache/axis/transport/http AxisServlet.java Log: Minor readability refactoring Revision ChangesPath 1.106 +12 -10 xml-axis/java/src/org/apache/axis/transport/http/AxisServlet.java Index: AxisServlet.java ==

Some changes to the processing

2002-06-04 Thread R J Scheuerle Jr
Please note that I made some changes/improvements to the processing of . Let me know if you have any questions or concerns about the changes. Rich Scheuerle XML & Web Services Development 512-838-5115  (IBM TL 678-5115)

Re: BeanSerializer is missing xsi:tye

2002-06-04 Thread R J Scheuerle Jr
1) The xsi:type information is not necessary because the type of the value cannot be determined.  (Consider the case where the type could be a base type or a derived type.  Since the value is null, there is no way to set a suitable xsi:type).  Aside: SOAP indicates that xsi:type should only be use

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/toJava JavaGeneratorFactory.java

2002-06-04 Thread butek
butek 2002/06/04 14:30:52 Modified:java/src/org/apache/axis/wsdl/toJava JavaGeneratorFactory.java Log: Fixed a hidden bug in the relationship between javifyNames and resolveNameClashes. This is not apparent until you upgrade to JDK1.4 and the order of

cvs commit: xml-axis/java/src/org/apache/axis/utils DOM2Writer.java CLUtil.java

2002-06-04 Thread rsitze
rsitze 2002/06/04 15:07:59 Modified:java/src/org/apache/axis/utils DOM2Writer.java CLUtil.java Log: Cleanup use of literals and system properties Revision ChangesPath 1.8 +15 -12xml-axis/java/src/org/apache/axis/utils/DOM2Writer.java Index: DOM2Writer.jav

Re: cvs commit: xml-axis/java/src/org/apache/axis/utils DOM2Writer.java CLUtil.java

2002-06-04 Thread Glen Daniels
No offense, but -1 to lineSeparator -> LS. lineSeparator seems way clearer to me --Glen - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 3:07 PM Subject: cvs commit: xml-axis/java/src/org/apache/axis/utils DOM2Writer.java CLUtil.jav

Re: cvs commit: xml-axis/java/src/org/apache/axis/utils DOM2Writer.javaCLUtil.java

2002-06-04 Thread Richard Sitze
Just bringing it in line with 10/15 other points (classes) in the code where this particular string constant is used. Actual names doesn't matter to me, but I was trying to minimize impact across the board. *** Richard A. Sitze[EMAIL PROTECTED]

cvs commit: xml-axis/java/docs developers-guide.html

2002-06-04 Thread rsitze
rsitze 2002/06/04 15:55:51 Modified:java/docs developers-guide.html Log: New guides lines for using 'system properties'. Briefly, use AxisEngine.getGlobalProperties() to get these, so we can establish a central point of access. In the near future I expect to update this

cvs commit: xml-axis/java/src/org/apache/axis/server DefaultAxisServerFactory.java AxisServer.java

2002-06-04 Thread rsitze
rsitze 2002/06/04 15:58:32 Modified:java/src/org/apache/axis/transport/http AxisServlet.java HTTPSender.java java/src/org/apache/axis/configuration FileProvider.java DefaultEngineConfigurationFactory.java jav

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fromJava Types.java

2002-06-04 Thread tomj
tomj2002/06/04 16:23:34 Modified:java/src/org/apache/axis/wsdl/fromJava Types.java Log: Add import of SOAP-ENC namespace to all schema elements. This probably should be made 'as needed', but including this should be harmless. Revision ChangesPath 1.31 +9

cvs commit: xml-axis/java/test/wsdl/interop3/import3 Import3TestCase.java

2002-06-04 Thread tomj
tomj2002/06/04 16:24:31 Modified:java/test/wsdl/interop3/import3 Import3TestCase.java Log: Use the URL provided on the command line when getting the port Revision ChangesPath 1.5 +5 -1 xml-axis/java/test/wsdl/interop3/import3/Import3TestCase.java Inde

Deserialization in axis beta 2

2002-06-04 Thread Vidyanand Murunikkara
Hi Please refer to http://marc.theaimsgroup.com/?l=axis-dev&m=102027493116786&w=2 This is the exact problem I also ran into. But there is no solution provided on the mailing list to over come this. Is this is a bug with Axis or is it something that the client should take care of. Thanks for

RE: Deserialization in axis beta 2

2002-06-04 Thread blake biesecker
> -Original Message- > From: Vidyanand Murunikkara [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 04, 2002 5:23 PM > To: [EMAIL PROTECTED] > Subject: Deserialization in axis beta 2 > > > > Hi > > Please refer to > http://marc.theaimsgroup.com/?l=axis-dev&m=102027493116786&w=2 > >