Re: (Interop) - Serialization /Deseralization in .net Client c# accesssing Axis 1.4

2007-02-08 Thread Kinichiro Inoguchi
Hi Jose, When I tested Axis2 WebService and .NET client, elementFormDefault=qualified in schema was needed. If I set elementFormDefault=unqualified, .NET client got empty (nothing) response. How about checking your WSDL types secion ? Regards, kinichiro --- José Ferreiro [EMAIL PROTECTED]

Re: [Axis2] RPCMessageReceiver deserialize error when Date is null

2007-01-30 Thread Kinichiro Inoguchi
Hi, Did you try current latest nightly ? I think this issue was resolved by AXIS2-1745, after 1.1.1 release. http://issues.apache.org/jira/browse/AXIS2-1745 kinichiro --- Sathija Pavuluri [EMAIL PROTECTED] wrote: Hi, I thought Date issues with RPCMessageReceiver might've been fixed, but

Re: returning Array from a web service method

2007-01-26 Thread Kinichiro Inoguchi
: Hi Kinichiro Inoguchi, I am returning the array which is of non Java Bean type and when I am trying to invoke the service I am not getting the value of array (i.e, Object[] response = serviceClient.invokeBlocking(opGetAddress, opGetAddressesArgs, returnTypes)). Although

Re: returning Array from a web service method

2007-01-25 Thread Kinichiro Inoguchi
Hi, Did you check POJO sample ? --- rajac [EMAIL PROTECTED] wrote: Hi, I am new to axis2-1.1. Currently I am trying to create a web service that returns an array of Java custom Objects. I could not able to find sample code from samples comes along with the axis2 distribution for this

Re: returning Array from a web service method

2007-01-25 Thread Kinichiro Inoguchi
Hi, If your CustomJavaObject is JavaBean, I think you can return array of CustomJavaObject, and your service class below is right. --- rajac [EMAIL PROTECTED] wrote: But it simply returning a Java Bean. But my purpose is to return an array of java objects. like : public

minimize response from RPCMessageReceiver

2006-12-22 Thread Kinichiro Inoguchi
Hi, I created JIRA as http://issues.apache.org/jira/browse/AXIS2-1598. For a better performance, reducing XML payload size will be important factor. == Is there any way to minimize SOAP response from RPCMessageReceiver ? With my sample

Re: Axis2 hot-deploy AAR

2006-11-23 Thread Kinichiro Inoguchi
Hi, In axis2.xml, you can find this line. parameter name=hotupdate locked=falsefalse/parameter Change this line. parameter name=hotupdate locked=falsetrue/parameter Does this work for you ? kinichiro --- Eric Chow [EMAIL PROTECTED] wrote: Hello, When I copy the AAR into the services

Re: How to Configure SOAP Response to Web Service Call?

2006-11-23 Thread Kinichiro Inoguchi
Hi Do you use RPCMessageReceiver ? If you need to create SOAP body as you like, how about using RawXMLINOutMessageReceiver. kinichiro --- Kent Schmidt [EMAIL PROTECTED] wrote: How do I define the format of the SOAP response to the incoming web service call? I determined how to use WSDL and

Re: Type xxx is referenced but not defined

2006-11-21 Thread Kinichiro Inoguchi
by extension base=ResponseBase Does anyone know these tags are supported by Axis ? --- Magnus Bergman [EMAIL PROTECTED] wrote: Sorry, I'm using axis-1.4 /magnus Kinichiro Inoguchi wrote: Hi Magnus, What version of Axis2 are you using ? I tried your wsdl with wsdl2java of Axis2 1.1

Re: [AXIS2] Request-Response Messaging

2006-11-21 Thread Kinichiro Inoguchi
Hi stefano, How about using org.apache.axis2.client.ServiceClient instead of Call ? http://ws.apache.org/axis2/1_1/quickstartguide.html See Creating a Client with AXIOM section. I've never used Call with Axis2, so I can't say anything about Call class, though. kinichiro --- [EMAIL PROTECTED]

Re: [AXIS2] issue converting REST request to XML

2006-11-17 Thread Kinichiro Inoguchi
Hi Chris, I think you should add namespace by your hand, if you use RawXMLINOutMessageReceiver. OMFactory fac = OMAbstractFactory.getOMFactory(); OMNamespace omNs = fac.createOMNamespace(http://cbare.org/books-ws/;, ns); OMElement payload = fac.createOMElement(findAuthors, omNs);

Re: [Axis2] Is Axis2 1.1 working for you?

2006-11-16 Thread Kinichiro Inoguchi
Hi, - Is Axis2 1.1 working for you? It's fine for me. I checked these items with axis2.war distribution. - Validation page - Admin page (just looked around) - Services page - POJO service test by RPCMessageReciver with REST(GET) - SOAPMonitor Also I checked with axis2-std distribution. - POJO

Re: NullPointerException while array serialization (Axis2.1.1)

2006-11-15 Thread Kinichiro Inoguchi
Hi I did same code change to findEntry method of AddressBookService, and packed this service to aar and deploy it to tomcat5. But it worked. I checked this with REST. http://localhost:8080/axis2/rest/AddressBookService/findEntry?name=xyz I got response like this, ns:findEntryResponse

Re: Re: NullPointerException while array serialization (Axis2.1.1)

2006-11-15 Thread Kinichiro Inoguchi
Hi, Alex. To share info with the list, I'll forward your reply. --- Hi 10x for the answer! A checked the issue a bit more in deep: (I just posted it to list subjected Array-type bean property: null or just zero-length?). I didn't

Re: SOAPMonitor query

2006-11-09 Thread Kinichiro Inoguchi
Hi Kedar, How about using TCPMON ? http://www.apache.org/dist/ws/commons/tcpmon/1_0/ --- Kedar Ambekar [EMAIL PROTECTED] wrote: Hi All, I have 2 web-applications which talk to each other over web-service in both the directions.The applications use AXIS 1.4 are deployed on Tomcat 5.

Re: [Axis2] Axis2 1.1-RC2 Release

2006-11-02 Thread Kinichiro Inoguchi
Hi, I downloaded 1.1-RC2 war, and checked quickly. It works fine, no problem. I checked these items, - Validate page has no error - Admin page works (I just take a look at) - Services page shows version service - version service shows WSDL - REST(GET) works fine with version service -

Re: [Axis2] client samples failures

2006-10-27 Thread Kinichiro Inoguchi
Hi Did you rename axis2-1.1-SNAPSHOT.war to axis2.war before deploying ? Now I notice about this. If I don't rename, service call fails. kinichiro --- Michele Mazzucco [EMAIL PROTECTED] wrote: Hi all, using the snapshot of Wednesday all the asynchronous send operations fail, so I've tried

RE: [Axis2] Complex Datatypes - ArrayList of objects.

2006-10-27 Thread Kinichiro Inoguchi
Hi You can use javabeans, like this. package test; public class PersonBean { private String name; private int age; // public PersonBean() { } // setters and getters ... } package test; public class TestService1 { public PersonBean[] getPersons(String param) {

Re: WS client (other than axis2 client api based impl.) for axis2 based-web services

2006-10-26 Thread Kinichiro Inoguchi
Hi, 1) using REST interface. You can call your Axis2 WS by browser, like this. http://localhost:8080/axis2/rest/(your-service)/(method)?var1=abc If your service needs simple input parameters only, this way is useful. 2) TCPmon download from

Re: Error while in WSDL running a simple HelloWorld program

2006-10-05 Thread Kinichiro Inoguchi
Hi, I think your way is right with Axis2. Try call your service by REST, http://localhost:8080/axis2/rest/HelloWorld/sayHello?str=abcde Does this work ? Or got any errors ? Regards, kinichiro --- Reddy, Sanket (US - Hyderabad) [EMAIL PROTECTED] wrote: Error while in WSDL running a simple

RE: Error while in WSDL running a simple HelloWorld program

2006-10-05 Thread Kinichiro Inoguchi
we get when we see the list of webservices And in XML ALTOVA spy I get back the HTML version of the above page. :( I am really stuck . Can anyone send me a sample working code? Regards Sanket -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent

RE: Axis2 questions

2006-10-01 Thread Kinichiro Inoguchi
version.aar uses RPC message receiver. --- Gul Onural [EMAIL PROTECTED] wrote: Thanks Srinath. Is there any example of a service using RPC message receivers in the standard distribution or elsewhere ? I assume if I want to get databinding managed by the Axis2, I need to use RPC message

[Axis2] re-open AXIS2-805, again, pls

2006-09-29 Thread Kinichiro Inoguchi
Hi, Someone, re-open AXIS2-805, again, please. http://issues.apache.org/jira/browse/AXIS2-805 I don't have permission to re-open JIRA. I don't think this issue is not resolved yet. I tried with latest nightly (29-Sep-2006 06:32), but problem still remain. I attached aar file in JIRA to

Re: [Axis2] re-open AXIS2-805, again, pls

2006-09-29 Thread Kinichiro Inoguchi
dims, thank you very much ! --- Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, Someone, re-open AXIS2-805, again, please. http://issues.apache.org/jira/browse/AXIS2-805 I don't have permission to re-open JIRA. I don't think this issue is not resolved yet. I tried with latest nightly

Re: [Axis2] java2wsdl generates unknown namespace

2006-09-28 Thread Kinichiro Inoguchi
I logged this to http://issues.apache.org/jira/browse/AXIS2-1252 --- Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi Deepal, and if you want to change the namespace you can do that too , I executed j2w with -stn option, see below. So, I think namespace should be http://aaa.bbb/types

[Axis2] java2wsdl generates unknown namespace

2006-09-27 Thread Kinichiro Inoguchi
Hi, java2wsdl generates unknown namespace, http://test/xsd;. I'm using current nightly. My service class has method sayHello, and returns array of simple java beans HelloBean. Then I run java2wsdl, sayHello and sayHelloResponse are in namespace http://aaa.bbb/types;. But, HelloBean is in

Re: [Axis2] java2wsdl generates unknown namespace

2006-09-27 Thread Kinichiro Inoguchi
) and if you want to change the namespace you can do that too , changing services,xml Thanks Deepal Davanum Srinivas wrote: Yes, please log a bug. -- dims On 9/27/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, java2wsdl generates unknown namespace, http://test

RE: [Axis2] current SVN service EPR URI seems wrong

2006-09-05 Thread Kinichiro Inoguchi
Latest nightly (05-Sep-2006 08:38) solves this issue. --- Kinichiro Inoguchi [EMAIL PROTECTED] wrote: I checked latest (31-Aug-2006 04:33) again, but still this problem remains. kinichiro --- Brecht Yperman [EMAIL PROTECTED] wrote: I have the same problem ;-) Brecht

Re: axis versus axis2

2006-09-03 Thread Kinichiro Inoguchi
How about take a look at these mail messages; http://marc.theaimsgroup.com/?t=11564663591r=1w=2 --- Paul Vial [EMAIL PROTECTED] wrote: Hi, just starting to play around with web services (and AXIS). Installed AXIS and ran some of the demos without any problems but have since discovered

RE: [Axis2] current SVN service EPR URI seems wrong

2006-08-31 Thread Kinichiro Inoguchi
I checked latest (31-Aug-2006 04:33) again, but still this problem remains. kinichiro --- Brecht Yperman [EMAIL PROTECTED] wrote: I have the same problem ;-) Brecht -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: donderdag 31 augustus 2006 3:30

[Axis2] current SVN service EPR URI seems wrong

2006-08-30 Thread Kinichiro Inoguchi
Hi, latest nightly build war dist seems something wrong. I checked version of 30-Aug-2006 17:31. 1. In Validate page, Examining Version Service fails. 2. In listServices page, EPR URI is wrong, like this. http://localhost:8080/axis2//axis2/services/version Has someone alread checked this ?

Re: [Axis2] Exception in thread Axis2 Task java.lang.OutOfMemoryError: Java heap space

2006-08-23 Thread Kinichiro Inoguchi
, thanks for your reply. I've got just one doubt: when should I call the cleanup() method?, one the message has been sent (via sendReceiveNonBlocking) or when the response is received? Thanks in advance, Michele Kinichiro Inoguchi wrote: Hi Michele, I'm not sure though, once

Re: [Axis2] Exception in thread Axis2 Task java.lang.OutOfMemoryError: Java heap space

2006-08-22 Thread Kinichiro Inoguchi
Hi Michele, I'm not sure though, once I created JIRA for freeing ServiceClient object, and this issue seems similar to your issue. http://issues.apache.org/jira/browse/AXIS2-528 I didn't use async API this case. But how about using cleanup() method of ServiceClient after receiving. Regards,

Re: Perl SOAP::Lite and Apache Axis2 interoperability

2006-08-21 Thread Kinichiro Inoguchi
Aleksey, I'm using Active Perl 5.6 within Windows XP. And SOAP::Lite version is 1.47. (I checked Lite.pm file.) And I'm using Axis2 nightly build war distribution with JDK1.4.2 and tomcat5.0.28. I hope this info helps you. Regards, kinichiro --- Aleksey Serba [EMAIL PROTECTED] wrote:

Re: Perl SOAP::Lite and Apache Axis2 interoperability

2006-08-21 Thread Kinichiro Inoguchi
extension for WSDL. You'll have to check with the Perl folks to figure out how to fix it. Anne On 8/21/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Aleksey, I'm using Active Perl 5.6 within Windows XP. And SOAP::Lite version is 1.47. (I checked Lite.pm file.) And I'm using Axis2

[Axis2] namespace for every element in SOAP response

2006-08-18 Thread Kinichiro Inoguchi
Hi, I'm testing latest nightly buils Axis2 war. I noticed that every element in response SOAP message has namespace definition. If you see version service via REST call like this, http://localhost:8080/axis2/rest/version/getVersion you could see this, ns:getVersionResponse

RE: [Axis2] Blockers for Axis2 1.1

2006-08-18 Thread Kinichiro Inoguchi
I'd nominate http://issues.apache.org/jira/browse/AXIS2-805 . RPCMessageReceiver in latest nightly seems doesn't generate valid WSDL. --- William Ferguson [EMAIL PROTECTED] wrote: I'd nominate AXIS2-957 and perhaps AXIS2-959 and AXIS2-962 -Original Message- From: Davanum Srinivas

Re: [Axis2/C]build error for Linux source distribution

2006-08-03 Thread Kinichiro Inoguchi
Samisa, Thanks. I should follow INSTALL instruction strictly. --- Samisa Abeysinghe [EMAIL PROTECTED] wrote: Kinichiro Inoguchi wrote: Hi, /work/axis2_src_dir/ -- I extract source dist here. /usr/local/axis2c/ -- I set AXIS2C_HOME here. Then I went to /work/axis2_src_dir

Re: [axis2] Disable Chunk-Transfer-Encoding?

2006-08-02 Thread Kinichiro Inoguchi
Hi, Igor. What are you doing in generateRequest(job) ? I wonder how do you create your request object. --- Igor Arenz [EMAIL PROTECTED] wrote: Thank you for this answer, nice try, but it doesn't work. I've updated tu the last SNAPSHOT from today (2 august). The exception is still the

Re: How can I use my Axis2 service with Cpp client ?

2006-07-20 Thread Kinichiro Inoguchi
Hi, Add Web reference to your project from menu, if you use Visual Studio .NET. --- ºÂ¿¡½Ü [EMAIL PROTECTED] wrote: hi all, I have deployed my service on axis2 ,could I use it with a cpp client and how ? __ Do You Yahoo!? Tired of

RE: Urgent :Kindly verify whether the procedure is right or not

2006-07-13 Thread Kinichiro Inoguchi
. Find attached the beans and the service interface and skeleton. Pradeepta -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 12, 2006 8:43 PM To: axis-user@ws.apache.org Subject: Re: Urgent :Kindly verify whether

RE: problem to invoke the webservice using RESTt Style

2006-07-12 Thread Kinichiro Inoguchi
- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 7:15 PM To: axis-user@ws.apache.org Subject: RE: problem to invoke the webservice using RESTt Style Hi Vimal, You can pass parameter via REST like this, http://localhost:8080/axis2/rest/YourService

Re: [Axis2] response element name with RPCMessageReceiver

2006-07-12 Thread Kinichiro Inoguchi
knowledge. Anamitra Kinichiro Inoguchi [EMAIL PROTECTED

Re: Axis2 / Axis RPC

2006-07-12 Thread Kinichiro Inoguchi
Hi M S, Latest nightly build axis2.war, this issue was solved. Many thanks to Deepal, always ! Regards, kinichiro --- Kinichiro Inoguchi [EMAIL PROTECTED] wrote: I'm glad to hear that. I also hope this issue will be solved until next release. http://issues.apache.org/jira/browse/AXIS2-865

Re: Urgent :Kindly verify whether the procedure is right or not

2006-07-12 Thread Kinichiro Inoguchi
Hi Could you post your Beans and service java code ? I think your process is right if you want to use generated server skelton. BTW, are you using Axis2 release 1.0 ? Regards, kinichiro --- Pradeepta Bhattacharya [EMAIL PROTECTED] wrote: Hello All, Kindly verify whether

RE: Urgent :Kindly verify whether the procedure is right or not

2006-07-12 Thread Kinichiro Inoguchi
, kinichiro --- Pradeepta Bhattacharya [EMAIL PROTECTED] wrote: Thanks for your reply. Find attached the beans and the service interface and skeleton. Pradeepta -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 12, 2006 8:43 PM

RE: problem to invoke the webservice using REST Style

2006-07-12 Thread Kinichiro Inoguchi
messageReceiver class=org.apache.axis2.rpc.receivers.RPCMessageReceiver/ /operation /service i think passing the parameter may be problem Thanks Vimal Bansal -Original Message- From: Kinichiro Inoguchi [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 7:15 PM

Re: problem to invoke the webservice using RESTt Style

2006-07-11 Thread Kinichiro Inoguchi
Hi, If you change your method from String[] getValue(long id) to String getValue(long id), does it work ? I faced same kind of issue, and created JIRA. http://issues.apache.org/jira/browse/AXIS2-880 Regards, kinichiro --- Bansal, Vimal [EMAIL PROTECTED] wrote: Hi All, I am a new user

Re: [Axis2] how to call service through http

2006-07-11 Thread Kinichiro Inoguchi
Hi, Joseph. Try, http://localhost:8080/axis2/rest/MyService/method?p1=ap2=b http://ws.apache.org/axis2/1_0/rest-ws.html Regards, kinichiro --- [EMAIL PROTECTED] wrote: Hi, I am able to call my webservice in axis 1 using ex:

Re: [Axis2] Plz help adding logging module server-side

2006-07-11 Thread Kinichiro Inoguchi
Hi, heikki, I can't tell what is your problem though, I sent my configuration to you by another mail. 1. logging.mar 2. axis2.xml 3. MyService2.aar - you can call this by http://localhost:8080/axis2/rest/MyService2/echo?echostring=aaabbb In log4j.properties file, I modified 2 lines like this,

Re: WSDL2Java in Axis2 is not working?

2006-07-10 Thread Kinichiro Inoguchi
Hi, Ajith, Unfortunately, latest nightly builds axis2-std-SNAPSHOT-bin.zip 09-Jul-2006 23:31 has NOT axis2-adb-codegen-SNAPSHOT.jar yet. I hope std distribution has this jar, too. Could you check build script again, please ? BTW, latest axis2.war has axis2-adb-codegen-SNAPSHOT.jar,

Re: Unreachable code with WSDL2Java

2006-07-10 Thread Kinichiro Inoguchi
Nicolas, I think this comes from problem about RPCMessageReceiver. Because of return is NOT qualified well. http://issues.apache.org/jira/browse/AXIS2-865 Regards, kinichiro --- Nicolas Urien [EMAIL PROTECTED] wrote: Finally , the unreachable code with the axis2 WSDL2Java has been fixed by

Re: Axis2 / Axis RPC

2006-07-10 Thread Kinichiro Inoguchi
. Regards On 7/9/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, I sent you 1 jar file by another mail. I think you have 2 problems. One is WSDL2Java code generation issue, and another is response message not qualified well issue. WSDL2Java code generation issue seems

[Axis2] response element name with RPCMessageReceiver

2006-07-10 Thread Kinichiro Inoguchi
This is not a problem, just my thoughts. I wonder why response element name is always return ? If I create MyService like this, package test; public class MyService { public String echo(String inparam) { String outparam = inparam; return outparam; } } and packed this

Re: Axis2 / Axis RPC

2006-07-09 Thread Kinichiro Inoguchi
. Regards, kinichiro --- M S [EMAIL PROTECTED] wrote: Hi, I saw that you have added a solution to your JIRA... is it possible for you to give me a nightly build with the modifications you have? Regards On 7/6/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, If you use Axis2 1.0

[Axis2] stub generation for version service

2006-07-09 Thread Kinichiro Inoguchi
Hi, With current nightly builds, can you generate stub by WSDL2Java ? I'm trying to generate stub code for version service, But I got these errors. C:\work%AXIS2_HOME%\bin\wsdl2java -uri http://localhost:8080/axis2/services/version?wsdl -p test -o stub Using AXIS2_HOME:

Re: [Axis2] stub generation for version service

2006-07-09 Thread Kinichiro Inoguchi
[EMAIL PROTECTED] wrote: Hi, Sorry about the trouble. There was an error in the build script that prevented a necessary jar from being copied in to the dist. The next nightly should be ok Ajith On 7/9/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, With current nightly builds, can you

Re: [Axis2 v1.0] soapmonitor, how to use

2006-07-06 Thread Kinichiro Inoguchi
Hi, Wan. Did you modify your /webapps/axis2/WEB-INF/web.xml, too ? I think you need to add soapmonitor servlet definition. Regards, --- Wan Kaveevivitchai [EMAIL PROTECTED] wrote: Dear Robert, I have made sure that axis2-soapmonitor*.mar was in my modules folder as well as

Re: [axis2] Get rid of the return tag on omResponse?

2006-07-06 Thread Kinichiro Inoguchi
Hi, Andreas. Did you put WSDL modified by you into META-INF/ in your aar file ? Can you see your WSDL via http://localhost:8080/axis2/services/(your-service)?wsdl ? I'm not sure but I think, you can NOT overwrite WSDL when you use RPCMessageReceiver. I never try this. Regards, kinichiro ---

Re: [Axis2 v1.0] soapmonitor, how to use

2006-07-06 Thread Kinichiro Inoguchi
the administration page. I got this: Invalid phases please recheck axis2.xml soapmonitorPhase for the handler InFlowSOAPMonitorHandler i don't know what's wrong. I have used your code, compare with mine, make some change but still got the same result. regards, Wan From: Kinichiro

Re: [Axis2 v1.0] soapmonitor, how to use

2006-07-06 Thread Kinichiro Inoguchi
/ On 7/6/06, Wan Kaveevivitchai [EMAIL PROTECTED] wrote: i don't know how is this happened? but there is nothing appear on my applet. Wan From: Kinichiro Inoguchi [EMAIL PROTECTED] Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: [Axis2 v1.0] soapmonitor, how

Re: [Axis2 v1.0] soapmonitor, how to use

2006-07-06 Thread Kinichiro Inoguchi
am using Jetty..is there any different in setting? and for listening to the port, we consider only for the server computer task, or the system? sorry for asking such a question, i am still only a trainnee, have not much experiences. Kind regards, Wan From: Kinichiro Inoguchi

Re: Axis2 / Axis RPC

2006-07-06 Thread Kinichiro Inoguchi
Hi, If you use Axis2 1.0 release version, it will work. RPCMessageReceiver of Nightly Builds have problem that returns broken qualified response. I created JIRA for this issue today. generated stub client send message like this, soapenv:Body ns1:echo xmlns:ns1=http:///xsd;

Re: [Axis2] Interop with .NET via RPCMessageReceiver

2006-07-05 Thread Kinichiro Inoguchi
because the response element is not namespace qualified: returnsayHello was called./return .NET is looking for an element called ns:return. Make sure that the schema in your WSDL specifies elementFormDefault=qualified. Anne On 7/5/06, Kinichiro Inoguchi

[Axis2] urn in soapAction of version WSDL

2006-07-05 Thread Kinichiro Inoguchi
Hi, In the WSDL of version service, we could find this line. soap:operation style=document soapAction=urn:getVersion/ I wonder where urn refer to ? There is no namespace linking with urn in this WSDL. Any comments will be appriciated :-) Regards, kinichiro

Re: [Axis2] urn in soapAction of version WSDL

2006-07-05 Thread Kinichiro Inoguchi
Thanks dims. --- Davanum Srinivas [EMAIL PROTECTED] wrote: http://en.wikipedia.org/wiki/Uniform_Resource_Name On 7/5/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, In the WSDL of version service, we could find this line. soap:operation style=document soapAction=urn:getVersion

Re: [Axis2] Interop with .NET via RPCMessageReceiver

2006-07-05 Thread Kinichiro Inoguchi
are in the default namespace. I don't think you need to file another JIRA. This bug has been fixed in the latest build. Anne On 7/5/06, Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, Anne, Thanks for pointing out the problem. This response is generated by RPCMessageReceiver, so I'll create JIRA

Re: [REST] Can I input parameter in URL when using REST style?

2006-07-04 Thread Kinichiro Inoguchi
Hi, James. Yes you can put parameters like you mentioned. Your http://localhost:9080/axis2/rest/MyService1/echo?element=15 will work fine. This error is caused because of NULL response SOAP body, I think. I'm not sure though, Axis2 does NOT permit NULL response SOAP body. Regards, kinichiro

[Axis2] Interop with .NET via RPCMessageReceiver

2006-07-04 Thread Kinichiro Inoguchi
Hi, Now, I'm trying to connect Axis2 and .NET with using RPCMessageReceiver. But, .NET client gets Nothing response. Service class is very simple, just receiving String and return String. .NET could produce proxy code from WSDL generated by Axis2 successfully. Axis2 received request from .NET

Re: [REST] Can I input parameter in URL when using REST style?

2006-07-04 Thread Kinichiro Inoguchi
name=echo messageReceiver class=org.apache.axis2.rpc.receivers.RPCMessageReceiver/ /operation /service Regards, kinichiro --- Kinichiro Inoguchi [EMAIL PROTECTED] wrote: Hi, James. Yes you can put parameters like you mentioned. Your http://localhost:9080/axis2/rest/MyService1/echo

Re: [Axis2] Need axis2-saaj jar

2006-07-01 Thread Kinichiro Inoguchi
Hi, Juan Did you check here ? http://people.apache.org/repository/axis2/jars/ --- Juan Carlos Luciani [EMAIL PROTECTED] wrote: Hello everyone, I want to use the org.apache.axis2.saaj package but the Axis2 v1.0 binary distribution does not contain a jar file for it. Can someone tell me

Re: [Axis2 current SVN 6/28] services.list needed ?

2006-06-29 Thread Kinichiro Inoguchi
Deepal, I am sorry, it was my fault. Current SVN version also works as before. I could deploy my service with just dropping it. Regards, kinichiro --- Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Kinichiro; pls see my comment below; Kinichiro Inoguchi wrote: Hi,Is services.list

Re: cannot generate axis2 client stubs

2006-06-29 Thread Kinichiro Inoguchi
Victory favors those who take pains - Original Message From: Kinichiro Inoguchi [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Wednesday, June 28, 2006 8:19:13 PM Subject: Re: cannot generate axis2 client stubs Nicolas, Does your service class method have

Re: cannot generate axis2 client stubs

2006-06-28 Thread Kinichiro Inoguchi
Nicolas, Does your service class method have no in/out parameter, like this ? public void echo () { System.out.println(hello world); } --- Nicolas Urien [EMAIL PROTECTED] wrote: Hello, I have successfully deployed a very simple aar archive (hello world) into my axis tomcat server. I

Re: [Axis2] Missing jar file?

2006-06-23 Thread Kinichiro Inoguchi
Axis2 distribution is OMPolicyReader located? Best regards, Ron - Original Message - From: Kinichiro Inoguchi [EMAIL PROTECTED] Date: Thursday, June 22, 2006 9:02 am Subject: Re: [Axis2] Missing jar file? Hi, It's axiom-api-1.0.jar

Re: Strange SOAP Reply...

2006-06-22 Thread Kinichiro Inoguchi
Hi, I'm not sure but maybe it's called byte order mark (BOM). __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com - To

Re: [Axis2] Missing jar file?

2006-06-22 Thread Kinichiro Inoguchi
Hi, It's axiom-api-1.0.jar. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [Axis2] Missing jar file?

2006-06-22 Thread Kinichiro Inoguchi
Hi, It's axiom-api-1.0.jar. But org.apache.axiom.om.OMContainer seems right. package is slightly different. Regrds, kinichiro __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: [Axis 2.0] Creating Web Services.

2006-06-21 Thread Kinichiro Inoguchi
Hi, How about JWS (Java Web Service) Files - Instant Deployment ? http://ws.apache.org/axis/java/user-guide.html#PublishingWebServicesWithAxis Regards, kinichiro __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Re: deploying axis 2 ver 1.0

2006-06-19 Thread Kinichiro Inoguchi
Hi, Did you check http://ws.apache.org/axis2/download/1_0/download.cgi ? Try War Distribution. You can get axis2.war . Regards, kinichiro __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: AXIS 2 codegen wizard

2006-06-19 Thread Kinichiro Inoguchi
Hi, If you post your source code, anyone could give you comments. I'm not sure, how did you define import ? Axis2 0.9x = import org.apache.axis2.om.*; Axis2 1.0 = import org.apache.axiom.om.*; Your reference page is a little bit older. If you're using Axis2 1.0, your import should be

Re: [Axis2] Exception in test web service

2006-06-11 Thread Kinichiro Inoguchi
How about adding operation name=whoami messageReceiver class=org.apache.axis2.rpc.receivers.RPCMessageReceiver/ /operation to your services.xml ? Regards, kinichiro __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam

Re: java.util.Date in response for RPCMessageReceiver

2006-06-04 Thread Kinichiro Inoguchi
At this time, I think Date is not supported by RPCMessageReceiver, don't you ? I've read this article. http://www.developer.com/java/other/article.php/3570031 saying, The RPCMessageReceiver is capable of handling all the simple types (String, int, char, byte, long, double, float, short, and

Re: How can I see MyService WSDL when using the axis 2 web app admin page

2006-06-01 Thread Kinichiro Inoguchi
What messageReceiver do you choose in your services.xml ? Using RPCMessageReceiver is easy. like this messageReceiver class=org.apache.axis2.rpc.receivers.RPCMessageReceiver/ Regards, __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best

RE: Axis 2 example web service fails

2006-06-01 Thread Kinichiro Inoguchi
Jeff, Seeing your WSDL, I think echo should have element. like this, ?xml version='1.0' encoding='UTF-8'? soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; soapenv:Header / soapenv:Body jst:echo xmlns:jst=http://jeff.scudder; elementHelloAxis2/element

Re: Axis arrays and .NET problem

2006-06-01 Thread Kinichiro Inoguchi
Does your WSDL schema contains elementFormDefault=qualified or not ? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -

RE: Axis2 High memory usage, OutOfMemory exception

2006-05-25 Thread Kinichiro Inoguchi
(tomcat)/conf/web.xml will contains session-timeout settings, and that value is default to 30 min. (tomcat)/webapps/axis2/WEB-INF/web.xml will not have this settings. I'm not sure but here is my guess, Service will run as servlet of tomcat, I think. And each servlet threads for invoked services

Re: [Axis 2][1.0] Enabling the SOAP Monitor

2006-05-24 Thread Kinichiro Inoguchi
You could see this message in your logs; 2006-05-24 08:25:23 StandardContext[/axis2]Servlet /axis2 threw load() exception javax.servlet.ServletException: Invalid phases please recheck axis2.xml {0} for the handler {1} How did you modify your axis2.xml ? You should check,

Re: Out Parameters for my service

2006-05-24 Thread Kinichiro Inoguchi
KKumar, How about using Axis2's Primary APIs instead of generated stub code. Please check EchoBlockingClient section of http://ws.apache.org/axis2/1_0/userguide3.html . You need to build request message for your service as OMElement, and call ServiceClient.sendReceive(). Then you can obtain

Re: [Axis 2][1.0] Enabling the SOAP Monitor

2006-05-23 Thread Kinichiro Inoguchi
James, I could see SOAPMonitor with Axis2 1.0. 1. modify axis2.xml as mentioned in instructions. 2. modify web.xml as mentioned in instructions. 3. extract SOAPMonitorApplet*.class files from axis2-soapmonitor-1.0.jar to (tomcat)/webapps/axis2/. I could see SOAPMonitor via

Re: [Axis2][1.0] overwrite WSDL ?

2006-05-22 Thread Kinichiro Inoguchi
Deepal, Thanks for your answer. I understand that I can't overwrite WSDL by using RPCMessageReceiver. There are 3 ways to create web service via axis2. 1. from java code with using RPCMessageReceiver. - writing java codes and archive them with services.xml, then deploy. - data binding will be

Re: [Axis2] WSDL Generation

2006-05-22 Thread Kinichiro Inoguchi
Ingo, With Axis2, how about using Code Generator Wizard - eclipse Plug-in. http://ws.apache.org/axis2/tools/1_0/eclipse/wsdl2java-plugin.html You can generate WSDL from java code. Or, deploying service using RPCMessageReceiver, Axis2 will generates WSDL automatically. You can see WSDL via url,

Re: [Axis2][1.0] interop with .NET

2006-05-20 Thread Kinichiro Inoguchi
dims, Remy, and Anne, thanks for your answer comments. To: dims I logged this issue to JIRA as AXIS2-756. I also mentioned about 'attributeFormDefault' in JIRA. To: Remy I tried with Axis 1.2 and 1.4 and .Net framework 1.0 and 2.0 I tried with Axis2 1.0 and VisualStudio .NET 2003 and Office

[Axis2][1.0] interop with .NET

2006-05-19 Thread Kinichiro Inoguchi
Hi, I'm testing to call Axis2 service from .NET client. When I used Axis2 0.95, I could do that, but after upgrade to Axis2 1.0, I can't. .NET client can sends request message to Axis2 service, and Axis2 service receives that and sends response message to .NET client. I saw actual in/out XML