standalone vs. servlet

2003-01-31 Thread Chuck Musser
I'm evaluating SOAP servers with an eye toward performance and ease of deployment. My instinct is to prefer a native SOAP implementation over a Java implementation and to prefer a standalone implementation over one that lives inside a servlet container. But I'm new to this stuff, so I really don't

RE: ServletSecurityProvider

2003-01-31 Thread Trevor Daniel Kramer
Thanks - That worked great. One more question. Is there a way to specifiy that only certain methods within a service need to be authenticated? For instance given this wsdd: Is there a way to specify that the methods getName should use security but getEmail

RE: Calling axis web services from JavaScript

2003-01-31 Thread Shellman, Joel
> From what I have researched there is no standard way to call > web services from JavaScript. Mozilla has built in support > for it and ie uses the webservice behaviour script component. > It also seems that the ie script component cannot call > services written using access. Is this the case

RE: Calling axis web services from JavaScript

2003-01-31 Thread Mark Clarke
Oops sorry that's axis not access! > > Hi all, > > From what I have researched there is no standard way to call > web services from JavaScript. Mozilla has built in support > for it and ie uses the webservice behaviour script component. > It also seems that the ie script component cannot call

Calling axis web services from JavaScript

2003-01-31 Thread Mark Clarke
Hi all, >From what I have researched there is no standard way to call web services from JavaScript. Mozilla has built in support for it and ie uses the webservice behaviour script component. It also seems that the ie script component cannot call services written using access. Is this the case or h

training for axis

2003-01-31 Thread matthew_f_hamburger
Is anyone willing/able/qualified to give training to a group of Java developers on using Axis to develop web services. It would be best if this could be done in Columbus, Ohio. If anyone is willing how much cash would they need to do this. Thanks, Matt This transmission may contain informa

RE: Limit to deployed services

2003-01-31 Thread Mark Mueller
If your jwsClasses directory is empty, then the cause of my problem isn't the cause of yours. --- "Brain, Jim" <[EMAIL PROTECTED]> wrote: > Same here. If I undeploy the services, all is well. > I deploy them again, > and the view page does blank. (Well, except for the > "And now, some > services

RE: How to break out of Axis request Handler

2003-01-31 Thread Vidyanand Murunikkara
Have you tried throwing an AxisFault from your handler. That should suffice. -Original Message- From: Vijay Bharti [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 4:22 AM To: [EMAIL PROTECTED] Subject: How to break out of Axis request Handler Hi All, I have written a small ser

RE: Limit to deployed services

2003-01-31 Thread Brain, Jim
Same here. If I undeploy the services, all is well. I deploy them again, and the view page does blank. (Well, except for the "And now, some services") Jim Jim Brain, [EMAIL PROTECTED] "Researching tomorrow's decisions today." (319) 369-2070 (work) SYSTEMS ARCHITECT, ITS, AEGON FINANCIAL PARTNE

RE: error deploying service using AdminClient

2003-01-31 Thread Vidyanand Murunikkara
Looks like the URL that the AdminClient uses doesnt point to the Axis Servlet. Check the web.xml of the webapp and see if AxisServlet is mapped properly. -Original Message- From: Sameer Bombatkar [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 2:12 AM To: [EMAIL PROTECTED] Subjec

Re: Limit to deployed services

2003-01-31 Thread Mark Mueller
Jim, This may not help, but I deployed a service with the same name as a .jws service that I had done as a test. The View page was blank. I removed the test class from the WEB-INF/jwsClasses directory, restarted Tomcat, and the View page suddenly worked again. Mark --- "Brain, Jim" <[EMAIL

Attachment files in client code -- best way to convert

2003-01-31 Thread Mark Mueller
Hi, I'm developing a service that returns an audio/x-wav file as an attachment. The simplest handling from the attachments sample uses a DataHandler return value type. I didn't like having: type="apachesoap:DataHandler" in my WSDL because I figured that non-Java clients would not necessarily k

Limit to deployed services

2003-01-31 Thread Brain, Jim
I have deployed 296 web services to AXIS in one shot today, and now, the "View" page will not list any of them (or any of the regular services, like Echo and such. Is there a limit to the number of deployed services in AXIS? How do I get my services to display in AXIS? I can send the deploy.wsdd

RE: Session Management

2003-01-31 Thread Mike Burati
If what you're looking for is the AXIS session, then once you have the MessageContext, it has a method conveniently called getSession(); If instead you really are looking for the HttpServletRequest (and/or response object) to help you debug why it's not maintaining state, take a look at how AxisS

Re: Session Management

2003-01-31 Thread Barry Levinson
Cory, First, on your server, set scope to session in your deploy.wsdd. The client will also need to cooperate with session scope; the client needs to hold onto the cookie returned by Axis. For a .NET client, the client must be able to accept a cookie. All you need to do is to add a CookieCont

Axis installation with weblogic 7.0

2003-01-31 Thread Praveen Peddi
I am planning to install Axis to deploy my soap services on weblogic. Does any one know if there are detailed instructions on how to do this.   Thanks   Praveen

RE: Session Management

2003-01-31 Thread Cory Wilkerson
Maybe I didn't state my question clearly -- what I'm saying is that I'm unsure of how to get to the HttpServletRequest object that is the foundation of this service request from MessageContext or from a Handler. Anyone? -Original Message- From: bin [mailto:[EMAIL PROTECTED]] Sent: Frida

RE: Antw: Asynchronous interface

2003-01-31 Thread Markus Frommherz
First, I scanned Dave, James, and Paul approach of extending jms in axis (nightly build). Looks impressing. Did'nt tried it, but could run already. I'll consider migrating, if it is offically accepted. IMHO no clean (open) solution yet avalaible. Secondly, you allmost exactly described the funct

RE: Antw: Asynchronous interface

2003-01-31 Thread Paul Andrews
Thanks. I read the referenced document. Unfortunately I'm not very familiar with the interfaces that are referenced in that document, so I'd like to as some possibly quite dumb questions: - Would the message correlator be exposed to a user of the API, or would it be hidden (or maybe both styles of

RE: Session Management

2003-01-31 Thread Chakraborty, Anirban
MessageContext.getCurrentContext(). Described in the axis faq. -Original Message- From: bin [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 12:04 PM To: [EMAIL PROTECTED] Subject: Re: Session Management if u take a look at samples.userguide.example4.LogHandler you will see u ha

RE: Session Management

2003-01-31 Thread Josh Kropf
MessageContext.getMessageContext() -Original Message- From: bin [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 3:04 PM To: [EMAIL PROTECTED] Subject: Re: Session Management if u take a look at samples.userguide.example4.LogHandler you will see u have to implement invoke( Messa

Re: Session Management

2003-01-31 Thread bin
if u take a look at samples.userguide.example4.LogHandler you will see u have to implement invoke( MessageContext msgContext ) in a Handler however i was also wondering how does a Service get a reference to the MessageContext? thanks bin > All, > > Subsequent client requests to my service don't

Re: Antw: Asynchronous interface

2003-01-31 Thread Steve Loughran
- Original Message - From: "Anne Thomas Manes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 31, 2003 06:30 Subject: RE: Antw: Asynchronous interface > There's a difference between an asynchronous API and an asynchronous > transport. You should be able to make asynchr

RE: Antw: Asynchronous interface

2003-01-31 Thread Paul Andrews
Yes. I can see how that would work. I'm not convinced that it's a satisfactory solution in my case for scalability reasons: It requires a thread for each outstanding request/response pair. I guess you could use an internal thread pool to manage that but my hope is that if an asynchronous interface

Session Management

2003-01-31 Thread Cory Wilkerson
All, Subsequent client requests to my service don't appear to be retaining state. I'm certain that I'm missing something rather trivial here re: session management but I can't find any documentation regarding the matter. That said, I have found the following tid bit: "It is up to some handler

RE: Axis and security

2003-01-31 Thread Stephane Lecercle
Title: RE: Axis and security thanks, I am going to look at the archive. Regards,   Stephane. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Sent: Thursday, January 30, 2003 7:50 PMTo: [EMAIL PROTECTED]Subject: RE: Axis and security If you do a little

RE: ServletSecurityProvider

2003-01-31 Thread Keeney, Thomas
Trevor, Here's how you set it up: 1) In web.xml, add the following init-param for the AxisServlet. This enables the provider by adding it as a MessageContext property: use-servlet-security 1 2) In web.xml set authentication method to BASIC.

RE: Antw: Asynchronous interface

2003-01-31 Thread Markus Frommherz
I beg your pardon. Next try: You want a convenient way to fire soap and consume async (consumer-producer)? If you run out of time, you might consider doing yourself: You will need an XmlRpcClient-class, that gets your parameters, passes that data plus a pointer to your consumer to a workerclass.

ServletSecurityProvider

2003-01-31 Thread Trevor Daniel Kramer
The javadoc says A ServletSecurityProvider, combined with the ServletAuthenticatedUser class, allows the standard servlet security mechanisms (isUserInRole(), etc.) to integrate with Axis' access control mechanism. By utilizing this class (which the AxisServlet can be configured to do automaticall

RE: Antw: Asynchronous interface

2003-01-31 Thread Jaime Meritt
Inline... Thanks, Jaime > -Original Message- > From: Anne Thomas Manes [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 31, 2003 9:31 AM > To: [EMAIL PROTECTED] > Subject: RE: Antw: Asynchronous interface > > There's a difference between an asynchronous API and an asynchronous > trans

RE: Antw: Asynchronous interface

2003-01-31 Thread Anne Thomas Manes
There's a difference between an asynchronous API and an asynchronous transport. You should be able to make asynchronous calls over HTTP, too. For a description of what I man, see the WASP documentation on asynchronous API: http://www.systinet.com/doc/wasp_jserver/basics/webServiceInvocation.html#b

Antw: Asynchronous interface

2003-01-31 Thread Markus Frommherz
You might consider to check the advanced JMS (Java Message Service) support in the 1.1 (cvs or nightly). Some folks reported to get it running. If you think of the onMessage-method, (experimentally) provided in the jwsdp from sun, this got not into a J2EE standard because of redundancy with JMS

RE: Interoperative attachments (MIME types)

2003-01-31 Thread Josh Kropf
Nice catch Mark!!! -Original Message- From: Mark Mueller [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 8:19 PM To: [EMAIL PROTECTED] Subject: RE: Interoperative attachments (MIME types) I think I may have solved the problem. I think there's a misspelling of "octet-stream"

Asynchronous interface

2003-01-31 Thread Paul Andrews
I've just read back through the archive of this mailing list and I notice that there was talk at the end of october of providing an asynchronous method invocation mechanism in Axis. I would be interested to hear how this is progressing. Thanks - Paul Andrews.

How to break out of Axis request Handler

2003-01-31 Thread Vijay Bharti
Hi All, I have written a small service handler to authenticate the SOAP client which is trying to access a service hosted on Axis. I want to know how can I stop the execution of the request if the authentication fails( and stopping Axis from invoking the target service) and send a fault message b

Java2WSDL and custom serializers

2003-01-31 Thread Mark Rowell
Hi I was wondering if it was possible to specify some custom serializers that Java2WSDL can "pick up" when it creates the schema for my types that I want to expose as a web service? I know I can put type mappings into server-config.wsdd globally (e.g. outside a service scope) but I dont think that

RE: axis compatibility to XML standards releases

2003-01-31 Thread Anne Thomas Manes
SOAP 1.1, WSDL 1.1, XML Schema May 2001 final Recommendation. > -Original Message- > From: Vinícius de Faria Silva [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 31, 2003 6:26 AM > To: [EMAIL PROTECTED] > Subject: axis compatibility to XML standards releases > > > Hy, i have got to con

axis compatibility to XML standards releases

2003-01-31 Thread Vinícius de Faria Silva
Hy, i have got to consume a couple of web services from a partner's system. My platform is j2ee and i am planning to use axis to do that. The partner's platform is 'whatever'. Regarding the compatibility of axis to XML standard releases, which SOAP and WSDL releases should i propose to be used by m

error deploying service using AdminClient

2003-01-31 Thread Sameer Bombatkar
I'm trying to deploy LogTestService from userguide/example4 of Axis Package. Whenever I'm trying to deploy the service on WebLogic6.1 using command  java org.apache.axis.client.AdminClient -p7001 deploy.wsdd .I am getting the following error on my dos prompt - Exception:AxisFault faultCode: {http

RE: [Fwd: [Fwd: Need a work-around for missing xsd:list support]]

2003-01-31 Thread Brian Dillon (ext. 944)
Wilfred, try using something like I use this and it works fine (however I do use Castor to do the mapping for me, i.e. use a Serializer/Deserializer) Brian. -Original Message- From: Wilfred Springer [mailto:[EM

RE: BeanSerializer

2003-01-31 Thread Mark Rowell
Hi Tom I think what I was really asking was if there was a way to turn off serialization in Java2WSDL for certain properties? Is it something that other users have requested? It would help me as I have a lot of prexisting classes, some of which I want to expose for WebService usage (calling from