[Fwd: Re: Security related information]

2003-11-17 Thread Chandrasegaram Jeyakumaran
Original Message Subject: Re: Security related information From: <[EMAIL PROTECTED]> Date: Mon, November 17, 2003 6:07 am To: <[EMAIL PROTECTED]> try these links which appeared previously in the mailing list. peaple have tried and praised. http://www-106.ibm.com/developerworks

Re: Exposing ejb stateless beans as Webservices

2003-11-17 Thread Srinath Perera
Hi Pradeep; To the best of my knowladge there is not such tool so far. But such tool is under dervelopment as a JSR109 impl with geranimo. more info please see http://nagoya.apache.org/wiki/apachewiki.cgi?JSR109Proposal it will take some time for that to avalible. Until then try to use EJB provi

RE: Multiple IP Address in client-side

2003-11-17 Thread Dwi Tjandra
Hi, Thanks a lot for your help. I guess I need to learn more about networking then. Thank you once more. Regards, Dwi -Original Message- From: Christopher Blunck [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2003 12:37 AM To: [EMAIL PROTECTED] Cc: Dwi Tjandra Subject: Re: Mul

RE: Axis/.Net interop

2003-11-17 Thread chris
Mikhail -I'd definitely expect a Java byte to be converted into an xsd:byte that would then be converted into a .NET System.SByte. A byte is defined in XML schema as: " 3.3.19 byte [Definition:] byte is .derived. from short by setting the value of .maxInclusive. to be 127 and .minInclusive.

RE: Returning array of objects from Axis Web service

2003-11-17 Thread Liviu Tudor
Would it be because you're trying to return a bar array from a method which is meant to return just a bar element public class Foo() { public *bar* myMehtod() { *bar[] b* = new bar[5]; for(int i = 0; i < 5; i++) {

Returning array of objects from Axis Web service

2003-11-17 Thread Tewari, Vijay
I am trying the following with Axis public class Foo() { public bar myMehtod() { bar[] b = new bar[5]; for(int i = 0; i < 5; i++) { bar[i] = new bar(); bar[i].setName("hello");

WSDL, WSDD and attachments : Please how to?

2003-11-17 Thread BLIS Webmaster (Patrick Houbaux)
Hi all, I'm currently developing a web service where I have a method that send or receive some data in attachments. My goal is to make it interoperable at least in the following situations: - Axis server / Axis client - Axis server / .NET client I know the following question have been asked sever

Exposing ejb stateless beans as Webservices

2003-11-17 Thread Pradeep Jonnalagadda
Guys, I need to expose stateless session beans as webservices.Given an ejb i would like to build a wsdl file and all the other needed files for axis from the ejb.I'm using websphere application developer.Is there any tool like java2wsdl which will generate the required files to expose as w

RE: where is the session namespace located?

2003-11-17 Thread chris
The definition is right inline because it's just a simple type; xsi:type="xsd:long" xml.apache.org/axis is the equivalent of tempuri.org ;) /Chris -Original Message- From: Yan Lin [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 3:25 PM To: [EMAIL PROTECTED] Subject: where is

AW: ATTN: Thomas Deploying Providers - one issue

2003-11-17 Thread Thomas Bayer
Hi Mark,   you don't have to build Axis anew. Plugable providers are plugable in an existing Axis installation. You can name the provider and the factory the way you like.    > 4. I created the file  - org.apache.axis.deployment.wsdd.provider in > axis\axis-1_1\META-INF\services and includ

Re: SOAP message parsing redundancy with doc-lit services.

2003-11-17 Thread Sharmin Choksey [comcast]
Please see my comments **     Have you find any solution on this topic?   * : The current solution points towards the usage of SOAP w/Attachments over MIME - since the message carried with the Attachment Part will not be parsed/processed in any way by the AXIS engine implementation. 

Axis/.Net interop

2003-11-17 Thread Mikhail Melamud
For the the Java bean having property defined as: private byte[][] multipleByteArrayValues; Axis 1.1 Java2WSDL generates descriptor as follows: As I understand this is OK as far as WSDL 1.1 and SOAP 1.1 concerned for rpc/soap encoded web service MS .Net Visual Studio stub

where is the session namespace located?

2003-11-17 Thread Yan Lin
Hi, I've created a service with session id enabled. Here is the soap header: http://xml.apache.org/axis/session";>-1380096502541275209 However, when I tried to find the namespace http://xml.apache.org/axis/session, it returns "Page not found". Does anyone know where is the definition lo

RE: Custom Exceptions & non-axis clients

2003-11-17 Thread I-Sampige, Srinivas
Rob, I am experimenting with custom error handling and interop. This is what I have to share - I wrote a custom class that extends java.rmi.RemoteException and implements Serializable (I think you are missing the implements Serializable part). It works just fine for me. On the .NET side I

Re: ANT and JUnit

2003-11-17 Thread Sivakumar Jagadeesan
Hi James : Thank you for your reply. I am concerned about building Web Services using Ant and as I part of build process I also wanted to have JUnit tasks. I am kind of struck how to have make these things automatic. Rgds, --Siva Jagadeesan From: James Black <[EMAIL PROTECTED]> Reply-To: [

Re: ANT and JUnit

2003-11-17 Thread James Black
Sivakumar Jagadeesan wrote: I went thru that chapter.. it is kind of out dated I think. It does not use wsdl2java ant task . Are you trying to build your webservices using ant, or just concerned with unit testing with ant? If you are just unit testing, then you shouldn't be concerned with w

RE: ANT and JUnit

2003-11-17 Thread Sivakumar Jagadeesan
Thanx Fontanel. I went thru that chapter.. it is kind of out dated I think. It does not use wsdl2java ant task . Rgds, -Siva From: "Fontanel, Laurent" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE: ANT and JUnit Date: Mon, 17 Nov

RE: ANT and JUnit

2003-11-17 Thread Fontanel, Laurent
Check out: http://www.manning-source.com/books/hatcher/hatcher_ch15.pdf good intro to interacting with Axis via Ant. -L. > -Original Message- > From: Sivakumar Jagadeesan [mailto:[EMAIL PROTECTED] > Sent: Monday, November 17, 2003 2:49 PM > To: [EMAIL PROTECTED] > Subject: ANT and JUni

ANT and JUnit

2003-11-17 Thread Sivakumar Jagadeesan
Hi Guys: I am new to this group. I have some questions . * Where could I find the ant build file for simple axis application? * Example for JUnit for Axis projects Rgds, -Siva _ Is your computer infected with a virus? Find out with a

Custom Exceptions & non-axis clients

2003-11-17 Thread Robert.Dietrick
I know this has been discussed before here, but I can't seem to find a solution. Hoping someone can provide assistance. I've created a custom exception class with some extra error info which I want my service methods to throw. When I run wsdl2java, Axis creates the class as a subclass of org.

RE: How to define document/literal service with multiple operatio ns

2003-11-17 Thread PILLAI,RANJITH (HP-PaloAlto,ex1)
Hi Dimuthu, Thanks for your reply. Could you elaborate your previous mail a little more? I have a message style webservice with multiple methods. Unfortunately I don't know what I need to give in my web service client to invoke appropriate method. Irrespective of what ever I add at client side,

ATTN: Thomas - Deploying Providers - one issue

2003-11-17 Thread Mark
Hi ThomasSorry to bother you but I am desperatley trying to get this working, but doing something silly and still get the same error 1. I created the provider in org.apache.axis.providers.java 2. I created the factory class "WSDDmyfactory " in org.apache.axis.deployment.wsdd.providers - the getnam

ATTN: Thomas Deploying Providers - one issue

2003-11-17 Thread Mark
Hi ThomasSorry to bother you but I am desperatley trying to get this working, but doing something silly and still get the same error 1. I created the provider in org.apache.axis.providers.java 2. I created the factory class "WSDDmyfactory " in org.apache.axis.deployment.wsdd.providers - the getname

Re: Where are the Axis nightly builds?

2003-11-17 Thread Davanum Srinivas
You can get the WHOLE compressed CVS tree at http://cvs.apache.org/snapshots/ws-axis/ -- dims --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > > I followed: >http://ws.apache.org/axis/ > to >http://ws.apache.org/axis/interim.html > to >http://cvs.apache.org/dist/axis/nightly/ > but the

Where are the Axis nightly builds?

2003-11-17 Thread Wendy Smoak
I followed: http://ws.apache.org/axis/ to http://ws.apache.org/axis/interim.html to http://cvs.apache.org/dist/axis/nightly/ but the files there are February and September 2003. What's the easiest way to work with the nightlies? To complicate matters, I have to use Windows at work, alt

Re: Multiple IP Address in client-side

2003-11-17 Thread Christopher Blunck
On Mon, Nov 17, 2003 at 02:42:41PM +0800, Dwi Tjandra wrote: > A client has two IP addr, and by default always sends request through IP addr #1. IP > addr #1 and #2 are in different subnet. This problem occurs when I try to send a > request from IP addr #2 instead from IP addr #1, from client (AX

Re: next issue: mixed content type (was: Re: wsdl2java returns in valid characters in

2003-11-17 Thread Dan Christopherson
Was the wsdd output fixed as well? Davanum Srinivas wrote: Try latest CVS. WSDL2Java works fine and the generated code compiles ok as well. -- dims --- [EMAIL PROTECTED] wrote: Here is a simple WSDL and XSD that produces the wsdl2java invalid character. WSDL is as follows targetNamespace="ht

RE: next issue: mixed content type (was: Re: wsdl2java returns in valid characters in

2003-11-17 Thread Davanum Srinivas
Try latest CVS. WSDL2Java works fine and the generated code compiles ok as well. -- dims --- [EMAIL PROTECTED] wrote: > Here is a simple WSDL and XSD that produces the wsdl2java invalid character. > > WSDL is as follows > > targetNamespace="http://w3.ibm.com/schemas/services/2002/11/15/stockqu

RE: next issue: mixed content type (was: Re: wsdl2java returns in valid characters in

2003-11-17 Thread asif . jiwani
Title: RE: next issue: mixed content type (was: Re: wsdl2java returns invalid characters in Here is a simple WSDL and XSD that produces the wsdl2java invalid character. WSDL is as follows http://w3.ibm.com/schemas/services/2002/11/15/stockquote/wsdl"     xmlns="http://schemas.xmlsoap.o

Re: next issue: mixed content type (was: Re: wsdl2java returns invalid characters in

2003-11-17 Thread Davanum Srinivas
Dan, The patch is now in latest CVS as well. So yes, please try latest CVS, reproduce the problem in a small wsdl/xsd and submit it as a bug report [http://ws.apache.org/axis/bugs.html]. If you can work up a patch, that would be even better :) [http://nagoya.apache.org/wiki/apachewiki.cgi?AxisPr

Stub instance reuse?

2003-11-17 Thread Greg Hess
Hi All,   Is it ok to have a singleton stub on the client side?   Is it ok to reuse a Stub instance for multiple method invocations?   I have run across some problems with Stub reuse in regards to attachments. My service/clients manually add and remove attachments. DataHandlers are n

RE: Method authorization

2003-11-17 Thread chris
Jeyakumaran / Pablo - To meet the requirements, SimpleAuthorizationHandler would need to be extended to support conditional access to methods based on the user's role. /Chris -Original Message- From: Chandrasegaram Jeyakumaran [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 1

[WSS4J] (Re: Problems with ENCRYPTION and SIGNING)

2003-11-17 Thread Davanum Srinivas
Please ask on the wss4j-devel mailing list (TILL the project moves to Apache). http://sourceforge.net/mail/?group_id=81168 Thanks, dims --- Alberto_Muñoz_Gallego <[EMAIL PROTECTED]> wrote: > > Dear colleagues, > > I'd like to introduce myself. I'm Alberto from Spain. I'm testing the new wss4j

java.lang.reflect.InvocationTargetException with custom classes

2003-11-17 Thread Scott Yeadon
Hello, I have deployed basic web services with no problem using AXIS 1.1 (e.g. simple string and int returns using the standard java classes (java.lang, java.util). However when I attempt to deploy more complex services using custom classes and jar files, I get a java.lang.reflect.InvocationTa

Multiple IP Address in client-side

2003-11-17 Thread Dwi Tjandra
Hi guys, I've been trying to solve this problem for a while, I really appreciate if one of you guys would like to give me an idea or hint. A client has two IP addr, and by default always sends request through IP addr #1. IP addr #1 and #2 are in different subnet. This problem occurs when I try

Problems with ENCRYPTION and SIGNING

2003-11-17 Thread Alberto Muñoz Gallego
  Dear colleagues,   I'd like to introduce myself. I'm Alberto from Spain. I'm testing the new wss4j project under Tomcat, but I get to the same error as Kazuo Miyamoto (althought he was working with a web services provider) at one particular point.   When I execute the signing and encrypting

Operation name = part name /client WSDL2Java

2003-11-17 Thread Hans Jakob Skovenborg
I found following in Axis which are even a very funny way of implementing funktionality or a bug. I made a wsdl for a document/literal web service. If I'm naming my operation name the same as the name af my request part and then run the wsdl2java (client), I get an RPC like method signature contai

RE: How to define document/literal service with multiple operatio ns

2003-11-17 Thread Dimuthu Leelarathne
Hi Ranjith, >call.setOperationName(new javax.xml.namespace.QName("urn:eprofile", >"updateProfile")); I have experienced that the above line has no effect whatso ever on the SOAP message (it should not have any effect on the SOAP body, in the doc\lit services method name is not send on the SOAP me

Re: DOCUMENT LITERAL and Java2WSDL error - Attempted to write schema for bad QName (no namespace) : fault

2003-11-17 Thread Stuart Barlow
Thanks for the ideas. :-) I think we will have to wait for a fix. Can I automate ANT to do that stuff? Its a shame because DOC/LIT is the now and the future. Michael Woinoski wrote: Stuart, I ran into the same problem yesterday. It seemed to happen when a service implement method declares that i

serializing complex-type problem

2003-11-17 Thread $B:4!9LZ!!9'@/(B
Hi all. (B (BI have a question about bean-serializing process. (BWhen my web service program returns object to the AxisServlet, Axis got (Binto endless loop. (BReturned object name is 'Operator', that also includes Operator called (B'createdBy' in his ParentClass. so when BeanSerializer try

Re: Security related information

2003-11-17 Thread Chandrasegaram Jeyakumaran
Hi, Axis has couple of simple handler implementation for the authentication and authorization issues. But they are very simple in implemetations. Authenitication handler compares the username password in the http header and compare them with the details in the locally directed list. Authorization

Security related information

2003-11-17 Thread Munesh
Hi, Can someone direct me to the security related framework provided by axis. My problem is to implement Authentication and Authorization for our System. Is there anything available with axis which can be used as a model for our requirement. Best Regards Munesh