gdaniels02/02/21 21:38:50
Added: java axis.properties
java/test/wsdl/interop3 emptysa.xml
Log:
Add individual ant build file for the emptysa round 3 test, and a property
file at the top level to hold all the common properties. This is a quick
stab at a way
SOAP 2.2 didn't support WSDL. AXIS does. How do you represent
statefulness in WSDL?
Russell Butek
[EMAIL PROTECTED]
"Ackley, Paul" <[EMAIL PROTECTED]> on 02/20/2002 12:51:22 PM
Please respond to [EMAIL PROTECTED]
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
cc:
Subject: FW: WSDD for a S
It's generally a bad idea to "extend" for the sake of extending...
>From a purist point of view, if InternationalPrice IS-A String, then OK.
My vote: InternationalPrice IS-NOT-A String (or not necessarily), so don't
extend.
***
Richard A. Sitze
On Thursday, February 21, 2002, at 01:43 , R J Scheuerle Jr wrote:
> Talked to Glen and Tom on the chat, and they think that
> InternationalPrice
> should extend String.
>
> Comments ?
>
String is final, as are the primitive type wrapper classes.
+Melissa
> Rich Scheuerle
> XML & Web Service
Nobody any comments on this??
-Ursprüngliche Nachricht-
Von: Thomas Börkel
Gesendet: Mi 20.02.2002 16:13
An: [EMAIL PROTECTED]
Cc:
Betreff: RE: Heads-up / opinions? - BCEL -> tt-bytecode
HI!
tomj02/02/21 14:16:17
Modified:java/src/org/apache/axis/client Call.java
Log:
Set the RPCElement encoding style from the call encoding style.
There is some question if we want to set the SOAPEnvelope
encoding style also. Hopefully Glen can take a look at this
and make
added Object getValue()/setValue(Object) methods.
makes it a lot easier to build nodes with registered types as values.
Fixed output() method to serialize any children node may have.
SOAPHeader has its value handled by MessageElement now.
*
org.apache.
That'll work [not something i can do in COM though]. One thing to
think about, is that it looks like you're mixing types and
serialization info. This is one of my biggest gripes about ASP.NET
webservices where there's a 1..1 relationship between types and their
serialization representation. This a
How do you think Java2WSDL should interpret a return type of ArrayList ?
(
If you could provide an alternate xml representation other than type
="SOAP-ENC:Array" I could
change Java2WSDL/WSDL2Java to honor it. I don't know anything about
...maybe this is the answer ?
Rich Scheuerle
XML & Web S
Taras,
Could you resend this patch to me.
Thanks
Rich Scheuerle
XML & Web Services Development
512-838-5115 (IBM TL 678-5115)
Taras Shkvarchuk
Talked to Glen and Tom on the chat, and they think that InternationalPrice
should extend String.
Example:
class InternationalPrice extends String implements {
String getCurrency()
}
That way it can be treated like a String as necessary, and also has
attributes.
The interfa
Tom and I discussed this yesterday, and I like this approach a little better:
Have the custom type directly extend the simple type which is being extended. So in
the example below, you'd have:
public class InternationalPrice extends String implements TypeWithAttributes {
public static Str
I am trying to use the WSDLTOJava to generate the client stubs and found
that If I have a method in my class which has
a return type of ArrayList (i.e public ArrayList foo() ), The generated
WSDL will show the return type as:
After running WSDLTOJava , the generated stub will then have a return
Ok sure. I will look into some pooling.
What about the regular [PATCH] I submitted on serialization of
MessageElement's children, setting/getting its type.
RE: [PATCH] message.MessageElement get/setValue() and child serialization.
(the reply has updated diff)
[PATCH] encoding.SerializationContext
FWIW, I ran into this doing the Group D doc/literal interop tests for
pocketSOAP, and took exactly the same approach.
Cheers
Simon
On Thu, 21 Feb 2002 15:12:03 -0600, in soap you wrote:
>According to XML Schema Primer 0 Chapter 2.5.1, a complexType can be
>derived from a simple type to add attr
According to XML Schema Primer 0 Chapter 2.5.1, a complexType can be
derived from a simple type to add attribute information.
Lets say you had the following schema:
The above could be sent over the wire as:
Widget
I agree that you need a separate list to pass the attribute names/types. I
was simply pointing out a potential problem. Perhaps
the solution is to change the getNestedTypes method to invoke both
methods..
The only simpleTypes currently supported are enumeration types.
Your example is a derivat
dims02/02/21 12:50:27
Modified:java/src/org/apache/axis/transport/http AxisServlet.java
Log:
Patch from "David L. Cole" <[EMAIL PROTECTED]>" for exceptions in Weblogic.
Revision ChangesPath
1.83 +3 -1
xml-axis/java/src/org/apache/axis/transport/http/AxisSe
Line 588 of org.apache.axis.transport.http.AxisServlet (res.flushBuffer())
is causing an exception to be thrown for each SOAP request
when using Weblogic. It would be a great help if you could change
From:
res.flushBuffer(); //Force it right now
To:
if(!res.isCommitted())
Rich,
I think I do want to call the new attribute function, but I need
to pass in a separate list of attribute names/types to the JavaWriter
so I can distinguish them.
Some of the symbolTable type stuff is a bit confusing, so I
would welcome your help in this area.
By the way, the interop test
tomj02/02/21 12:02:20
Modified:java/src/org/apache/axis/wsdl/toJava SymbolTable.java
java/src/org/apache/axis/utils resources.properties
Log:
Fix problems in the WSDL2Java symbol table routine that creates a type element
for the attribute. Reject non-simple typ
Tom,
I would have expected that your new getComplexElementAttributes should
have been called within getComplexElementTypesAndNames. The
getComplexElementTypesAndNames was intended to return the names and types
of all of the contained fieldsand attributes is now considered to be
one of those
scheu 02/02/21 11:35:37
Modified:java/src/org/apache/axis/encoding DeserializerImpl.java
SerializationContextImpl.java
Log:
free value targets after processing them
Revision ChangesPath
1.3 +3 -0 xml-axis/java/src/org/apache/axis/enco
Thanks, Tom! :)
--G
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 21, 2002 2:25 PM
> To: [EMAIL PROTECTED]
> Subject: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser
> BeanSerializer.java
>
>
> tomj02/02/21 11:2
Rich Scheuerle
XML & Web Services Development
512-838-5115 (IBM TL 678-5115)
- Forwarded by R J Scheuerle Jr/Austin/IBM on 02/21/2002 01:26 PM -
tomj02/02/21 11:25:07
Modified:java/src/org/apache/axis/wsdl/toJava
JavaComplexTypeWriter.java
java/src/org/apache/axis/encoding/ser BeanSerializer.java
Log:
Change the return value of getAttributeElements() for bean types from a Vector
t
Doug Lea sent this CFP to the dist-obj list, I thought maybe some of
the Axis developers would want to write an article. Internet Computing
is good and the editors are great.
Middleware for Web Services
Special Issue of Internet Computing, January 2003
Submission deadline, 1 June 2002
G
butek 02/02/21 11:11:27
Modified:java/test/wsdl/interop3/groupE/client
InteropTestListServiceTestCase.java
Log:
List is a bean. It is translated to WSDL as:
Note the tag (NOT ). means there's no o
Nag, nag, nag :-)
I'll see what I can do.
--
Tom Jordahl
-Original Message-
From: Glen Daniels [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 21, 2002 2:04 PM
To: '[EMAIL PROTECTED]'
Subject: RE: cvs commit: xml-axis/java/src/org/apache/axis/encoding/ser
Be anSerializer.java
This is way cool!
Personally, I'd prefer an array rather than a Vector, so someone writing a bean from
scratch could just do:
public String [] attrs = new String [] { "attribute" };
public String [] getAttributeElements() {
return attrs;
}
Easier to write than vec.add(), vec.add(),
tomj02/02/21 10:51:24
Modified:java/test/wsdl Wsdl2javaTestSuite.xml
java/src/org/apache/axis/wsdl/fromJava Types.java
java/src/org/apache/axis/wsdl/toJava SymbolTable.java
SchemaUtils.java JavaTypeWriter.java
E:\projects\xml-axis\xml-axis\java>build.bat
'#echo' is not recognized as an internal or external command,
operable program or batch file.
Buildfile: build.xml
setenv:
[mkdir] Created dir: E:\projects\xml-axis\xml-axis\java\build\classes
[mkdir] Created dir: E:\projects\xml-axis\xml-axi
Updated documents on the way...
***
Richard A. Sitze[EMAIL PROTECTED]
CORBA Interoperability & WebServices
IBM WebSphere Development
William,
You just derive your class loader from URLClassLoader and then substiture it when
making calls to Axis engine and also derive your servlet do do the same for
doPost/doGet relying the requests to AxisServlet.
It works.
It is probably not a business of Axis to provide custom classloader
Accounts created, passwords sent.
Brian
On Thu, 21 Feb 2002, Sam Ruby wrote:
> Please create the following new Apache IDs:
>
>id: stevenn
>name: Steven Noels
>send password to: [EMAIL PROTECTED]
>group: apcvs, xml
>
>id: rsitze
>name: Richard Sitze
>send pas
Dear All,
I would like to know whether AXIS has any plan of providing dynamic
deployment of service classes in a jar loaded from a remote URL, because at
the moment all service classes need to be in the WEB-INF/classes or
packaged as a jar in the WEB-INF/lib. It would be ideal if WSDD would
inc
Please create the following new Apache IDs:
id: stevenn
name: Steven Noels
send password to: [EMAIL PROTECTED]
group: apcvs, xml
id: rsitze
name: Richard Sitze
send password to: [EMAIL PROTECTED]
group: apcvs, xml
Thanks!
- Sam Ruby
glyn02/02/21 06:58:41
Modified:java/samples/echo TestClient.java
Log:
Add missing half of map comparison logic.
Revision ChangesPath
1.55 +10 -0 xml-axis/java/samples/echo/TestClient.java
Index: TestClient.java
+1 to adding the System.out.println test to another target.
--
Tom Jordahl
-Original Message-
From: Russell Butek [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 21, 2002 8:16 AM
To: [EMAIL PROTECTED]
Subject: RE: [AXIS - PATCH] More logging changes
This is why I said Richard ALM
butek 02/02/21 06:33:58
Modified:java/src/org/apache/axis/deployment/wsdd
WSDDTypeMapping.java
Log:
Fix a bug and be consistent. Use the class loader everywhere Class.forName is
used. Contributed by Greg Truty.
Revision ChangesPath
1.24
There's an archive at http://marc.theaimsgroup.com/?l=axis-dev&r=1&w=2.
I've updated the Axis web site information about mailing lists to make it
easy to search that archive. The update should appear by tomorrow.
Glyn
I'd prefer to use logging rather than System.out as it's useful by other
people, but I think we need some clear how-to information in the
developer's guide on setting trace levels for individual components to
avoid the problems Russell pointed out.
Also, a recommendation for how to switch on debu
>Is it really faster?
In the case where no contention is encountered, the simpler approach avoids
an extra object construction, so the answer is "sometimes" ;-).
>I didn't want to synchronize on the stub object
>itself in case we decide in the future that we have to synchronize other
>stub meth
I have a project where I have been using Axis built
on 2002-01-20 for some time now and today I tried to update the Axis build to
2002-02-20. As the Axis project has evolved during the last month major changes
to the logging stuff has been made...
As I use log4j in my custom service code is
This is why I said Richard ALMOST convinced me. Sure, log.debug is shorter
to type than System.out.println. But in order to use it I have to turn
debugging on, and grep for my stuff in a potentially huge pile of output.
And then when I'm done I have to remember to turn debugging back off so I
do
+1
-- dims
--- Tom Jordahl <[EMAIL PROTECTED]> wrote:
>
> +1
> --
> Tom Jordahl
>
>
> -Original Message-
> From: R J Scheuerle Jr [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 20, 2002 2:52 PM
> To: [EMAIL PROTECTED]
> Subject: +1 Make Richard Sitze A Committer
>
>
> +1 to
I see he's already received 3 votes, but here's my +1 anyway.
Russell Butek
[EMAIL PROTECTED]
R J Scheuerle Jr/Austin/IBM@IBMUS on 02/20/2002 01:51:57 PM
Please respond to [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
cc:
Subject: +1 Make Richard Sitze A Committer
+1 to making Richard Sitze a
hello,
how can i establish connection to the Web Service[Tomcat/Axis] from Java
Applet
because when i'm trying to do so, i'm getting :
java.security.AccessControlException: access denied
(java.util.PropertyPermission java.protocol.handler.pkgs read)
i've tried to modify & apply "catalina.policy
+1
Glyn
+1 only if the following is made legible. It should at least be split
across 80 character lines and should preferably be formatted so it is
easier to understand, e.g. by separating the various filenames.
new FileNameContentPattern(".
+([/])java\\1src\\1org\\1apache\\1axis\\1
(?!A
Russell,
Thanks for fixing that. But why didn't you simply declare firstCall as
synchronized, thus:
protected synchronized boolean firstCall() {
boolean ret = firstCall;
firstCall = false;
return ret;
}
which would have the effect of serialising the use of firstCall relative to
the
51 matches
Mail list logo