RE: Whois

2005-02-04 Thread Oleg Lebedev
Maybe somebody could point me to a translation webservice. Something that would take a word, original language and the language to translate the word to and return the translated word. They have two translating webservices on xmethods, but they are very limited in their functionality. Thanks.

exception during WSDL generation via ?wsdl

2005-01-23 Thread Oleg Lebedev
Greetings. I have a web service, which I successfully deployed on a running Axis server. Now I am trying to get it to work without a running Axis server by deploying Axis as a part of webapp. I updated my webapp's web.xml and server-config.xml files to match those used on the Axis server. I

RE: Log4j - Problems

2004-10-21 Thread Oleg Lebedev
Title: Message Based on the warning, I would think that you havea loggerorg.apache.axis.i18n.ProjectResourceBundle declared in your log4j.xml, but it does not have any appenders associated with it. you need to have smth like this: logger name="org.apache.axis.i18n.ProjectResourceBundle"

RE: wsdl generation

2004-10-06 Thread Oleg Lebedev
Title: Message Tony, you were right about IWSState not conforming to Java Bean conventions. I was missing one of the setter methods. Now it's working fine. Thanks. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 06, 2004 1:24

RE: WSDL2Java error

2004-10-05 Thread Oleg Lebedev
Chris, You have a space in the name below: wsdl:message name=sendFile Request Remove the space and it may fix your problem. -Original Message- From: Hubble, Christopher [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 05, 2004 12:04 PM To: [EMAIL PROTECTED] Subject: WSDL2Java error

wsdl generation

2004-10-05 Thread Oleg Lebedev
Title: Message Greetings. I am using java2wsdl to generate wsdl for my web service. I have a getNextActivity() method which returns IWSActivity, so wsdl2java correctly generates the following: wsdl:message name="getNextActivityResponse"wsdl:part name="getNextActivityReturn"

Axis context classpath

2004-08-10 Thread Oleg Lebedev
Greetings. I am trying to configure my web service, which uses Hibernate, to run with Axis. The only way I could get it to work was by copying all the required Hibernate configuration files in WEB-INF/axis/classes/ directory, which is pretty ugly. I am wondering if it is possible to change Axis

Generating wsdl for interfaces

2004-07-29 Thread Oleg Lebedev
Title: Message Greetings. I am trying to figure out how toget wsdl2java to work with methods which return interfaces. I have an interface, which declares the following method which returnsIState interface: public IState getState();java2wsdl generates correct wsdl, butshows a warning

RE: Generating wsdl for interfaces

2004-07-29 Thread Oleg Lebedev
with State and it works. I wonder if there is a more straightforward way to do this. Thanks. -Original Message-From: Oleg Lebedev [mailto:[EMAIL PROTECTED]Sent: Thursday, July 29, 2004 1:09 PMTo: [EMAIL PROTECTED]Subject: Generating wsdl for interfaces

XSD schema import vs. explicit type declaration

2004-07-27 Thread Oleg Lebedev
Title: Message Greetings, I am experiencing a problem with wsdl2java throwing a "type referenced, but not defined" exception whenan XSD schema file is imported in a WSDL file. However, if I copy the XSD type definition directly in the WSDL filewsdl2java works fine. Here is the error

RE: XSD schema import vs. explicit type declaration

2004-07-27 Thread Oleg Lebedev
. Try changing the xsd:import to an xsd:include. That more closely models what your are trying to do, no? I'd love to hear how you make out. Jim Murphy Mindreef, Inc. Oleg Lebedev wrote: Greetings, I am experiencing a problem with wsdl2java throwing a type referenced, but not defined

RE: java2wsdl include wsd file

2004-03-23 Thread Oleg Lebedev
Title: Message Hi Jagannath. See the bottom of this messsagefor the description of how I imported the Set schema. Can anyone else help us make the process of importing external XML scemas into the wsdl file automatic? How should this be done with the Ant builds? My feeling is that most

java2wsdl include wsd file

2004-03-22 Thread Oleg Lebedev
Title: Message Hi. I asked a similar question a couple of days ago, but haven't received an answer. I've made some progress on fixing the problem, so now I got a different question. I have a method in my Java class, which returns java.util.Set. When I run Ant task java2wsdl, I get the

[axis-wsdl2java] java.io.IOException: Type Set is referenced but not defined.

2004-03-19 Thread Oleg Lebedev
Title: Message Hi all. I am using wsdl2java and am getting the following exception: [axis-wsdl2java] java.io.IOException: Type Set is referenced but not defined. I am sure it is related to me using type Set in my Java code. Below is the exerpt from the wsdl file. schema

How to prevent Axis from modifying the source code?

2004-03-10 Thread Oleg Lebedev
Hi. I am using Axis to send the data layer objects (beans) between the client and the server. So, Axis modifies the source code of each bean class by appending getSerializer, getDeserializer, etc methods. Is there a way I can configure Axis not to change my source code and use a different package

RE: How to prevent Axis from modifying the source code?

2004-03-10 Thread Oleg Lebedev
Ok, that was easy, just needed to change the output settings for wsdl2java Ant task. -Original Message- From: Oleg Lebedev Sent: Wednesday, March 10, 2004 4:57 PM To: [EMAIL PROTECTED] Subject: How to prevent Axis from modifying the source code? Hi. I am using Axis to send the data

ClassNotFoundException when using my own logger

2004-03-03 Thread Oleg Lebedev
11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)at java.lang.Thread.run(Thread.java:536) Oleg Lebedev Software Engineer Waterford Insti

RE: ClassNotFoundException when using my own logger

2004-03-03 Thread Oleg Lebedev
classes is available in classpath __Hari -Original Message-----From: Oleg Lebedev [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 12:02 PMTo: [EMAIL PROTECTED]Subject: ClassNotFoundException when using my own logger Hi all.

RE: SoapMonitorApplet

2004-02-11 Thread Oleg Lebedev
Title: Message Sorry, it was a typo. I did add the requestFlow to deploy.wsdd It's actually very easy with an ANT replaceregexp task. You can put the following target in your build.xml and call it right after you wsdl2java generates deploy.wsdd. Hope this helps. !-- Edit generated

Re: SoapMonitorApplet

2004-02-10 Thread Oleg Lebedev
Title: Message Tony, take a look at this link: http://www.sosnoski.com/presents/java-xml/axis/axis-monitor.html The instructions I found there worked for me. Make sure to add requestFlow handler type="soapmonitor"/ /requestFlow responseFlow handler type="soapmonitor"/ /responseFlow to