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

2006-11-17 Thread Martin Gainty
Hi All-

Axis-2_1/src/modules/xmlbeans/mvn

[INFO] Cannot execute mojo: resources. It requires a project with an existing 
pom.xml, but the build is not using one.
[INFO] -
---

Is there a pom.xml for modules/xmlbeans project?

Thank You,
Martin --
This e-mail communication and any attachments may contain confidential and 
privileged information for the use of the 
designated recipients named above. If you are not the intended recipient, you 
are hereby notified that you have received
this communication in error and that any review, disclosure, dissemination, 
distribution or copying of it or its 
contents
- Original Message - 
From: "Yang Zhonghua (Dr)" <[EMAIL PROTECTED]>
To: ; <[EMAIL PROTECTED]>
Sent: Thursday, November 16, 2006 10:26 PM
Subject: RE: [Axis2] Is Axis2 1.1 working for you?




Thanks for your quick response.

I followed the steps to create a simple web service, ask (based on
example from ibm web site): (The same was done under axis2 1.0, and
works fine).

Your advise is appreciated on where went wrong.

1)
cd D:\Axis2Workspace\Ask

wsdl2java.bat -uri D:\Axis2Workspace\wsdl\ask.wsdl -ss -sd -d xmlbeans
-o 
D:\Axis2Workspace\Ask -p icis.ask


2)
// Defining the server skeleton

System.out.println("QUESTION ASKED: " + 

param0.getAsk().getQuestion());
sg.edu.ntu.icis.ask.xsd.AskResponseDocument res =


sg.edu.ntu.icis.ask.xsd.AskResponseDocument.Factory.newInstance();
sg.edu.ntu.icis.ask.xsd.AskResponseDocument.AskResponse 

res2 =
res.addNewAskResponse();
res2.setAnswer("Why ask me, Georgy, I don't know 

anything!!!");
return res;

3)
create the client stub:

wsdl2java.bat -uri D:\Axis2Workspace\wsdl\ask.wsdl -d xmlbeans -o 
D:\Axis2Workspace\Ask -p icis.ask

4) Coding Client

package icis.ask;
import sg.edu.ntu.icis.ask.xsd.*;
public class Client{
public static void main(java.lang.String args[]){
try{
AskServiceStub stub = new AskServiceStub(null,

"http://localhost:8080/axis2/services/AskService";);
call(stub);
} catch(Exception e){
e.printStackTrace();
}
}
/* call */
public static boolean call(AskServiceStub stub){
try{
AskDocument reqDoc = 
AskDocument.Factory.newInstance();
AskDocument.Ask reqDoc2 = reqDoc.addNewAsk();
reqDoc2.setQuestion("I have a hole in"+
" my bucket, dear Liza, with what should I fix 

it?");
AskResponseDocument resDoc = stub.Ask(reqDoc);
System.out.println("ANSWER RECEIVED: " +

resDoc.getAskResponse().getAnswer

());
return true;
} catch(Exception e){
e.printStackTrace();
}
return false;
}
}

5)
Package

D:\Axis2Workspace\Ask>ant jar.server

Check in D:\Axis2Workspace\Ask\build\lib, found
AskService.aar

6) deploy (upload using admin tool) which said "successful"

tomcat 5.5.17 console:  "INFO: Deploying Web service  AskService.aar"

7) set classpath
D:\Axis2Workspace\Ask\bin>set
classpath=%classpath%;D:\Axis2Workspace\Ask\build\lib\AskService.aar;D:\
Axis2Workspace\Ask\build\lib\XBeans-packaged.jar

8) Run client
java -cp %CLASSPATH% icis.ask.Client

The run time error msg:

org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(Com
monsHTTPTransportSender.java:225)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:670)
at
org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisO
peration.java:365)
at
org.apache.axis2.description.OutInAxisOperationClient.execute(OutInAx
isOperation.java:295)
at icis.ask.AskServiceStub.Ask(AskServiceStub.java:141)
at icis.ask.Client.call(Client.java:19)
at icis.ask.Client.main(Client.java:8)
Caused by: org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessa
geWithCommons(CommonsHTTPTransportSender.java:340)
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(Com
monsHTTPTransportSender.java:205)
... 6 more
Caused by: org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.SOAPOverHTTPSender.send(SOAPOverHTTPS
ender.java:144)
at
org.apach

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

2006-11-16 Thread Xinjun Chen

As a first step, you need to click the Ask service link to see whether you
can get the WSDL.
Have you ever tried to deploy the "Axis2-1.1" as "axis2" into tomcat?


Regards,
Xinjun


On 11/17/06, Yang Zhonghua (Dr) <[EMAIL PROTECTED]> wrote:



Thanks, Sanjiva.

But I deployed on tomcat/axis2-1.1 which appeared on service list (see
the attached). When I clicked on "AskService" it shows the wsdl.

(The tomcat console:

Nov 17, 2006 11:01:38 AM org.apache.axis2.deployment.DeploymentEngine
doDeploy
INFO: Deploying Web service  AskService.aar
)

Any other ways to check if I deployed it correctly?
Thanks.
YZH


-Original Message-
From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]
Sent: Friday, November 17, 2006 11:37 AM
To: axis-user@ws.apache.org
Cc: [EMAIL PROTECTED]
Subject: RE: [Axis2] Is Axis2 1.1 working for you?

On Fri, 2006-11-17 at 11:26 +0800, Yang Zhonghua (Dr) wrote:
>
> The run time error msg:
>
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault : HTTP Transport error : '404' -
> '/axis2/services/AskService'

HTTP error code 404 means the URI you're sending to has not been found:

=
404 Not Found
The server has not found anything matching the Request-URI. No
indication is given of whether the condition is temporary or permanent.
The 410 (Gone) status code SHOULD be used if the server knows, through
some internally configurable mechanism, that an old resource is
permanently unavailable and has no forwarding address. This status code
is commonly used when the server does not wish to reveal exactly why the
request has been refused, or when no other response is applicable.
=

This problem has nothing to do with Axis2 because its not even going to
Axis2 on the server (as we never generate a 404). Have you deployed the
server side correctly? (Is it Axis2 on the server?)

Sanjiva.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





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

2006-11-16 Thread Yang Zhonghua \(Dr\)

Thanks, Sanjiva.

But I deployed on tomcat/axis2-1.1 which appeared on service list (see
the attached). When I clicked on "AskService" it shows the wsdl.

(The tomcat console:

Nov 17, 2006 11:01:38 AM org.apache.axis2.deployment.DeploymentEngine
doDeploy
INFO: Deploying Web service  AskService.aar
)

Any other ways to check if I deployed it correctly?
Thanks.
YZH


-Original Message-
From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED] 
Sent: Friday, November 17, 2006 11:37 AM
To: axis-user@ws.apache.org
Cc: [EMAIL PROTECTED]
Subject: RE: [Axis2] Is Axis2 1.1 working for you?

On Fri, 2006-11-17 at 11:26 +0800, Yang Zhonghua (Dr) wrote:
> 
> The run time error msg:
> 
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'

HTTP error code 404 means the URI you're sending to has not been found:

=
404 Not Found
The server has not found anything matching the Request-URI. No
indication is given of whether the condition is temporary or permanent.
The 410 (Gone) status code SHOULD be used if the server knows, through
some internally configurable mechanism, that an old resource is
permanently unavailable and has no forwarding address. This status code
is commonly used when the server does not wish to reveal exactly why the
request has been refused, or when no other response is applicable.
=

This problem has nothing to do with Axis2 because its not even going to
Axis2 on the server (as we never generate a 404). Have you deployed the
server side correctly? (Is it Axis2 on the server?)

Sanjiva.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



List Services.pdf
Description: List Services.pdf
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

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

2006-11-16 Thread Sanjiva Weerawarana
On Fri, 2006-11-17 at 11:26 +0800, Yang Zhonghua (Dr) wrote:
> 
> The run time error msg:
> 
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'; nested exception is:
> org.apache.axis2.AxisFault: HTTP Transport error : '404' -
> '/axis2/services/AskService'

HTTP error code 404 means the URI you're sending to has not been found:

=
404 Not Found
The server has not found anything matching the Request-URI. No
indication is given of whether the condition is temporary or permanent.
The 410 (Gone) status code SHOULD be used if the server knows, through
some internally configurable mechanism, that an old resource is
permanently unavailable and has no forwarding address. This status code
is commonly used when the server does not wish to reveal exactly why the
request has been refused, or when no other response is applicable.
=

This problem has nothing to do with Axis2 because its not even going to
Axis2 on the server (as we never generate a 404). Have you deployed the
server side correctly? (Is it Axis2 on the server?)

Sanjiva.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-16 Thread Yang Zhonghua \(Dr\)


Thanks for your quick response.

I followed the steps to create a simple web service, ask (based on
example from ibm web site): (The same was done under axis2 1.0, and
works fine).

Your advise is appreciated on where went wrong.

1)
cd D:\Axis2Workspace\Ask

wsdl2java.bat -uri D:\Axis2Workspace\wsdl\ask.wsdl -ss -sd -d xmlbeans
-o 
D:\Axis2Workspace\Ask -p icis.ask


2)
// Defining the server skeleton

System.out.println("QUESTION ASKED: " + 

param0.getAsk().getQuestion());
sg.edu.ntu.icis.ask.xsd.AskResponseDocument res =


sg.edu.ntu.icis.ask.xsd.AskResponseDocument.Factory.newInstance();
sg.edu.ntu.icis.ask.xsd.AskResponseDocument.AskResponse 

res2 =
res.addNewAskResponse();
res2.setAnswer("Why ask me, Georgy, I don't know 

anything!!!");
return res;

3)
create the client stub:

wsdl2java.bat -uri D:\Axis2Workspace\wsdl\ask.wsdl -d xmlbeans -o 
D:\Axis2Workspace\Ask -p icis.ask

4) Coding Client

package icis.ask;
import sg.edu.ntu.icis.ask.xsd.*;
public class Client{
public static void main(java.lang.String args[]){
try{
AskServiceStub stub = new AskServiceStub(null,

"http://localhost:8080/axis2/services/AskService";);
call(stub);
} catch(Exception e){
e.printStackTrace();
}
}
/* call */
public static boolean call(AskServiceStub stub){
try{
AskDocument reqDoc = 
AskDocument.Factory.newInstance();
AskDocument.Ask reqDoc2 = reqDoc.addNewAsk();
reqDoc2.setQuestion("I have a hole in"+
" my bucket, dear Liza, with what should I fix 

it?");
AskResponseDocument resDoc = stub.Ask(reqDoc);
System.out.println("ANSWER RECEIVED: " +

resDoc.getAskResponse().getAnswer

());
return true;
} catch(Exception e){
e.printStackTrace();
}
return false;
}
}

5)
Package

D:\Axis2Workspace\Ask>ant jar.server

Check in D:\Axis2Workspace\Ask\build\lib, found
AskService.aar

6) deploy (upload using admin tool) which said "successful"

tomcat 5.5.17 console:  "INFO: Deploying Web service  AskService.aar"

7) set classpath
D:\Axis2Workspace\Ask\bin>set
classpath=%classpath%;D:\Axis2Workspace\Ask\build\lib\AskService.aar;D:\
Axis2Workspace\Ask\build\lib\XBeans-packaged.jar

8) Run client
java -cp %CLASSPATH% icis.ask.Client

The run time error msg:

org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(Com
monsHTTPTransportSender.java:225)
at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:670)
at
org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisO
peration.java:365)
at
org.apache.axis2.description.OutInAxisOperationClient.execute(OutInAx
isOperation.java:295)
at icis.ask.AskServiceStub.Ask(AskServiceStub.java:141)
at icis.ask.Client.call(Client.java:19)
at icis.ask.Client.main(Client.java:8)
Caused by: org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'; nested exception is:
org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessa
geWithCommons(CommonsHTTPTransportSender.java:340)
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(Com
monsHTTPTransportSender.java:205)
... 6 more
Caused by: org.apache.axis2.AxisFault: HTTP Transport error : '404' -
'/axis2/services/AskService'
at
org.apache.axis2.transport.http.SOAPOverHTTPSender.send(SOAPOverHTTPS
ender.java:144)
at
org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessa
geWithCommons(CommonsHTTPTransportSender.java:334)
    ... 7 more



-Original Message-
From: Davanum Srinivas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 10:17 AM
To: axis-user@ws.apache.org
Cc: Axis developer list
Subject: Re: [Axis2] Is Axis2 1.1

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

2006-11-16 Thread Spies, Brennan
It's been working a while for me (since before 1.1), but my case is pretty
straightforward. I can't really vouch for anyone who is using Rampart, MTOM,
etc. I would like to see more "out-of-the-box" robust support for JMS (i.e.,
from the codegen module)...yes, it's not WS-I, but in the enterprise it's of
major importance (esp. in my area, EAI) where in many cases HTTP just won't
cut it. This is, hopefully, a 1.2 goal.


Brennan Spies
Sr. Programmer Analyst
Shared Application Services

-Original Message-
From: Davanum Srinivas [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 15, 2006 11:13 AM
To: axis-user@ws.apache.org
Cc: Axis developer list
Subject: [Axis2] Is Axis2 1.1 working for you?

Folks,

Please chime in with your observations:

- Is Axis2 1.1 working for you?
- Did you find a problem?
- Is it in JIRA? (What's the JIRA issue #)

based on this feedback, depending on the issues/problems, the dev team
can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...

Thanks,
dims

-- 
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 sample with simple server

> - Did you find a problem?

No problem within around my small work space :-)

> - Is it in JIRA? (What's the JIRA issue #)

This is not a bug though, 
I created 1 improvement as AXIS2-1598.
"minimize response from RPCMessageReceiver"
http://issues.apache.org/jira/browse/AXIS2-1598

Thanks for the release 1.1 !
kinichiro

--- Davanum Srinivas <[EMAIL PROTECTED]> wrote:

> Folks,
> 
> Please chime in with your observations:
> 
> - Is Axis2 1.1 working for you?
> - Did you find a problem?
> - Is it in JIRA? (What's the JIRA issue #)
> 
> based on this feedback, depending on the issues/problems, the dev
> team
> can decide on whether to cut a quick 1.1.1 off the 1.1 branch and
> what
> that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...
> 
> Thanks,
> dims
> 
> -- 
> Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service
> Developers)
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Davanum Srinivas

EZHYang,

We released 2 RC candidates and a countless stream of nightliesoh well!

Can you please post your code that fails? any information on what you
tried and what failed?

If we don't know what broke, we can't fix it, can we?

thanks,
dims

On 11/15/06, Yang Zhonghua (Dr) <[EMAIL PROTECTED]> wrote:


I just recently downloaded axis2 1.0 and developed some example ws.
Yesterday I read the news on axis2 1.1. I expected it to be better than
axis2 1.0. To my surprise, the example that works in axis2 1.0 no longer
works (I re-done the example in axis2 1.1 environment).

While I am new user of axis2 and play with it only recently when I
happened to find time, I found that it might not be a good idea to
release the software which was leading the new users to be discouraged.



-Original Message-
From: Davanum Srinivas [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 16, 2006 3:13 AM
To: axis-user@ws.apache.org
Cc: Axis developer list
Subject: [Axis2] Is Axis2 1.1 working for you?

Folks,

Please chime in with your observations:

- Is Axis2 1.1 working for you?
- Did you find a problem?
- Is it in JIRA? (What's the JIRA issue #)

based on this feedback, depending on the issues/problems, the dev team
can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...

Thanks,
dims

--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service
Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Yang Zhonghua \(Dr\)

I just recently downloaded axis2 1.0 and developed some example ws.
Yesterday I read the news on axis2 1.1. I expected it to be better than
axis2 1.0. To my surprise, the example that works in axis2 1.0 no longer
works (I re-done the example in axis2 1.1 environment).

While I am new user of axis2 and play with it only recently when I
happened to find time, I found that it might not be a good idea to
release the software which was leading the new users to be discouraged.



-Original Message-
From: Davanum Srinivas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 3:13 AM
To: axis-user@ws.apache.org
Cc: Axis developer list
Subject: [Axis2] Is Axis2 1.1 working for you?

Folks,

Please chime in with your observations:

- Is Axis2 1.1 working for you?
- Did you find a problem?
- Is it in JIRA? (What's the JIRA issue #)

based on this feedback, depending on the issues/problems, the dev team
can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...

Thanks,
dims

-- 
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service
Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Sanjiva Weerawarana
On Wed, 2006-11-15 at 23:07 +0300, javaDev wrote:
> I wouldn't say it works for me, especially Java2WSDL:
> 1) it flattens chains of extender java data types to independent schema types 
> without extending relations between them.
> 2) it generates a notification-type operation for void methods even if it 
> throw application exception, as for:
>public void addUser(User) throws UserDuplicationException {...}

The latter is definitely a bug which needs to be fixed ASAP .. void
methods aren't handled correctly. Please open a JIRA.

Sanjiva.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Davanum Srinivas

Please create a ug report and upload your wsdl /xsd.

-- dims

On 11/15/06, sridhar vudutha <[EMAIL PROTECTED]> wrote:

wsdl2java does not work for me either...

The following exception is thrown..



Exception in thread "main"
org.apache.axis2.wsdl.codegen.CodeGenerationException
: Error parsing WSDL
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat
ionEngine.java :114)
at
org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:32)
at
org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:21)
Caused by: javax.wsdl.WSDLException: WSDLException: faultCode=PARSER_ERROR:
Pars
er SAX Error: org.xml.sax.SAXException: Fatal Error:
URI=https://test.medtox.com
/eChainTestOrderWebService/eChainTestOrderService.asmx
Line=81: The element type
 "p" must be terminated by the matching end-tag "".
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.readInTheWSDLFile(
CodeGenerationEngine.java:268)
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerat
ionEngine.java :97)
... 2 more
Caused by: org.xml.sax.SAXException: Fatal Error:
URI=https://test.medtox.com/eC
hainTestOrderWebService/eChainTestOrderService.asmx
Line=81: The element type "p
" must be terminated by the matching end-tag "".
at
org.apache.axis2.util.XMLUtils$ParserErrorHandler.fatalError(XMLUtils
.java:374)
at
org.apache.xerces.util.ErrorHandlerWrapper.fatalError
(Unknown Source)

at
org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
Source)
at
org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown
Source)
at
org.apache.xerces.impl.XMLScanner.reportFatalError (Unknown
Source)
at
org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknow
n Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
Dispatcher.dispatch(Unknown Source)
at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Un
known Source)
at
org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
at
org.apache.xerces.parsers.XML11Configuration.parse (Unknown
Source)
at
org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
at
org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
at org.apache.xerces.jaxp.DocumentBuilderImpl.parse
(Unknown Source)
at
org.apache.axis2.util.XMLUtils.newDocument(XMLUtils.java:191)
at
org.apache.axis2.util.XMLUtils.newDocument(XMLUtils.java:236)
at org.apache.axis2.util.XMLUtils.newDocument
(XMLUtils.java:219)
at
org.apache.axis2.wsdl.codegen.CodeGenerationEngine.readInTheWSDLFile(
CodeGenerationEngine.java:262)
... 3 moreSridhar.


On 11/15/06, Michael Moser <[EMAIL PROTECTED]> wrote:
> The wsdl2java.bat does not work for me. I spiced it up with several more
> "echo ..." statements and all names, the paths and the command line
> looks fine to me, but all it ever produced so far was:
>
> "An error occured while generating
codejava.lang.ClassNotFoundException:
> org.dailymoon.classifieds.ClassifiedService"  (I'm going
through the
> "classified ads" example in the tutorial at
>
http://www-128.ibm.com/developerworks/edu/ws-dw-ws-understand-web-services2.html
).
>
> Michael
>
>
>
>
-
> To unsubscribe, e-mail:
[EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread sridhar vudutha
wsdl2java does not work for me either...
 
The following exception is thrown..
 

Exception in thread "main" org.apache.axis2.wsdl.codegen.CodeGenerationException: Error parsing WSDL    at org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerationEngine.java
:114)    at org.apache.axis2.wsdl.WSDL2Code.main(WSDL2Code.java:32)    at org.apache.axis2.wsdl.WSDL2Java.main(WSDL2Java.java:21)Caused by: javax.wsdl.WSDLException: WSDLException: faultCode=PARSER_ERROR: Pars
er SAX Error: org.xml.sax.SAXException: Fatal Error: URI=https://test.medtox.com/eChainTestOrderWebService/eChainTestOrderService.asmx Line=81: The element type "p" must be terminated by the matching end-tag "".
    at org.apache.axis2.wsdl.codegen.CodeGenerationEngine.readInTheWSDLFile(CodeGenerationEngine.java:268)    at org.apache.axis2.wsdl.codegen.CodeGenerationEngine.(CodeGenerationEngine.java
:97)    ... 2 moreCaused by: org.xml.sax.SAXException: Fatal Error: URI=https://test.medtox.com/eChainTestOrderWebService/eChainTestOrderService.asmx Line=81: The element type "p
" must be terminated by the matching end-tag "".    at org.apache.axis2.util.XMLUtils$ParserErrorHandler.fatalError(XMLUtils.java:374)    at org.apache.xerces.util.ErrorHandlerWrapper.fatalError
(Unknown Source)
    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)    at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)    at org.apache.xerces.impl.XMLScanner.reportFatalError
(Unknown Source)    at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)    at org.apache.xerces.parsers.XML11Configuration.parse
(Unknown Source)    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)    at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse
(Unknown Source)    at org.apache.axis2.util.XMLUtils.newDocument(XMLUtils.java:191)    at org.apache.axis2.util.XMLUtils.newDocument(XMLUtils.java:236)    at org.apache.axis2.util.XMLUtils.newDocument
(XMLUtils.java:219)    at org.apache.axis2.wsdl.codegen.CodeGenerationEngine.readInTheWSDLFile(CodeGenerationEngine.java:262)    ... 3 moreSridhar. 
On 11/15/06, Michael Moser <[EMAIL PROTECTED]> wrote:
The wsdl2java.bat does not work for me. I spiced it up with several more"echo ..." statements and all names, the paths and the command line
looks fine to me, but all it ever produced so far was:"An error occured while generating codejava.lang.ClassNotFoundException:org.dailymoon.classifieds.ClassifiedService"  (I'm going through the
"classified ads" example in the tutorial athttp://www-128.ibm.com/developerworks/edu/ws-dw-ws-understand-web-services2.html
).Michael-To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


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

2006-11-15 Thread Davanum Srinivas

Please zip up your code and log a bug.

thanks,
-- dims

On 11/15/06, Michael Moser <[EMAIL PROTECTED]> wrote:

The wsdl2java.bat does not work for me. I spiced it up with several more
"echo ..." statements and all names, the paths and the command line
looks fine to me, but all it ever produced so far was:

"An error occured while generating codejava.lang.ClassNotFoundException:
org.dailymoon.classifieds.ClassifiedService"  (I'm going through the
"classified ads" example in the tutorial at
http://www-128.ibm.com/developerworks/edu/ws-dw-ws-understand-web-services2.html).

Michael



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Davanum Srinivas

Did you see question #3 :)

-- dims

On 11/15/06, javaDev <[EMAIL PROTECTED]> wrote:

I wouldn't say it works for me, especially Java2WSDL:
1) it flattens chains of extender java data types to independent schema types 
without extending relations between them.
2) it generates a notification-type operation for void methods even if it throw 
application exception, as for:
   public void addUser(User) throws UserDuplicationException {...}


-Original Message-
From: "Davanum Srinivas" <[EMAIL PROTECTED]>
To: "axis-user@ws.apache.org" 
Date: Wed, 15 Nov 2006 14:12:44 -0500
Subject: [Axis2] Is Axis2 1.1 working for you?

>
> Folks,
>
> Please chime in with your observations:
>
> - Is Axis2 1.1 working for you?
> - Did you find a problem?
> - Is it in JIRA? (What's the JIRA issue #)
>
> based on this feedback, depending on the issues/problems, the dev team
> can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
> that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...
>
> Thanks,
> dims
>
> --
> Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Ali Sadik Kumlali
Hi Alelikov,Have you by any chance tried it? Does it work for you?Regards,Ali Sadik Kumlali- Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>To: axis-user@ws.apache.orgSent: Wednesday, November 15, 2006 9:59:19 PMSubject: Re: [Axis2] Is Axis2 1.1 working for you?It would be nice to include the patch provided by Ali Sadik Kumlali
to address the following issue: http://issues.apache.org/jira/browse/AXIS2-1488 .

Thanks,
AL

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

2006-11-15 Thread javaDev
I wouldn't say it works for me, especially Java2WSDL:
1) it flattens chains of extender java data types to independent schema types 
without extending relations between them.
2) it generates a notification-type operation for void methods even if it throw 
application exception, as for:
   public void addUser(User) throws UserDuplicationException {...}


-Original Message-
From: "Davanum Srinivas" <[EMAIL PROTECTED]>
To: "axis-user@ws.apache.org" 
Date: Wed, 15 Nov 2006 14:12:44 -0500
Subject: [Axis2] Is Axis2 1.1 working for you?

> 
> Folks,
> 
> Please chime in with your observations:
> 
> - Is Axis2 1.1 working for you?
> - Did you find a problem?
> - Is it in JIRA? (What's the JIRA issue #)
> 
> based on this feedback, depending on the issues/problems, the dev team
> can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
> that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...
> 
> Thanks,
> dims
> 
> -- 
> Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service Developers)
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Alelikov
It would be nice to include the patch provided by Ali Sadik Kumlali
to address the following issue: http://issues.apache.org/jira/browse/AXIS2-1488 .

Thanks,
AL


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

2006-11-15 Thread Michael Moser
The wsdl2java.bat does not work for me. I spiced it up with several more 
"echo ..." statements and all names, the paths and the command line 
looks fine to me, but all it ever produced so far was:


"An error occured while generating codejava.lang.ClassNotFoundException: 
org.dailymoon.classifieds.ClassifiedService"  (I'm going through the 
"classified ads" example in the tutorial at 
http://www-128.ibm.com/developerworks/edu/ws-dw-ws-understand-web-services2.html).


Michael 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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

2006-11-15 Thread Gul Onural

So far, Axis1.1's basic functionality worked for me. I don't use
wsdl2java, databinding, etcJust raw xml...

Gul




-Original Message-
From: Davanum Srinivas [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 15, 2006 2:13 PM
To: axis-user@ws.apache.org
Cc: Axis developer list
Subject: [Axis2] Is Axis2 1.1 working for you?

Folks,

Please chime in with your observations:

- Is Axis2 1.1 working for you?
- Did you find a problem?
- Is it in JIRA? (What's the JIRA issue #)

based on this feedback, depending on the issues/problems, the dev team
can decide on whether to cut a quick 1.1.1 off the 1.1 branch and what
that 1.1.1 should contain as fixes. Otherwise, onwards towards 1.2...

Thanks,
dims

--
Davanum Srinivas : http://www.wso2.net (Oxygen for Web Service
Developers)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]