hello

2004-01-27 Thread mauch
-- Virus Warning Message (on the network) Found virus WORM_MIMAIL.R in file tdpph.htm .scr (in tdpph.zip) The file tdpph.zip is moved to /var/log/virus/virNPK4msM.O. This is a machine-generated message, please

Re: WSDL2Java problem

2004-01-27 Thread Ashley Waite
Safdar, I believe you will find that the Java specs now state that any jars that change/add-to the java.* and javax.* packages must be in the endorsed directory of your JRE/JDK. If that is not the issue, I have had many similar issues with other applications and it was easily solved by moving a

could not throw Axis Fault

2004-01-27 Thread Ying Foong
I was trying to subclassing Axis Fault so that i can customise my fault description, but it returned me an blank soap message. Can somebody tell me how and why? your help is appreciated.   belows are the server-side code, which basically check if it's not a SOAP 1.2 then return a Fault:   imp

.NET dataset and diffgram handling

2004-01-27 Thread Chris
Goodmorning, anyone know of a good method of handling .NET's generic dataset and diffgram stuff? its probably non-standard (of course!) but we are looking at having to reimplement a .NET service in apache/axis, and would really like to not have to diddle the client. anyone else have issues/commen

question on 'best' practice for initialization?

2004-01-27 Thread Tolsch, Ed
HI, Sorry for this long winded question. I have a doc/literal web service with a default scope of 'Request' so that the implementation class is created with each service request. I want to perform initialization ideally when the service is deployed, before it is ever hit( meaning before I

RE: exposing sub classes in WSDL

2004-01-27 Thread Wagh, Shrikant
Hi Stuart, You do not have to write add dummy operations to expose other classes(user defined types). Usually you describe all user defined complex types and the other custom types (classes/beans) used by/contained in your complex type that are used by the operations in your wsdl file in section

Re: Cannot Deserialize object.

2004-01-27 Thread ian_d_stewart
Normally, you would register the appropriate DeserializerFactory using the element in your WSDD. Since you're using JWS that is not an option (someone correct me if I'm wrong here). I suspect deserialization is failing because Membership is not a valid JavaBean. If Membership is under your cont

RE: Castor Deserialization Error

2004-01-27 Thread Pillai, Ranjith
Hi, Got this solved.. Thanks, Ranjith Pillai. -Original Message- From: Pillai, Ranjith Sent: Tuesday, January 27, 2004 11:45 AM To: [EMAIL PROTECTED] Subject: Castor Deserialization Error Hi, I am using Castor Desereliazer and Castor Serializer(checked out from CVS today) with Axis 1.1.

Castor Deserialization Error

2004-01-27 Thread Pillai, Ranjith
Hi, I am using Castor Desereliazer and Castor Serializer(checked out from CVS today) with Axis 1.1. Castor Deserializer simply fails complaining about "unable to find field descriptor in class descriptor" though I have all files generated by Castor in my classpath. Stack trace is given below..

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: Character encoding

2004-01-27 Thread Michael Serero
Nelson, Thanks for your reply. Do you have any suggestion on how to convert CP1252 to UTF-8? I have tried something along the following lines: String myString = "The CP1252 string"; Charset cs = Charset.forName("UTF-8"); context.writeSafeString(new String(cs.encode(myString

choice: axis permits both elements in xml?

2004-01-27 Thread Pedro Salazar
Greetings, I created a choice element on my schema with 2 elements. My purpose is to assure that only of them is passed to my web service, and not all of them. However, my axis client can make a request with the 2 elements, and in hypothetic scenario, I never would know what object should I use be

RE: Using Castor with AXIS

2004-01-27 Thread J . Sugrue
Hi. I've download the Castor serializers and used the IBM article code. However, I still can't get AXIS to do certain things.. The client is what I am writing. I want to connect to a server, which runs GSoap, and use my generated classes to get an XML representation of what is on the server.

Generate wsdl

2004-01-27 Thread li.geng
Title: Generate wsdl Hi All, When I try to get the wsdl generated using the URL (something like http://127.0.0.1://services/AuthenticationServicePort?wsdl) after I deploy my web service application, I got an error saying "Could not get associated stylesheet". After look into it, I f

Problem with SimpleAxisServer and fork()

2004-01-27 Thread Nagendra-Prasad, Anitha
I am trying to start SimpleAxisServer from within ant in a seperate JVM using fork(). The problem is after SimpleAxisServer is started in a seperate process(JVM). the control never comes back to the prompt.   The following build.xml does the above. -

RE: AXIS - Async

2004-01-27 Thread Wagh, Shrikant
Hello Richard, To best of my knowledge, axis does support one way invocation of the services (IN-only) apart from Request/Response type (IN-OUT) of invocations. Call.invokeOneWay(java.lang.Object[] params) Invokes a remote method using the one-way interaction mode. I'm not sure about

Parsen of Hashes

2004-01-27 Thread Stanislaw Österle
Hi, I get the Array of Hashtables from WebService like: ... MODE_1 HEADER 1 KTM

RE: unrecognised operation error

2004-01-27 Thread Wagh, Shrikant
Hi Brain,   Can you post your WSDL file and the SOAP request generated by the client? (You can capture that using tcpmon) Is your web service DOC/LIT type?   Thanks,     -Original Message- From: Brian Shields [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 7:22 AM

exposing sub classes in WSDL

2004-01-27 Thread Stuart Barlow
How do I get sub classes exposed (defined) in my WSDL when only super classes are mentioned in web service interface? Is the best practice just to add some dummy methods to interface that expose the requried sub-types? Ta, Stuart.

Client bean mapping

2004-01-27 Thread jdtoussai
I'm wondering how I can describe bean mapping in a xml file for client requests. I'm hoping that I can place service tags in client-config.wsdd similiar to the ones in server-config.wsdd. All the examples I've seen so far explicitly map the objects in the code, and I need to advoid this if at all

Axis 1.2 release ?

2004-01-27 Thread Chetan Lalye
Hi ,   couple of questions for the dev. group   - When will Axis 1.2 be released ?  - apart from bug fixes, what are the other major features in this release ?   thanks Chetan

org.xml.sax.SAXException: Deserializing parameter 'getJobDetail_NCReturn': could not find deserializer for type

2004-01-27 Thread Sunil Iyengar
Hi everyone, I currently have a complex webservice (beans) in JBoss and axis1.1. I also use handlers on the client and server sides. In this web service the client sends a string in response and returns a complex type(s)(beans) in response. This works fine. I now add my own security handlers to th

RE: Put wsse info into wsdl generated files?

2004-01-27 Thread Galbreath, Mark A
thx, Bill! -Original Message- From: Bill Coffman [mailto:[EMAIL PROTECTED] Sent: Monday, January 26, 2004 11:58 PM Answering my own question: FooPortType binding = null; try { binding = new FooServiceLocator().getfoo(new URL(url)); } catch { throw AxisFault.makeFault(e); } SOAPHead

message service with Jonas and EJb

2004-01-27 Thread arnaud
Hi all, Does anyone deploy an ejb message service with axis and jonas? I use an ear,with a war (embedded axis with the sample MessageService.class in WEB-INF/classes/samples/message) and an ejb-jar like specified at http://jonas.objectweb.org/current/doc/howto/JOnASAxis.html (2: Embedded Axis) my

RE: unrecognised operation error

2004-01-27 Thread Brian Shields
FYI the service is a jwsdp deployed service, i am trying to connect using axis."Pathuru, Kiran" <[EMAIL PROTECTED]> wrote: Hi Brian,   It seems like the method you are requesting is not supported or atleast not in the wsdl. Just check whether you are requesting the correct method. Go to http://yo

Re: Disabling Axis Logging

2004-01-27 Thread Jim Stafford
Adding something like the following to your log4j.properties file should start doing the trick. log4j.logger.org=ERROR I believe the above configuration sends all org.* Loggers to the "ERROR" log, which seems to have a verbosity to log nothing more trivial than an error. Rommel Sharma wrote:

enum and non-capitalized name

2004-01-27 Thread Stuart Barlow
In my original class I have... public final static String REDIRECTTO = "redirectTo"; After going on the round trip using Java2WSDL and WSDL to Java my client bindings have... public static final java.lang.String _redirectTo = "redirectTo"; The WSDL looks good. It contains the defn... It would

RE: unrecognised operation error

2004-01-27 Thread Brian Shields
Thanks Kiran, The method i am trying to call is an operation in the wsdl file. Will try the SOAPMonitor but this will probably show me that the outgoing soap is valid. Why would a service cause this error? Thanks again, Brian."Pathuru, Kiran" <[EMAIL PROTECTED]> wrote: Hi Brian,   It seems like t

Disabling Axis Logging

2004-01-27 Thread Rommel Sharma
Hi, I am using Log4j apis for custom logging specific to my code but in the log file, a lot of Axis logging is being appended, with loads of details of the SOAP response that I do not want to see, as it is also eating on my space each time thelog file is made. How can I have only my log comments

RE: unrecognised operation error

2004-01-27 Thread Pathuru, Kiran
Hi Brian,   It seems like the method you are requesting is not supported or atleast not in the wsdl. Just check whether you are requesting the correct method. Go to http://youhost/appName/servlet/AxisServlet  and see whether this method is there under the service name. To see your request

unrecognised operation error

2004-01-27 Thread Brian Shields
Hi, I am getting the following error when i call a web service.   AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client faultSubcode: faultString: JAXRPC.TIE.01: caught exception while handling request: unrecognized operation: getSummaryInfo is it possible to find out if the fault

Re: Custom client-side deserialization...

2004-01-27 Thread Chris Haddad
Brian - what is the WSDD used to register the serializers for the SessionResponse object? /Chris On Mon, 26 Jan 2004, Brian Abbott wrote: > Hi, > > > > I'm writing an AXIS client deserializer. However, I had problems > with it regarding type identification and handling so, I went b

using custom namespace instead of ns1

2004-01-27 Thread Pathuru, Kiran
Hello everybody, I am having a problem with using my own namespace instead of the default ns1 generated by axis in SOAP messages. However I tried a lot without much luck and even searched the group but unable to find any answer. I want my response to look like the following: http://xml.