Plugin for intelJ

2006-04-11 Thread OUYANG Yang
Title: Plugin for intelJ Hello! Is there any web services plugin available for intelJ which supports axis2 now? I've intalled a plugin in intelJ which supports axis1.3, but when I tried to deploy a java class as web service it always said Axis servlet is not present and asked me to invoke

Re: SSL and Web Service

2006-04-11 Thread giuseppe nocente
I have solve my problem, thancks at allthe problem is into the url : http://localhost:8443/axis/matematica.jws ;instand to https://localhost:8443/axis/matematica.jws;By GiuseppeOn 4/10/06, giuseppe nocente [EMAIL PROTECTED] wrote: There is anyone that help me to understand the problem that i have

urgent-Axis2 vs axis1

2006-04-11 Thread nancy
Hi, I want to use axis2 to generate java classes from wsdl. Earlier I was using Axis 1 .0.That was really very easy to use. But in axis2 I cant understand how to use the generated stub class so as to call the methods/use the messages defined in wsdl.I cant understand how to set

RE: AXIS C++ and ODBC operations

2006-04-11 Thread Popuri, Monica
Please help in this matter -Original Message- From: Popuri, Monica Sent: Monday, April 10, 2006 11:20 AM To: axis-user@ws.apache.org Subject: AXIS C++ and ODBC operations Hi All, I have developed a c++ program that uses ODBC APIs to connect to mysql database and is working fine for

Axis Web Service over SSL

2006-04-11 Thread Sandip Wadkar
Hi, I have created mywebservice and its working fine if called from client by using - call.setTargetEndpointAddress(new java.net.URL("http://serverllone.com/cws/ces/services/CESService")); But if I try to call Web Service Over SSL by using - call.setTargetEndpointAddress(new

Re: Avoid multiRef in SOAP response (make it simple)

2006-04-11 Thread Anne Thomas Manes
Don't use SOAP encoding. Use document/literal with the wrapped convention instead.(You'll get better performance, too.)AnneOn 4/10/06, Daniel Destro [EMAIL PROTECTED] wrote: Hi all, I was wondering why Axis 1.3 generates a very complicated and verbose SOAP response, including all this multiRef

Re: IOException: Type xxx is referenced but not defined

2006-04-11 Thread Anne Thomas Manes
Point is defined as an element, not a type. The type is named PointType.AnneOn 4/10/06, Desiree Hilbring [EMAIL PROTECTED] wrote:Hello everybody,while using WSDL2JAVA with the attached WSDL-File I get the following error:java.io.IOException: Type {http://www.opengis.net/gml}Point isreferenced but

Hi

2006-04-11 Thread Chris . Ellis
__ Hi, Axis to .Net service I am trying to get axis cleint to talk to a .net service. IT would appear that the service expects a document as the message parameter. however. all the data i want to put in is generated as a string. Thsi strign is xml data. What i want is for axis

Re: IOException: Type xxx is referenced but not defined

2006-04-11 Thread Anne Thomas Manes
Note, also, that you must specify the namespace and encoding style attributes in the soap:body definitions in your bindings.On 4/11/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: Point is defined as an element, not a type. The type is named PointType.Anne On 4/10/06, Desiree Hilbring [EMAIL

AW: IOException: Type xxx is referenced but not defined

2006-04-11 Thread Desiree Hilbring
Hello Anne, Note, also, that you must specify the namespace and encoding style attributes in the soap:body definitions in your bindings. I will do this. On 4/11/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: Point is defined as an element, not a type. The type is named

Axis2 class loader

2006-04-11 Thread Hudson Robert
Hello all, I (think) I've got an issue with the classloader in axis2-0.94 When I try and run sendReceive(request) on a ServiceClient object for the first time (since axis2 running inside tomcat) has been started the operation takes so long that I get a HTTP timeout. When I then run

Re: urgent-Axis2 vs axis1

2006-04-11 Thread Eran Chinthaka
Did you read http://ws.apache.org/axis2/0_95/userguide2.html#Writing_Web_Services_by_Code_Generating_Skeleton and http://ws.apache.org/axis2/0_95/adb/adb-howto.html ? -- Chinthaka nancy wrote: Hi, I want to use axis2 to generate java classes from wsdl. Earlier I was using Axis 1

Re: [Axis2][0.95] How can I know wsa:MessageID before sending it?

2006-04-11 Thread Eran Chinthaka
Hi Ali, Ali Sadik Kumlali wrote: Hi all, At the service side, I can get MessageID that is sent by the client by invoking ctx.getMessageID(). What I need is to be able to know MessageID that my service is going to send as a response. Actually, what I need is a method like

Re: [axis2] ServiceClient.disEngageModule question.

2006-04-11 Thread Eran Chinthaka
Hi David, Firstly, Axis2 doesn't support dynamic module dis-engagement, just like we do not support hot deployment of modules. This is not a bug and it is by design. Secondly, once a module is engaged globally, it can not be dis-engaged per service/operation basis. But for addressing, we have

Re: [Axis2 1.0RC1] Problem getting MessageContext in ServiceImpl class

2006-04-11 Thread Eran Chinthaka
Yes, the change is incorporated in Axis2 1.0 RC1. Add the method public void setOperationContext(OperationContext opctx) in your service class and from that you can get the message contexts. To get In Message Context : MessageContext inMsgCtxt =

Re: [Axis2 1.0RC1]

2006-04-11 Thread Eran Chinthaka
Inoguchi, Kinichiro wrote: Hi, Let me answer the third question. 3. om import directive is changed. I think this will be done by Axiom team, though. 0.95 org.apache.ws.commons.om.*; 1.0RC1 org.apache.axiom.om.*; yes, this is due to latest refactorings in axiom and this

WSDL2Java not generating response class

2006-04-11 Thread Bruno Harbulot
Hello, I'm trying to use WSDL2Java to write a client for WSRF services. When I take the tutorial example from Apache WSRF http://ws.apache.org/wsrf/ (FileSystem.wsdl), not all the Java classes corresponding to the response messages are generated. (I must point out that I'm using Axis's

Re: [Axis2][0.95] How can I know wsa:MessageID before sending it?

2006-04-11 Thread Ali Sadik Kumlali
Thanks Eran. It has worked perfectly for 0.95. Ali Sadik Kumlali --- Eran Chinthaka [EMAIL PROTECTED] wrote: Hi Ali, Ali Sadik Kumlali wrote: Hi all, At the service side, I can get MessageID that is sent by the client by invoking ctx.getMessageID(). What I need is to be able to

Re: DIME and MTOM with WSE

2006-04-11 Thread Thilina Gunarathne
Axis2 MTOM interoperated well with WSE3.0 and WCF.. We did a succesfull demo at SDWEST-2006 using WSE3.0. We did well with WCF at the March interop plug fest.. ~Thilina On 4/10/06, Florian Rengers [EMAIL PROTECTED] wrote: Thanks Bob, did you definitive reached the MTOM encoded communication

Axis2 .95 findOMFactory() bug

2006-04-11 Thread Peter Haggar
For the .95 release, the org.apache.ws.commons.om.impl.llom.builder package was renamed to org.apache.ws.commons.om.impl.builder. However, I'm getting the following exception with this code: OMAbstractFactory.getOMFactory(); org.apache.ws.commons.om.OMFactoryException:

Re: IOException: Type xxx is referenced but not defined

2006-04-11 Thread Anne Thomas Manes
You didn't provide all the schema files, so I'm not able to locate the exact problem, but your error message clearly indicates that it is looking for a type called Point: java.io.IOException: Type {http://www.opengis.net/gml}Point isreferenced but not defined. Point is defined as an element, not

WSDL2Java support for SOAP1.2 ? Axis2SampleDocLitPort example is not working under SOAP1.2 Working SOAP1.2 example from WSDL wanted.

2006-04-11 Thread Yang Xiang
Hi, Please help me out here as I am struggling to find code generation solution for SOAP1.2 compliant client. I used the WSDL2Java to generate the Axis2SampleDocLit client side stub by: java -classpath $AXIS2_CLASSPATH org.apache.axis2.wsdl.WSDL2Java -uri

[Axis2][0.95] LoggingModule.mar cannot be loaded

2006-04-11 Thread Ali Sadik Kumlali
Hi Axis2 developers, While trying to run logging sample, I faced with an interesting problem. Let me explain the steps I took: 1) Put LoggingModule.mar under WEB-INF\modules 2) Put MyServiceWithModule.aar under WEB-INF\services 3) Added loggingPhase phase into axis2.xml found under

Re: [Axis2 1.0RC1] Problem getting MessageContext in ServiceImpl class

2006-04-11 Thread Gopal Patwa
Thanks Chinthaka, It work now but I have some other problem. I have wrote axis2 asynchronous service to work with BPEL. When I am trying to call BPEL service while to engaging addressing module ServiceClient sender = new ServiceClient(); sender.engageModule(new

Re: Avoid multiRef in SOAP response (make it simple)

2006-04-11 Thread Daniel Destro
Perfect!I used the flag -u LITERAL when generating the WSDL and it works.On 4/11/06, Anne Thomas Manes [EMAIL PROTECTED] wrote:Don't use SOAP encoding. Use document/literal with the wrapped convention instead. (You'll get better performance, too.)AnneOn 4/10/06, Daniel Destro [EMAIL PROTECTED]

Problem met in axis2

2006-04-11 Thread OUYANG Yang
Hello all! I am testing a simple example on axis2. I've written a web service named hello: public class hello2{ public String hello(String name){ if(name==null) name = ; return hello+name+,welcome to the world of web services!; } } And the

Serializing DynaBean in AXIS

2006-04-11 Thread Chakrapani Madaraju
I am in need of answers. Someone look into this please. Thanks, Pani --- Chakrapani Madaraju [EMAIL PROTECTED] wrote: Hi, I have a Java Program which returns a DynaBean Array to the callers. To deploy this as WebService I had to convert the DynaBean into the following to send it

Re: Problem met in axis2

2006-04-11 Thread Eran Chinthaka
Hi OUYANG, what is the version of Axis2 you are using ? -- Chinthaka OUYANG Yang wrote: Hello all! I am testing a simple example on axis2. I've written a web service named hello: public class hello2{ public String hello(String name){ if(name==null) name =

RE: Problem met in axis2

2006-04-11 Thread OUYANG Yang
Hi Chinthaka: Thank you so much for your quick reply:) My edition is 0.95. I am wondering whether it is because of the messagereceiver? Ouyang yang -Original Message- From: Eran Chinthaka [mailto:[EMAIL PROTECTED] Sent: 2006年4月12日 10:37 To: axis-user@ws.apache.org Subject: Re: Problem

Re: [Axis2 1.0RC1] Problem getting MessageContext in ServiceImpl class

2006-04-11 Thread Eran Chinthaka
Gopal Patwa wrote: Thanks Chinthaka, It work now but I have some other problem. I have wrote axis2 asynchronous service to work with BPEL. When I am trying to call BPEL service while to engaging addressing module ServiceClient sender = new ServiceClient();

Re: Problem met in axis2

2006-04-11 Thread Eran Chinthaka
Hi OUYANG, Can you please create a JIRA on this and attach your aar file. We might be able to debug here. In the mean while you can try Axis2 1.0 RC1. -- Chinthaka P.S. Its a long holiday here due to our new year. So replies to some mails will get delayed during this week. OUYANG Yang wrote:

RE: Problem met in axis2

2006-04-11 Thread OUYANG Yang
Hi Chinthaka: I'm sorry that I haven't used JIRA before. Can I just attach the aar file and the src file to you? I've read the FAQ, and found similar problem but after I have put the xalan-2.7.0.jar into the axis2/WEB-INF/lib directory, the problem still exists Thank you so much

RE: Problem met in axis2

2006-04-11 Thread Inoguchi, Kinichiro
Hi Ouyang, You need to change your services.xml. parameter name=HelloClass locked=falsehello2/parameter should be parameter name=ServiceClass locked=falsehello2/parameter I attached new hello2.aar for you. Deploy this aar file to your environment, and try ?wsdl. It works in my environment

Axis2] Web Logic

2006-04-11 Thread Wasana Delpage
Dear all pls let me know Axis2 is compatible with weblogic 9.1 How we can configure it with web logic. thanks wasana

RE: Problem met in axis2

2006-04-11 Thread OUYANG Yang
Hi kinichiro: it realy works!!! Thank you so much ~~:) Regards Ouyang yang -Original Message- From: Inoguchi, Kinichiro [mailto:[EMAIL PROTECTED] Sent: 2006年4月12日 12:28 To: axis-user@ws.apache.org Subject: RE: Problem met in axis2 Hi Ouyang, You need to change your

Re: [Axis2 1.0RC1] Problem getting MessageContext in ServiceImpl class

2006-04-11 Thread Gopal Patwa
let me clear couple of things, even if my service runing in tomcat with axis2 webapp with addressing module engage globaly but if my service Impl class uses ServiceClient class to call BPEL process does it will be running in different environment. here is scenario, I have an asynchronous echo