Custom Serializer write schema problem with some answers....

2005-02-18 Thread Mike Cassisa
hanks, MC   Mike Cassisa Software Engineer  

RE: basic question about axis

2005-02-18 Thread Brown, Mike
The core of Axis is the AxisServlet. It gets created and init() is called by the container. Axis uses init to load the WSDD and all that good stuff. The request is sent to the AxisServlet in the doPost() method. From there Axis inspects the soap envelope and using the configuration it pulled from t

Custom Deserializer/typeMapping problem

2005-02-17 Thread Mike Cassisa
                 xmlns:xsd="http://www.w3.org/2001/XMLSchema"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">             soapenv:Server.userException     org.xml.sax.SAXException: SimpleDeserializer     encountered a child element, which is NOT expected,

Re: Security Issue

2005-02-16 Thread Mike Barton
Joe, You might want to look at UDDI authentication mechanism, which is based on simple token exchange model. http://uddi.org/pubs/ProgrammersAPI-V2.04-Published-20020719.htm#_Toc25137739 Mike. Joe Plautz wrote: Hello, I'm looking for some guidance in the realm of security. I am in charg

RE: RE : problems invoking axis soap from an applet

2005-02-16 Thread Brown, Mike
The problem is that the Applet is trying to read (not write) the log level. We have to find a way to give it that knowledge. Doing a quick google. I found this page. http://www.geocities.com/dcblaha/articles/Soap/SoapSetup.htm It gives a recommendation on how to get Axis working in an applet. In p

RE: java.rmi.Remote Web Services and getInitParameter

2005-02-16 Thread Brown, Mike
Robert, I think your second option is the best route. I have used MessageContext to get a hold of my servlet's context and it works dandy. -Original Message- From: Robert Bateman [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 3:01 PM To: axis-user Subject: Re: java.rmi.Remo

RE: Libraries to build source ?

2005-02-14 Thread Brown, Mike
What version of the jdk are you using? What precisely is the exception you are getting? -Original Message- From: Beytullah Yildiz [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 2:32 PM To: [EMAIL PROTECTED] Subject: Libraries to build source ? Hi, Can anybody help me to find

RE: NoClassDefFoundError samples/userguide/example4/Client2

2005-02-14 Thread Brown, Mike
Did you make sure to declare your class in the samples.userguide.example4 package? Sorry if I offend but sometimes we tend to look over the obvious. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, February 13, 2005 9:03 AM To: [EMAIL PROTECTED] Subject

RE: Threads under axis

2005-02-11 Thread Brown, Mike
This isn't an axis problem. The servlet spec does not support threads being spawned by code running in the container. It also does not support opening ports or several other no-nos. -Original Message- From: Ian Wootten [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 8:28 AM To:

RE: Axis & workflow based services

2005-02-11 Thread Brown, Mike
ROTECTED] Sent: Thursday, February 10, 2005 10:13 PM To: [EMAIL PROTECTED] Subject: RE: Axis & workflow based services Thanks Mike, Are there any recommended approaches for this 'delegate' you mention... it seems to be basically a request processor right? I want it to be able to have

RE: Axis & workflow based services

2005-02-10 Thread Brown, Mike
Abdullah, What precisely is your business layer? You have a few options...One you can use a delegate between your impl class and the business layer that knows how to access the business layer and make the appropriate calls. Two, you can have the impl access the business layer directly (I prefer

RE: RE : Jar files in EAR root.

2005-02-10 Thread Brown, Mike
Title: Message Jai,     The problem is one that pops up a LOT with Websphere and should find it's way into axis' documentation. Websphere includes a (very outdated in version 4.0) copy of saaj.jar. By default it is this copy that gets loaded by your webapp classloader. There is an option whe

RE: RE : WS Authentication & Authorization

2005-02-10 Thread Brown, Mike
Title: Message Christian,     Because your SOAP requests are coming over HTTP, they support everything that a normal HTTP request supports, including Basic-Auth. You can get to the basic-auth headers through the request (which you can get at using the MessageContext). On the client side, both

RE: How to serialize elements of Vector independently in Axis

2005-02-02 Thread Brown, Mike
Currently Axis does not support vectors (that may change when they support JDK 1.5 which has generic-based vectors). They do accept arrays of objects but the array has to be of a specific type. Now you can in theory make a generic type (let's call it WSParam). Your WSParam would have a getter/sett

RE: UTF-8 char issue with 1.2RC2 ?

2005-02-02 Thread Mike Burati
e stack after running that first non-AXIS toolkit and seeing it work ok... Your clarification that another toolkit failed kept me from digging the hole deeper when the problem was right at the surface :-)... ..Mike

UTF-8 char issue with 1.2RC2 ?

2005-02-02 Thread Mike Burati
I was looking into an issue a coworker ran into calling the Xmethods Babelfish translation service (specifically to test out non-ascii chars), and decided to try a simple WSDL2Java based client against the service to see how it compared to how he was using AXIS (1.2RC2), and I was able to reprod

RE: Castor Based objects giving Errors

2005-02-01 Thread Mike Burati
>> >> http://xml.ws.pko.dia.mil"; xmlns="http://xml.ws.pko.dia.mil"; xmlns:xsd="http://www.w3.org/2001/XMLSchema";> >> http://xml.ws.pko.dia.mil"/> >> >> > The schema should be imported with "schemaLocation" not "location". Also, I bel

RE: How to setup a or ?

2005-02-01 Thread Brown, Mike
You don't have to declare exceptions in your WSDD. Just make sure that your custom exception extends RemoteException (java.rmi.RemoteException) then when you throw it it gets translated into a soap fault. -Original Message- From: Jay Glanville [mailto:[EMAIL PROTECTED] Sent: Tuesday, Feb

RE: Axis Gurus - Please help .. Urgent .... Issue with Document c lass ???

2005-02-01 Thread Brown, Mike
] Sent: Tuesday, February 01, 2005 3:47 AM To: Brown, Mike Cc: [EMAIL PROTECTED] Subject: Re: Axis Gurus - Please help .. Urgent Issue with Document c lass ??? Mike- I tried your appraoch in my WSAD but it does not work. Only combination that successfully run AXIS WEB MODULE is EAR CLASSLOADER

RE: Axis Gurus - Please help .. Urgent .... Issue with Document c lass ???

2005-01-31 Thread Brown, Mike
Okay, I've been here several times before. Essentially Websphere Server provides its own SOAP implementation based on SAAJ 1.1 Axis 1.2RC2 uses SAAJ 1.2. One of the jars that the Websphere container loads is SAAJ1.1.jar When your axis.war gets loaded by default SAAJ1.1.jar is the first place WS l

Re: Securing an Axis deployment

2005-01-28 Thread Mike Barton
Tim, Yes, we have done something very similar to that by using custom Axis handlers and web app filters. Mike Tim K. (Gmane) wrote: Anyone out there who uses Axis on a production system and has disabled these features? Thanks. Tim Tim K. (Gmane) wrote: Hello, How can I turn off these features

Re: server-config.wsdd

2005-01-28 Thread Mike Barton
links: Demo: http://demo.wsabi.org/ Download: http://sourceforge.net/projects/wsabi4axis Road Map: http://www.wsabi.org/ Mike Tysnes Are Thobias wrote: Hello! Probably a simple question, but.. Is runtime changes to server-config.wsdd read by the axis engine !? (i.e is it possible to change the

WSABI For Axis version 0.6 now available

2005-01-18 Thread Mike Barton
The WSABI team is pleased to announce the release of WSABI For Axis Version 0.6. WSABI For Axis is the industry's first (and only) open source Web services management (WSM) product. With its intuitive web-based user interface, WSABI allows users to manage Web service deployments with ease and

Re: Deploy and undeploy web services, bypassing the server?

2005-01-14 Thread Mike Barton
: http://www.wsabi.org/ Mike Kai Großjohann wrote: For security reasons, my colleagues would like to avoid using the AdminService that's included with Axis. A method would be desirable that just reads the server-config.wsdd from disk, edits it as described in the deployment/undeployment descr

Difficulty changing JVM with WSDL2Java

2005-01-12 Thread Mike Squires
The home-grown stuff has a package of au.edu.cqu.heims... The stub files have au.gov.dest.Heims... I have spent 8 hrs troubleshooting this. Any help would be very much appreciated. Cheers, __ Mike Squires Analyst/Programmer/Web Developer Corporate Info

Re: Single request turning into many

2004-12-28 Thread Litherland, Mike
interface class wasn't getting it's own logger - it was getting the logger from the implementation class, which was a singleton.  Each time it called the 'getInstance' method it was also adding another FileAppender to the log object.

Single request turning into many

2004-12-27 Thread Litherland, Mike
nce every 10 seconds.  I've attempted to google the problem and looked around the Apache website, but I'm no closer to solving this than I was two weeks ago. Can anybody point me in the right direction to solve this problem?  I can provide whatever information might be helpful. Thanks, Mi

RE: Long: Problem with a method that returns byte[]

2004-12-14 Thread Brown, Mike
Your problem is simple. You defined the return type as an array of bytes and that is what it looks like as SOAP. Using attachments would be best in this case. Another option would be to return a String that is the file Base64 encoded (that's what I did on a project using SOAP before attachments wer

ANN: WSABI For Axis version 0.5 now available

2004-12-13 Thread Mike Barton
WSABI™ For Axis version 0.5 now available 13 December 2004 With the new version 0.5, WSABI™ For Axis is now shipping with Monitoring and Audit module. This version enables enterprises to answer critical Web services management questions: - What is the health of my Web services? Are they performi

RE: Axis and Java 1.5

2004-12-13 Thread Brown, Mike
I think people are missing his point. He's trying to build Axis from the source and it won't build under JDK 1.5 because of the differences. Isn't there some commandline parameter to compile using 1.4 compatibility. But that would lose any benefits that 1.5 gives. I guess there should be a branch

RE: Using custom TrustManager in Apache Axis for Java

2004-12-03 Thread Mike Burati
he archive:   http://www.mail-archive.com/axis-user@xml.apache.org/msg11033.html   and   http://www.mail-archive.com/axis-user@xml.apache.org/msg10998.html   ..Mike From: John Maynard [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 5:07 PMTo: [EMAIL PROTECTED]Subject: Using custom Trust

RE: Null values and calling a setter.

2004-11-30 Thread Brown, Mike
I think I understand you but here's the question. Why would you want your setter called for a null value? If you check the value of myPropertyHasBeenSet, after it was set with a null value, you'll get true. Of course this would suck because it was set to null. Is there a reason you'd want it to be

RE: value of soap:address attribute

2004-11-29 Thread Brown, Mike
The entire point of WSDL is to allow automatic code generation. The automatically generated code allows a developer to make calls to a webservice as if it were a local call. Many generators (including wsdl2java) embed the endpoint into the client stubs (the same endpoint that is specified in the WS

RE: [Axis1.2 RC]: getting service URL in handlers?

2004-11-29 Thread Brown, Mike
"Luke, use the MessageContext" >From within your handler call HttpServlet serv=(HttpServlet)MessageContext.getCurrentContext()getProperty(HTTPConstant s.MC_HTTP_SERVLET); URL myURL = serv.getServletContext().getResource("/"); This will give you the context root of your application. -Origin

RE: X509 Client Certificates

2004-11-23 Thread Brown, Mike
You can get a handle on the request object from the MessageContext. Anywhere within your service method you can call MessageContext mc = MessageContext.getCurrentContext(); ServletRequest req = (ServletRequest)mc.getProperty(HTTPConstants.MC_HTTP_SERVLETREQUEST);

Re: Axis GUIs?

2004-10-25 Thread Mike Barton
k from the Axis users community at large to prioritize features in our roadmap. Thanks, Mike.

ANN: Admin GUI for Axis now Available!!

2004-10-22 Thread Mike Barton
://demo.wsabi.org Download the source at http://sourceforge.net/projects/wsabi4axis Best regards, Mike Barton

RE: Axis1.2 and Websphere 5.1

2004-08-31 Thread Mike Burati
ok in your app first to resolve classes rather than in the parent's context first. It may not work in all cases, but we have successfully used it to work around conflicts in jars that WPS5 adds when you install it on WAS5 (where we have similar jars in our WARs)... ..Mike -Origin

Re: Newbie: Using Axis for serializing/deserializing only

2004-08-27 Thread mike
Oleg Tkachenko tkachenko.com> writes: > > Janarthanan Poornavel wrote: > > > Google and look for skaringa.net ,its quite simple and effective > > Well, thanks for suggestions once again, but can anybody explain how > this can be done with Axis? > This may help: http://cvs.apache.org/viewcv

RE: Axis and WebSphere Portal server?

2004-05-12 Thread Mike Burati
I believe we have used AXIS from within WPS5 here, I can check with the person(s) involved. Which classes are not found when you run your app on WPS? Also, you can set PARENT_LAST on either or both of the EAR and the WAR in the WAS5 administration tool. Make sure it's set on the WAR (web applic

RE: How can I specify the service host/port in autogenerated WSDL?

2004-04-13 Thread Mike Panzitta
oks like as long as I keep the port numbers consistent across the stack, I can get it to behave mostly the way I want, though I still have to confirm this. The ability to specify a server-specific endpoint is still desirable for many reasons, and I'll still pursue this. Thanks, -Mike

RE: How can I specify the service host/port in autogenerated WSDL?

2004-04-12 Thread Mike Panzitta
the "?wsdl" query, then simply replacing the host/port portion of the element on the way out. If I wind up having to do this, I'll happily post the source for all to use and abuse. Thanks, -Mike -Original Message- From: Nelson Minar [mailto:[EMAIL PROTECTED] Sent: Monday, Ap

RE: How can I specify the service host/port in autogenerated WSDL?

2004-04-12 Thread Mike Panzitta
maintain different versions of the deployables depending upon where it is deployed.   If the WSDD parser could do scripting substitutions for system props, that would easily solve this issue. Any other ideas?   Many thanks,   -Mike -Original Message-From: Parley, Thunder Jon [mailto

How can I specify the service host/port in autogenerated WSDL?

2004-04-12 Thread Mike Panzitta
ile.   I have to believe that others have encountered this issue before me. Any assistance or pointers would be greatly appreciated. BTW, we are using Axis 1.1, but if a solution exists in 1.2, we can certainly go that route.   Thanks in advance,   -Mike   --- Dr. Michael J. Panzitta VP, Technolog

WSDL2Java for JMS

2004-03-23 Thread Mike DuVall
Does WSDL2Java currently work for JMS bindings? If so, which version of Axis does it work for? 1.1? 1.2 alpha? Current head in CVS? -Mike _ Get rid of annoying pop-up ads with the new MSN Toolbar – FREE! http://clk.atdmt.com

SOAP bindings questions: Http and JMS

2004-02-29 Thread Mike DuVall
in this area please confirm whether the above is correct? And if it is not correct, where have I gone amiss? Thanks, Mike _ Get fast, reliable access with MSN 9 Dial-up. Click here for Special Offer! http://click.atdmt.com/AVE/go

Cannot Deserialize object.

2004-01-27 Thread Mike Samaras
I’v been stuck on a simple problem for a long time here.  I need some help please.  The documentation isn’t very solid On what to do in this situation, and the search previous bug list is throwing errors on the website.   My Error:  Cannot find deserializer for object Membership   What

RE: response xml query

2003-12-09 Thread Mike Burati
  AxisInfo is specific to XMLA, not to Apache AXIS - it's just a coincidence that the names are similar.   Our web services guy with XMLA expertise is out of the office, otherwise I could probably give you a link to XMLA info, but you can probably find more via google / altavista...   Note,

Re: Deploying services with axis

2003-11-25 Thread Mike Klein
I think what you will want to do is follow instructions for putting axis into your webapp/websvs...not your websvc into axis...which is the simple way of doing things. Look on axis site for how to do this... mike Tewari, Vijay wrote: Hmm, isn't that overkill. That would mean that I hav

Unable to use AdminClient with axis

2003-11-25 Thread Mike Gorski
Below are my settings from windows xp cmd: ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\Mike Gorski\Application Data AXISCLASSPATH=c:\Tomcat\v4.1.24 \webapps\axis\lib\axis.jar;c:\Tomcat\v4.1.24 \webapps\axis\lib\axis-ant.jar;c:\Tomcat\v4.1.24 \webapps

RE: Too many CLOSE_WAIT socket connections

2003-10-31 Thread Mike Burati
Both Unix and Windows appear to have TCP Time Wait timeouts set too high by default (about 5 minutes) where the OS leaves closed sockets in the CLOSE_WAIT state queuing up (which can make it real easy to hit the maxfd limit on a heavily loaded web server). I believe the value is something like tc

Re: AdminClient

2003-10-28 Thread Mike Klein
es/AdminService deploy.wsdd and got a similar error to the one above (the only difference being the path). I have org.apache.axis in the following place /tomcat4.1.18/common/classes and /tomcat-4.1.18/webapps/axis/WEB-INF/classes Is there something I am doing wrong Allen -Original Message-

Re: adding an element (a field in a bean) in a webservice without changing the stubs

2003-10-28 Thread Mike Klein
#x27;g task in ant copies some relevant .class files from my source tree, plus the Skeleton from generated path and deploys using generated wsdd. I can also then of course use additional java classes generated to do client-side testing of stubs, junit, etc. mike Mike Klein wrote: This is

Re: adding an element (a field in a bean) in a webservice without changing the stubs

2003-10-28 Thread Mike Klein
This is done for you when you use java2wsdl...notice the typeMapping entry (really an exploded beanMapping). chris wrote: Yes… you don’t have to write any code in order for Axis to pass objects conforming to the Java beans convention. You do have to provide the serialization framework configur

Re: AdminClient

2003-10-28 Thread Mike Klein
them (like echoString, etc.) and deploy them...not servlets. mike Wilson, Allen wrote: Okay there must be something I am doing wrong then...let me provide my setup I am running Tomcat 4.1.18 w/Java 1.3.1 and I took the axis directory and placed it into my webapps directory. The axis page came up with th

Re: Nested classpath element needed for wsdl2java...due to junit test case parameter

2003-10-27 Thread Mike Klein
An ant task for publishing your web service via uddi/juddi/jaxr might be nice too... mike Mike Klein wrote: I'm trying to finish up the uddi/registry portion of my soap tests...hopefully by tomorrow...then I'll pull axis source and look at the ant tasks. I be able to fix the dis

Re: Nested classpath element needed for wsdl2java...due to junit test case parameter

2003-10-27 Thread Mike Klein
ed/desired, and see if latest src build doesn't have this fix already. mike Stephen Gordon wrote: Mike, I think you should submit this as a bug. Then it won't be forgotten or lost. Make sure to search for similar bugs first though. stephen Mike Klein wrote: Besides the ant ta

Nested classpath element needed for wsdl2java...due to junit test case parameter

2003-10-26 Thread Mike Klein
Besides the ant tasks missing some key parameters available in the commandline version of wsdl2java/java2wsdl (as I mentioned in an earlier post)...it appears wsdl2java IS missing support for classpath element...unlike java2wsdl which does have this element. When using wsdl2java ant task and th

Re: Seems to be no parity between wsdl2java/java2wsdl and corresponding ant tasks

2003-10-24 Thread Mike Klein
g/maintaining projects). All within Netbeans of course. I'm thinking about using xdoclet for doing some of the wsdd/wsdl generation step. Soo many new parameters/terms...so little time. mike Stephen Gordon wrote: feel free to code these up yourself :) If you submit a patch with the lis

Seems to be no parity between wsdl2java/java2wsdl and corresponding ant tasks

2003-10-24 Thread Mike Klein
mpleteness/anal-ness. mike

Re: Is java:RPC provider really what anyone wants for a SOAP service?

2003-10-23 Thread Mike Klein
nction vs. object calls into a Perl module really had me hammered for a while... mike Mike Klein wrote: Given that the point of soap is client/language-independence...it returns an extremely unfriendly return type. Not that intuitive how to pick out the pieces (at least in Perl via SOAP::L

Is java:RPC provider really what anyone wants for a SOAP service?

2003-10-23 Thread Mike Klein
thing! Why wouldn't Document provider be default for language-independent services instead? mike

Simple setup notes for NetBeans users of Axis:

2003-10-23 Thread Mike Klein
st a classpath element...but you can. And it is required unless you haven't already created an environment setting for AXISCLASSPATH in your OS. I was getting ClassNotFoundException until I nested a classpath element. mike

Re: ant tasks

2003-10-23 Thread Mike Klein
s far as decent html for the ant tasks, check out the following under your ant source directory: axis-1_1/docs/ant/axis-wsdl2java.html They look fine, although they are incomplete descriptions as they don't mention the nested classpath element stuff from above. cheers, mike Matthew Pocock

Re: ant tasks

2003-10-23 Thread Mike Klein
t use something like the following: http://192.168.1.2:8080/axis/services/GetQuotation"; output="${build}/generated/QuotationService.wsdl"> Hope this helps... mike Matthew Pocock wrote: Hi, I've been having some prob

Questions about wsdl2java/java2wsdl and gen'd stubs/skeletons

2003-10-22 Thread Mike Klein
e-tuning? Do skeletons provide ability for scoped services? thanks, mike

RE: setting elementFormDefault="qualified" on schema generated by WSDL2Java

2003-10-21 Thread Mike Perham
DL. (Of course, I could always fire off a Perl script from the build script, but I was hoping for something a bit more elegant.) Thanks, Mike -- Mike Woinoski Pine Needle Consulting mailto:[EMAIL PROTECTED]

Problems in format of returned complex type...how to specify xmlSchema type for java bean return result

2003-10-20 Thread Mike Klein
I have created a Quotations web service, which when passed some parameters (or no parameters) returns a Quotation type (consisting of quote, author, subject, and source). I've had a simple version running for a while with clients in php/perl/python/jsp, where call to url would return simple quo

RE: WS - SSL / Certificate-question

2003-10-17 Thread Mike Burati
> However, I don't know how to get from Axis to the servlet request object. > May be someone else knows? http://marc.theaimsgroup.com/?l=axis-user&m=104489083330198&w=2

Where did the attachment go?

2003-10-16 Thread Mike Sexter
I'm doing everything correctly. Perhaps there's more sophisticated configuration necessary to deal with the existence of the attachment. Perhaps on the stand alone java client side. Any thoughts? Mike _ Send and receive l

RE: Performance Issues with AXIS & Axis Response Time appears linear with load

2003-10-09 Thread Mike Perham
Ray, the following patch changes the code to use ThreadLocal storage instead of synchronization. Can you apply it, rebuild and let us know the results? Alternatively I'd be happy to email you an updated axis.jar if you are not building the code yourself. mike -Original Message-

RE: Performance Issues with AXIS & Axis Response Time appears linear with load

2003-10-09 Thread Mike Perham
The Xerces code is very similar. What's the effect if you take the synchronize out and rerun your performance tests? Do you have any numbers or graphs? -Original Message- From: Sutton, Ray [mailto:[EMAIL PROTECTED] Sent: Thursday, October 09, 2003 1:32 PM To: '[EMAIL PROTECTED]' Subject

RE: Axis doc/lit - impossible?

2003-10-09 Thread Mike Perham
Exactly! It's my belief that there are fundamental issues with Axis 1.1 that preclude solid support for arbitrary doc/lit WSDL. See the bug I opened yesterday for this exact discussion: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23677 -Original Message- From: Thomas Bayer [mailt

RE: Axis doc/lit - impossible?

2003-10-08 Thread Mike Perham
patch? (http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/SubmitPat ches) -- dims --- Mike Perham <[EMAIL PROTECTED]> wrote: > Just as a simple example: RPCProvider.java line 335 hardcodes a > naming scheme for the response element. No problem in rpc since the > Ax

RE: Axis doc/lit - impossible?

2003-10-08 Thread Mike Perham
and use the generated code. If you have problems with this, open up a bug report with sample code. Thanks, dims --- Mike Perham <[EMAIL PROTECTED]> wrote: > That's been our finding also. Axis supports rpc/encoded very well. > Anything else is just an exercise in frustrat

RE: Axis doc/lit - impossible?

2003-10-07 Thread Mike Perham
That's been our finding also. Axis supports rpc/encoded very well. Anything else is just an exercise in frustration. We wound up writing our own doc/lit SOAP stack because Axis just didn't work and Sysinet was too expensive and proprietary. mike -Original Message- From: Denni

Keep-Alive

2003-10-03 Thread Mike Spreitzer
: was Mike Spreitzer/Watson/IBM received by

Re: Axis Response Time appears linear with load

2003-10-02 Thread Mike Spreitzer
loads. Thanks, Mike

Axis 1.1 w/ Java Web Services 1.2

2003-10-02 Thread Mike Neugebauer
.1 (w/ Tomcat 4) and everything is ok. If I get the time and the patience, I might try the upgrade to JWS 1.2 again. Mike Neugebauer Omaha.com Software Developer (402) 898-2033 [EMAIL PROTECTED]

RE: Axis using wrong encoding for array in Doc/literal

2003-09-26 Thread Mike Perham
Axis 1.1? WSDL? -Original Message- From: Gupta, Ankit [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2003 3:48 AM To: [EMAIL PROTECTED] Subject: Axis using wrong encoding for array in Doc/literal Hi everyone, I am using an axis webservice (wrapped/literal) return a bean(object)

RE: Returning XML document from Service call

2003-09-25 Thread Mike Spreitzer
: was Mike Spreitzer/Watson/IBM received by

List behavior

2003-09-23 Thread Mike Perham
Title: Message Just so other axis-user readers understand, there is a list reader in Poland who is autoresponding anytime someone posts a message in HTML format.  Jose, not that my opinion matters but I think you are fine and this other person is out of line.   mike -Original Message

RE: Remote DTD/Schema referencing

2003-09-18 Thread Mike Burati
I hate replying to my own mail messages :-) but I just ran across the reference after sending that previous message: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14105 -Original Message- From: Mike Burati Sent: Thursday, September 18, 2003 10:38 AM To: '[EMAIL PROTECTED

RE: Remote DTD/Schema referencing

2003-09-18 Thread Mike Burati
Automagically fetching remote entities from an incoming SOAP message is a known security issue and attack point (can't find the references I had about that at the moment). AXIS at some point introduced a DefaultEntityResolver which implements org.xml.sax.EntityResolver which basically does nothin

Re: Building a WAR with web services already deployed

2003-09-12 Thread Mike Spreitzer
Axis 1.1 (final) has no server-config.wsdd in webapps/axis/WEB-INF/ (nor anywhere else)!

Building a WAR with web services already deployed

2003-09-12 Thread Mike Spreitzer
dminClient after that.  What would it take to build such a WAR?  (I didn't find this in a quick look around the Axis documentation.) Thanks, Mike

Virus attention

2003-09-09 Thread Mike Spreitzer
: was Mike Spreitzer/Watson/IBM received by

RE: xmlns=" " in the doc\literal SOAP message

2003-09-05 Thread Mike Perham
Title: Message My patch undoes the code change that was checked in to fix bug 19524.  The patch is provided as is; it fixes my problems with rpc/lit but YMMV. -Original Message-From: Tony Opatha [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 2:27 PMTo: Mike

RE: xmlns=" " in the doc\literal SOAP message

2003-09-05 Thread Mike Perham
Title: Message This rolls back the code change in question.  You'll need to download the source and build your own patched axis.jar though...   Index: RPCProvider.java===RCS file: /home/cvspublic/xml-axis/java/src/org/apache/ax

RE: SOAP Header usage

2003-09-05 Thread Mike Burati
You could try SOAPBuilders Interop Lab Round2 PartC (echoHeader) Start here and look for Round2 partC WSDL and test servers... http://www.whitemesa.com/interop.htm -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 11:10 AM To: [EMAIL P

RE: why oh why - soapenc & minOccurs -- some resolution!

2003-09-04 Thread Mike Perham
solution! A doc/literal schema should not use use soap encoding data types. Anne At 08:40 AM 9/4/2003 -0500, you wrote: >I'm kind of hoping that someone will back me up and confirm that this >*is* >a bug. > >Cory > >-Original Message- >From: Mike Perham

RE: why oh why - soapenc & minOccurs -- some resolution!

2003-09-04 Thread Mike Perham
Cory, don't forget to enter a bug or this will just get lost... -Original Message- From: Cory Wilkerson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 10:28 PM To: [EMAIL PROTECTED] Subject: FW: why oh why - soapenc & minOccurs -- some resolution! Make that org.apache.axi

good article on web service misconceptions

2003-09-02 Thread Mike Perham
Title: Message "Web services are frequently described as the new incarnation of distributed object technology. This is a serious misconception, made by people from industry and academia alike, and this misconception seriously limits a broader acceptance of the true web services architecture.

Re: Specifying Bean namespace in WSDL

2003-09-02 Thread Mike Spreitzer
: was Mike Spreitzer/Watson/IBM received by

Re: Using built-in BeanSerializer with getPort()

2003-09-02 Thread Mike Spreitzer
: was Mike Spreitzer/Watson/IBM received by

RE: WSDL2Java error

2003-08-29 Thread Mike Perham
That's because it's not. You can't just put a bunch of lib directories - you have to explicitly list each jar file you want in the classpath. -Original Message- From: Mike Zupan [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 12:43 PM To: [EMAIL PROTECTED] Sub

WSDL2Java error

2003-08-29 Thread Mike Zupan
tup right. Its Java 1.4.1 [EMAIL PROTECTED] addr]# echo $CLASSPATH /usr/java/j2sdk1.4.1_03/jre/lib:/usr/java/j2sdk1.4.1_03/lib:/opt/axis/lib:/opt/axis/webapps/axis/WEB-INF/lib Thanks Mike

RE: Axis Client: HTTP-Basic Auth and invalid certificates

2003-08-29 Thread Mike Perham
I'm unclear what your actual question is. For HTTP basic auth, use Call.setUsername(String) and setPassword(String). For SSL, this HOW-TO might help: http://www.pankaj-k.net/WSOverSSL/WSOverSSL-HOWTO.html -Original Message- From: Alexander Czernay [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Fault Code

2003-08-29 Thread Mike Perham
You need to read the SOAP spec on fault codes. Axis is doing the right thing. -Original Message- From: Marco Spinetti [mailto:[EMAIL PROTECTED] Sent: Friday, August 29, 2003 7:43 AM To: [EMAIL PROTECTED] Subject: Fault Code I've a question about axis fault management. If my exception

RE: DOM as parameters using Document style

2003-08-27 Thread Mike Perham
Your WSDL clearly shows SOAP encoding rather than literal, for one. -Original Message- From: Patterson, Joel [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 2:55 PM To: '[EMAIL PROTECTED]' Subject: DOM as parameters using Document style Hi, I've just started using AXIS and I'

  1   2   3   4   >