RE: Where are WSS4J Binaries?

2005-02-16 Thread Anderson Jonathan
No binaries exist.  Checkout from CVS and build.   -Jon From: Ry. [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 16, 2005 2:07 PMTo: [EMAIL PROTECTED]Subject: Where are WSS4J Binaries? Hi, I am looking forward to using WSS4J in my project but I don't knowwhere to find the binaries

RE: Newbie doubts on XML Signature

2005-02-11 Thread Anderson Jonathan
, signing some papers, getting your certificate placed on their trusted list, etc) prior to invoking their service. Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: babloosony [mailto:[EMAIL PROTECTED] Sent: Friday, February 11, 2005 8:10 AM To: [EMAIL PROTECTED

RE: XMLBeanDe/Serializer sample

2005-01-14 Thread Jonathan Colwell
ehive http://incubator.apache.org/beehive project which imports it as well and relies on V2 code. cheers, Jonathan -Original Message- From: TMG [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 4:12 PM To: [EMAIL PROTECTED] Subject: Re: XMLBeanDe/Serializer sample Jonathan Co

RE: XMLBeanDe/Serializer sample

2005-01-14 Thread Jonathan Colwell
heers, Jonathan -Original Message- From: TMG [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 1:37 PM To: [EMAIL PROTECTED] Subject: Re: XMLBeanDe/Serializer sample Jonathan, I'm trying to use the serializer/deserializer in the war file (as indicated below) with xmlbeans ver

RE: XMLBeanDe/Serializer sample

2005-01-10 Thread Jonathan Colwell
Try this one built and deployed using 1.4.2 after removing the use of Generics, I just got so used to using them forgot they were another new 1.5 feature. http://superflaco.com/Beehive/java1dot4XBeanSample.war Jonathan -Original Message- From: Jan Galinski [mailto:[EMAIL PROTECTED

RE: XMLBeanDe/Serializer sample

2005-01-10 Thread Jonathan Colwell
#x27;t use any of the 1.5 features. grab the XmlBean serialization classes from the following location and compile them with 1.4 and you should be in good shape. http://svn.apache.org/repos/asf/incubator/beehive/trunk/wsm/src/runtime/ org/apache/beehive/wsm/axis/util/encoding/ cheers,

XMLBeanDe/Serializer sample

2005-01-08 Thread Jonathan Colwell
luded build.xml to try out your own XBean services. Let me know if you have additional questions or if you run into problems. cheers, Jonathan -Original Message- From: Hung Vu2000 [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 7:13 PM To: [EMAIL PROTECTED] Subject: RE: XMLBean

RE: XMLBean data

2005-01-06 Thread Jonathan Colwell
: Thursday, January 06, 2005 7:50 AM To: [EMAIL PROTECTED] Subject: Re: XMLBean data In CollectionSerializer.java: "Copyright (c) 2004 Walt Disney Internet Group. All Rights Reserved."? -- dims On Thu, 6 Jan 2005 07:48:09 -0800, Jonathan Colwell <[EMAIL PROTECTED]> wrote: >

RE: XMLBean data

2005-01-06 Thread Jonathan Colwell
ng to keep in mind is that XmlBeans do not have a default constructor, instead they use an internal Factory to create instances. If you are trying to register XmlBeans using the regular BeanSerializers you are out of luck but these serializers should help. cheers, Jonathan -Original Me

RE: Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-15 Thread Jonathan Colwell
Try grabbing a nightly build, or building from the CVS tree. IIRC, the constants package was created after RC1. -Original Message- From: Vy Ho [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 9:58 AM To: [EMAIL PROTECTED] Subject: Re: Does axis 1.2 comply with JDK 5.0 (1.5) Als

RE: xmlbeans

2004-10-29 Thread Jonathan Colwell
I wrote an XmlBeanSerializer and Deserializer for Beehive WSM. It's definitely a work in progress but is mostly functional (at least when I use it). It would be great to get folks trying it out to work out the bugs. you can look at it here: http://svn.apache.org/repos/asf/incubator/beehive/trunk

RE: jax-rpc compliant handler

2004-10-28 Thread Jonathan Colwell
hat simply adds funkadelic to the SOAPBody of the response. Not at all useful, but it shows the basic idea. cheers, Jonathan -Original Message- From: Ben Anderson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 28, 2004 10:23 AM To: [EMAIL PROTECTED] Subject: jax-rpc compliant handler Hi, I&#x

nightly builds?

2004-09-20 Thread Jonathan Colwell
that incorporate this change, I was curious if something was up with the nightlies that prevented the binary distribution from being built with the newest sourcecode. thanks, Jonathan

AdminClient gives 401 error on localhost???

2004-08-27 Thread Jonathan DiCarlo
Hello everybody, I'm having trouble deploying my first webservice on Axis. (I bet you hear that a lot). Specifically, I get a 401:unauthorized error when I run AdminClient (or the ant task ). The fine print in the error message says "Remote administration access not allowed". This is strang

RE: Java2WSDL help

2004-08-25 Thread Anderson Jonathan
My team has been building WS-I compliant doc/lit services and clients for months now using Axis 1.2 alphas, beta 1, and beta 2. We just build our services from the XSD+WSDL in (WSDL2Java), instead of from the Java code out (Java2WSDL). Very important to understand the implications of either appro

RE: purpose/usage of .wsdd file

2004-06-18 Thread Anderson Jonathan
I think of it this way:   Axis is essentially a servlet, and you deploy it in a WAR via the WEB-INF/web.xml deployment descriptor.   Well, how do you tell Axis what services to deploy?   The Axis WEB-INF/server-config.wsdd deployment descriptor tells Axis what classes to deploy as services

RE: Populate WSDL2Java object from XML file.

2004-06-17 Thread Anderson Jonathan
Ever looked into Axis MSG style calls? This is client code, but you can do the same thing on the server side as well, assuming you've built a MSG style service. Check out the Axis docs for more information. Service service = new Service(); Call call = (Call) service.createCall(); call.setSOAPAct

Setting the Socket Timeout

2004-05-28 Thread jonathan . lowe
the call timeout straight away! Jonathan Lowe This communication is for informational purposes only. It is not intended as an offer or solicitation for the purchase or sale of any financial instrument or as an official confirmation of any transaction. All market prices, data and other

RE: specifying JAXP 1.1 compliant XML parser for Axis

2004-05-19 Thread Anderson Jonathan
We're running Axis in Weblogic 8.1 SP2 with only the following modification to the startManagedWeblogic.cmd startup script: set JAVA_OPTIONS=-Djavax.xml.soap.SOAPFactory=org.apache.axis.soap.SOAPFactoryIm pl But this has nothing to do with JAXP XML parsers (Xerces) or JAXP XML processors (Xalan)

RE: Best Practices?

2004-05-14 Thread Anderson Jonathan
Try Mindreef SOAPScope 3.0. It runs as a web app on your local machine, and you can either upload a WSDL to it or point it at a ?WSDL endpoint. It consumes the WSDL and constructs an HTML form page that allows you to populate the SOAP request. Click invoke, see the response. Very handy - can ge

RE: Best Practices?

2004-05-12 Thread Anderson Jonathan
o have been not tying my service layer to my DAO layer. My reasons are > more personal preferrance then need. But, I can take my DAO and put it > behind something else with little changing except creating a new broker. > > -Joe > > > > - Original Message - > From: "A

RE: Best Practices?

2004-05-12 Thread Anderson Jonathan
ce seems like the obvious place to start. If WSDL is a burden to work with, that's not a criticism of Axis. My $.02, Russ -Original Message- From: Yakulis, Ross (Ross) [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 1:30 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: B

RE: Best Practices?

2004-05-12 Thread Anderson Jonathan
I would venture to say that 80% of the complications and frustrations implementing interoperable (WS-I compliant Doc/Literal) SOAP web services on Java platforms stem from the XML datatype to Java datatype binding problem. If you take the time to learn W3C XML Schema, you'll see the problem: it's

RE: Have doubts about Doc/Lit with axis

2004-04-27 Thread Anderson Jonathan
a Granny Smith, and each may be suited for different types of recipes. :) Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: Shantanu Sen [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 27, 2004 2:46 PM To: [EMAIL PROTECTED] Subject: RE: Have doubts about Doc/

Known WSDL emitting issue or new 1.2 beta bug?

2004-04-19 Thread Anderson Jonathan
urn good WSDL, but hey - now's the time to fix this, right? Thoughts and comments are quite welcome. Regards, Jonathan Anderson Booz Allen Hamilton http://webservices.bah.com/examples/docliteral/bank"; xmlns="http://www.w3.org/2001/XMLSchema"; xmlns:bank="http://webservice

What is needed from the JCP to ensure SOAP service portability across all Java SOAP platforms? (was RE: Need suggestions on web service interop and design)

2004-04-15 Thread Anderson Jonathan
iscriminating features. WASP likewise touts its robust W3C schema support (substitution groups, etc). So am I dreaming of a utopia that vendors will never agree to? Is it not in a SOAP platform vendor's best interest to make SOAP services implemented on their platform proprietary? Regards, Jonathan Anderson Booz Allen Hamilton

RE: Need suggestions on web service interop and design

2004-04-14 Thread Anderson Jonathan
t no J2EE specification currently mandates one particular approach (even JAX-RPC 2.0's usage of JAXB 2.0 as its default data binding API will probably be overridable). A SOAP service implemented on one Java platform today is simply not portable to another Java platform - and that is indeed a sa

RE: Axis 1.2 supports doc/lit better, they say

2004-04-14 Thread Anderson Jonathan
Search Query field, enter "doc/lit", check the Summary Query Field box, and click the View button. This should pull up all of the 1.1 doc/lit bugs. Enjoy. Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: Barzilai Spinak [mailto:[EMAIL PROTECTED] Sent:

RE: Need suggestions on web service interop and design

2004-04-14 Thread Anderson Jonathan
Paul, Sounds like you might be hung up on W3C XML schema. Why not just do something like this? That way, you could have XML that looks like this: Book1 Book2 Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: Need suggestions on web service interop and design

2004-04-14 Thread Anderson Jonathan
n you open the WSDL and click the green Validate button. And as far as feeding them into Axis WSDL2Java goes, you have two options: Command line: java org.apache.axis.wsdl.WSDL2Java -o src\samples\axis -a -s -t -T 1.2 .\resources\BankService-DocLiteral.wsdl or Ant build script: Regards

RE: Need suggestions on web service interop and design

2004-04-14 Thread Anderson Jonathan
logies can compete, it's almost as if we'll be following Microsoft's lead and interoperating with THEM rather than the other way around. Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: Nelson Minar [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14

RE: Need suggestions on web service interop and design

2004-04-14 Thread Anderson Jonathan
David, you may be understating the problem a bit. Building interoperable, WS-I compliant SOAP services with Axis is a little involved. See: http://marc.theaimsgroup.com/?l=axis-user&m=107945370506044&w=2 Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- Fro

RE: Need suggestions on web service interlope and design

2004-04-14 Thread Anderson Jonathan
P services that fit together into some sort of loosely coupled, scalable, and actually useful Service Oriented Architecture. Somebody should really open a Service Oriented Architect school. :) Regards, Jonathan Anderson Booz Allen Hamilton -Original Message- From: HG [mailto:[EMAIL

RE: JAXB vs Axis generated classes

2004-04-14 Thread Anderson Jonathan
corder in MessageElement. Is it possible for to use JAXB >to read from the stream instead of using the using the event recorder >to record to a string and then using jaxb to construct an object tree? Might want to try posting to Axis-Dev. They might be very interested in what you're trying to do. Regards, Jonathan Anderson Booz Allen Hamilton

RE: microsoft discontinuing dime spec?

2004-04-14 Thread Anderson Jonathan
Anne, Monika - Check out Rich Turner's blog entry: http://blogs.msdn.com/richturner666/archive/2004/03/10/87602.aspx Thankfully, the Microsoft guys involved with Indigo blog pretty regularly. Makes it easier to read the tea leaves. :) Regards, Jonathan Anderson Booz Allen Ham

RE: What are the advantages of Message style web services?

2004-04-05 Thread Anderson Jonathan
Anne, Any idea if and/or when JAX-RPC will standardize this? So far it seems like an Axis specific thing - has anyone seen it elsewhere? (Glue? CapeClear?) Would it not make sense to give the developer the choice of either using the XML <-> Java data binding facilities that a particular

RE: Doc-Style Web Clients

2004-03-25 Thread Anderson Jonathan
I heard grumblings awhile ago that Microsoft might be dropping support for DIME in lieu of some WS-I discussions concerning attachments. Might wanna try googling around for more information, but this probably won't occur until the next .Net/Vis Studio release anyway. -Jon -Original M

RE: Doc/Literal support in axis

2004-03-19 Thread Anderson Jonathan
I second that suggestion. :) -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Friday, March 19, 2004 2:08 PM To: [EMAIL PROTECTED] Subject: RE: Doc/Literal support in axis When "starting with WSDL", what that really menas if that you should be starting with a W

RE: Doc/Literal support in axis

2004-03-19 Thread Anderson Jonathan
nt: Thursday, March 18, 2004 3:33 PM To: Anderson Jonathan Cc: [EMAIL PROTECTED] Subject: RE: Doc/Literal support in axis I was looking again at your excellent cookbook for doing doc/literal in Axis and had a couple of followup practical questions: You specify using Axis 1.2 alpha. Is there any

RE: XmlBeans and Axis? [Re: Doc/Literal support in axis

2004-03-17 Thread Anderson Jonathan
Jim Murphy wrote: >I don't get why this is a problem. Say I have a handler that wants to >transform a request in some way (decrypt, remove a Header whatever). >Isn't that just consuming one stream and producing another? If it wants >to consume one stream map that to Java using some marshaling/bin

RE: XmlBeans and Axis? [Re: Doc/Literal support in axis

2004-03-17 Thread Anderson Jonathan
The only problem with decoupling the SOAP processing layer from the Java data binding layer is the implications such an approach has on "intermediary node" processing. Almost every SOAP stack I've seen implements "SOAP intermediary nodes" as some sort of interceptor (Axis handlers, JAX-RPC handler

RE: Doc/Literal support in axis

2004-03-16 Thread Anderson Jonathan
Awesome. I was aware of TREX, but not of RELAX or RELAX NG. I'd honestly forgotten there were alternatives to W3C XML Schema, which is most likely an unfortunate side effect of having my head down in the SOAP bubbles for too long. So the question really, as you pointed out, is toolkit support.

RE: Doc/Literal support in axis

2004-03-16 Thread Anderson Jonathan
olkit iterops. Maybe we'll see an XML Schema "Lite" in the future? -Jon -Original Message- From: Dennis Sosnoski [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 5:29 PM To: [EMAIL PROTECTED] Subject: Re: Doc/Literal support in axis Anderson Jonathan wrot

RE: Doc/Literal support in axis

2004-03-16 Thread Anderson Jonathan
Dennis Sosnoski wrote: >As I've said before, I think it's unfortunate that JAX-RPC/Axis is >coming from such a strong rpc/enc orientation. I think an API for >doc/lit services can be *much* simpler than the current mess of stubs, >ties, wire, duct tape, chewing gum, etc. Is this not where everyone

RE: Doc/Literal support in axis

2004-03-16 Thread Anderson Jonathan
Jim, Nelson, all, So, now that we all agree that SOAP is just a framing protocol and processing model, and XML Schema is that de-facto type system for defining interoperable data types... The $50,000 Question: What problems can we solve with SOAP based Web Services? A colleague of mine has sugge

RE: Web Service Security - what's the best way to achieve it?

2004-03-16 Thread Anderson Jonathan
No easy answer, as it all depends on the deployment environment that you need to support. Who is consuming the service? Is it a portal? Do you own the portal server that is consuming it? What about the service itself? Do you own the whole server? Where are they located? Are they both on a VP

RE: Doc/Literal support in axis

2004-03-16 Thread Anderson Jonathan
Hey gang, Time for my two cents. We've been using Axis 1.2 alpha builds since November '03 to build WS-I compliant document literal web services. How is this possible? Here's our cookbook: 1) Create XML schema in Altova XMLSpy that defines the datatypes that the web service is to exchan

Custom serialization

2004-03-16 Thread Jonathan Melvin
Title: Message   I have a class with a method that returns a string. The string is returned by a webservice Is there an easy way to tell axis to serialize this class to a string? This e-mail may contain privileged and confidential information and should not be used by anyone w

StringBuffer

2004-03-15 Thread Jonathan Melvin
Does Axis automatically handle StringBuffer or will I need a custom serializer? Jon M This e-mail may contain privileged and confidential information and should not be used by anyone who is not the original intended recipient(s). If you have received this e-mail in error, please notify us imme

RE: JNI InvocationTargetException w/Tomcat service

2004-02-13 Thread Jonathan Melvin
For JNI the dlls need to be in the VM's java.library.path . This is usually set when the vm is started on the command line with something like -Djava.library.path="C:\my dll folder" . I have no idea where you set this for tomcat, and I don't think you can set it in java either. Jon M -Origina

RE: Axis and Basic Profile 1.0a

2004-01-22 Thread Anderson Jonathan
A really great WS-I WSDL/XSD testing tool is Mindreef SOAPScope (www.mindreef.com). We successfully used their 2.0 release to ensure that our doc/lit WSDL/XSD was WS-I compliant before running Axis 1.2 alpha wsdl2java against it. Their current release, 3.0, touts further WS-I testing capabilities

RE: RPC and Doc/Literal...

2004-01-15 Thread Anderson Jonathan
In most of our experiments all of the doc/lit WSDL emitted by Axis 1.2a's java2WSDL tool was either invalid or not WS-I compliant. I define "invalid" to mean "not immediately usable for a client to bind to and successfully invoke the service." I define "not WS-I compliant" to mean failing Mindreef

RE: RPC and Doc/Literal...

2004-01-12 Thread Anderson Jonathan
First, read this if you haven't: http://www.javaworld.com/javaworld/jw-10-2003/jw-1003-wsstyles.html Bottom line is that you can't do doc/literal with Axis 1.1. We're currently using Axis 1.2 alpha builds to publish doc/literal Web services. It goes something a little like this: Build XML Sche

Parameter base class

2003-11-06 Thread Jonathan Melvin
I would like the java objects I am returning from a webservice to be derived from a base class and the base class not to be visible in the WSDL. Can this be done easily? Jon M This e-mail may contain privileged and confidential information and should not be used by anyone who is not the origina

RE: Using JNI in a service?

2003-08-08 Thread Jonathan Melvin
I use JNI in Axis in Jboss without any particular problems. Post the full exception you are getting -Original Message- From: Adhamh Findlay [mailto:[EMAIL PROTECTED] Sent: 08 August 2003 14:04 To: [EMAIL PROTECTED] Subject: Using JNI in a service? Hello, Has anyone successfully used JN

Java2WSDL propety names

2003-07-31 Thread Jonathan Melvin
I am returning a bean from a web service. Say the bean has 3 propeties as below PROP_ONE Prop_Two PRop_Four in the WSDL file these end up as PROP_ONE prop_Two PRop_Four Notice that the second property has had its first letter set to lowwer case while the other names have been left alone. Any i

RE: Java2WSDL: Can't user Java interfaces in method sigs?

2003-07-31 Thread Jonathan Melvin
Title: Message I don't think there is any reason in principal you shouldn't be able to do this, but it doesn't work in AXIS. I believe it does work on other engines (Oracle9iAS) -Original Message-From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: 30 July 2003 20:21To: '[EMA

WSDL string restrictions

2003-07-22 Thread Jonathan Melvin
How can I get a generated WSDL with method parameters that have restrictions. Eg a string of max length 10 characters? Jon M This e-mail may contain privileged and confidential information and should not be used by anyone who is not the original intended recipient(s). If you have received this

Duplicate Class warning

2003-06-17 Thread Jonathan Melvin
I have two applications deployed. Both have a class in common. I get a warning WARN [ClassLoadingTask] Duplicate Class Found: coboltypes.piX Where picX is the shared class What am I doing wrong? Jon M This e-mail may contain privileged and confidential information and should not be used by a

stopClasses

2003-06-02 Thread Jonathan Melvin
I can specify stopClasses to java2WSDL to stop inheritance searches. What do I put in my wsdd file to do the same thing for atomatically generated WSDL files? Jon This e-mail may contain privileged and confidential information and should not be used by anyone who is not the original intended re

RE: Web Service Model - Security Issues

2003-01-28 Thread Anderson Jonathan
coverage in security, it is a matter of rate of adoption. DOS attack is different. In fact, by looking at the complexity in security processing, the hacker doesn't need to simulate many clients to bring down a web services site. Rgds, Ricky At 02:02 PM 1/28/2003 -0500, Anderson Jonathan wrot

RE: Web Service Model - Security Issues

2003-01-28 Thread Anderson Jonathan
You just asked yourself several million dollar questions. First, Web Services are ever evolving, and it seems to me that there are way too many standards and standards bodies out there. So you're not alone. Second, Apache Axis implements SOAP 1.1, and security is beyond the scope of the SOAP spec

[+] Axis, Proxies, & System properties [+]

2002-11-25 Thread Asbell, Jonathan
I have read various postings regarding use of authenticating proxies between webservice clients and webservices, and I am not sure of the consequences of the posted solutions.  Different webservices may need to use different authenticating proxies.  EXAMPLE:  ** One webservice client may acc

RE: Document style web services

2002-11-22 Thread Asbell, Jonathan
and therefore ??? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 22, 2002 11:59 AM To: [EMAIL PROTECTED] Subject: RE: Document style web services It may be old news, but its still true. Some of us are getting tired of being made to jump thr

RE: Axis, JSSE and HTTPS

2002-11-22 Thread Asbell, Jonathan
, November 22, 2002 9:18 AM To: [EMAIL PROTECTED] Subject: RE: Axis, JSSE and HTTPS Thanks Jonathan, I am actually trying to go a little further than Tomcat SSL. I have set up the Apache HTTP server to sit in front of Tomcat (they communicate over mod_webapp). The Apache HTTP server handles SSL

RE: Axis, JSSE and HTTPS

2002-11-22 Thread Asbell, Jonathan
Here is what I had to do for Tomcat. Hope this helps == place three jsse jar files in \jre\lib\ext === run java keytool to generate the key in the keystore located in the home directory of the user/owner of tomca

RE: JMS sample - (CLARIFICATION)

2002-11-21 Thread Asbell, Jonathan
Can I get a clarification on JMS and AXIS (or any webservice for that matter). If you wrap a webservice call in a jms call, all that really does is spin off a thread. However, the http call initiated inside the thread itself is still synchronous. That is, the webservice call can timeout within t

<><> SERVICE CONVERTING DB VALUES TO XML <><>

2002-11-21 Thread Asbell, Jonathan
now of any other such packages.  I thought I once saw one at Sourceforge, but I have been unable to find it again.  Any suggestions? Jonathan

RE: mounting data sources to the net via web services

2002-11-19 Thread Asbell, Jonathan
See these links http://www.enosysmarkets.com/ http://jin.dis.vt.edu/fedsearch/ http://jin.dis.vt.edu/cgi-bin/fedsearch/dump-xml-list.pl?query=web http://www.dlib.org/dlib/september98/powell/09powell.html#Problem http://filebox.vt.edu/users/vdippold/fedsearch/ EMERGE - at NSA by Joe Futrelle SDAR

Is there a way to get the input stream from the SOAP call or service?

2002-11-19 Thread Asbell, Jonathan
Is there a way to get the input stream from the SOAP call or service? I am having a devil of a time authenticating

<<< client calls with authenticating proxy >>>

2002-11-19 Thread Asbell, Jonathan
I have seen many postings regarding webservice client calls through an authenticating proxy.  I have tried all of the solutions and have had no success.  The solutions I have tried are below.  Any suggestions?   ==NETWORK ARCHITECTUREinternal webse

JasperException Tomcat 4.1.12

2002-09-27 Thread Asbell, Jonathan
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533) at java.lang.Thread.run(Thread.java:484)   Apache Tomcat/4.1.12         Jonathan Asbell Director of Development Mcgraw-Hill Information & Media Services  

problem with TCPMON

2002-07-02 Thread Watts, Jonathan (US - Hermitage)
When I try to listen to port 8081 (where my tomcat server is) I get an error message that says. "java.net.BindException: Address already in use: JVM_Bind"   Any ideas how to fix this?  I could not find a solution when I searched the net. Jon - This message (including any attachments) conta

are all return values strings?

2002-04-25 Thread Jonathan
Hello. Are return values from a service restricted to Strings, or just anything implementing the "Serializable" interface?  At some point the return values have to be serialized into xml, or some String value.  How should I do this?

Using the Axis api

2002-04-25 Thread Jonathan
Hello. I have played with some of the examples, and I am realizing that there is much more to "building" a soap call.  That is, thers are many options and additional api calls if you want the SOAP engine to do what you want.  For example, I am very confused as to what additional api calls I

<><><> Cant map service name to class <><><>

2002-04-21 Thread Jonathan
1) I have created a webapp in tomcat called "mywebapp"   2) I then placed all the appropriate jars for axis in "mywebapp/WEB-INF/lib", except for the three jars which contain "java/javax" in the package name, which I have instead placed in Tomcats own "lib" directory (according to the mailin

Hooks for admin & viewing deployed services ???

2002-04-14 Thread Jonathan
The command "java org.apache.axis.client.AdminClient list" will send a listing of all the deployed components to standard out.  I wanted to get this list to display on a jsp page.  In fact, I want to have alot of this admin functionality available via jsp. I have not found hooks to do this. 

What actually happens when you deploy a service

2002-04-14 Thread Jonathan
We use: "java org.apache.axis.client.AdminClient deploy.wsdd"   Does this command create some kind of binary file? How do you see a list of what has been deployed? What technically happens when a deployment is undeployed?