Re: websphere web service deployment problem

2007-09-28 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi, just wanted you to know that I have managed to solve the problem now. It was all about other files, which were on our classpath and which were not supposed to be there (our product jars). That caused classloader to load classes where they were not supposed to be loaded.

Re: websphere web service deployment problem

2007-09-28 Thread Radim Kolarik
Hi, just wanted you to know that I have managed to solve the problem now. It was all about other files, which were on our classpath and which were not supposed to be there (our product jars). That caused classloader to load classes where they were not supposed to be loaded. The problem doesn't ap

Re: websphere web service deployment problem

2007-09-28 Thread Radim Kolarik
Hi, I am suspecting that this has something to do with the application settings "change classloader properties of your Webapp to parent-last / single". Have anyone been able to reproduce the problem? Sebastian, did you have a chance to have a look if there is anything wrong? Thanks a lot, Radim

Re: websphere web service deployment problem

2007-09-27 Thread Radim Kolarik
Hi Sebastien, You are right, I mean the "change classloader properties of your Webapp to parent-last / single" update. I am calling the AdminService.getAttribute() from the web app, server itself starts without problems. Here is the complete stack trace: java.lang.ClassCastException: org.apache

Re: websphere web service deployment problem

2007-09-27 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi, We are experiencing a problem on Websphere 6.1.0.11 with Tuscany 1.0. When we set all classloader properties, as mentioned before, I'm assuming that you mean: change classloader properties of your Webapp to parent-last / single, correct? we are getting the followin

Re: websphere web service deployment problem

2007-09-27 Thread Radim Kolarik
Hi, We are experiencing a problem on Websphere 6.1.0.11 with Tuscany 1.0. When we set all classloader properties, as mentioned before, we are getting the following exception when we try to call Websphere's AdminService.getAttribute: Stack Dump = java.lang.ClassCastException: org.apache.xerces.jax

Re: websphere web service deployment problem

2007-09-20 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi Sebastien, I can confirm that you are right, that was the problem. I would swear I saw many examples that had the implementation element as last one in the composite file ;-). Thanks again, Radim Yeah I had to fix them all for the 1.0 release :) I guess it shows th

Re: websphere web service deployment problem

2007-09-20 Thread Simon Nash
According to the SCDL schema, the implementation.* element must come first in a service or reference. This is what the line in the schema is saying. The message is telling you that the SCDL has elements appearing in a different order. (See TUSCANY-1738.) The message is only a warning, and t

Re: websphere web service deployment problem

2007-09-20 Thread Radim Kolarik
Hi Sebastien, I can confirm that you are right, that was the problem. I would swear I saw many examples that had the implementation element as last one in the composite file ;-). Thanks again, Radim On 9/20/07, Jean-Sebastien Delfino <[EMAIL PROTECTED]> wrote: > Simon Laws wrote: > > On 9/20/07,

Re: websphere web service deployment problem

2007-09-20 Thread Jean-Sebastien Delfino
Simon Laws wrote: On 9/20/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: Hi Sebastien, thanks for your help! It was the the custom Web container property as described in the WebSphere fixpack. I can also confirm now that it works with 6.1.0.11 fixpack as well, if the property is set. In the

Re: websphere web service deployment problem

2007-09-20 Thread Simon Laws
On 9/20/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: > > Hi Sebastien, > > thanks for your help! It was the the custom Web container property as > described in the WebSphere fixpack. > > I can also confirm now that it works with 6.1.0.11 fixpack as well, if > the property is set. > > In the log fil

Re: websphere web service deployment problem

2007-09-20 Thread Radim Kolarik
Hi Sebastien, thanks for your help! It was the the custom Web container property as described in the WebSphere fixpack. I can also confirm now that it works with 6.1.0.11 fixpack as well, if the property is set. In the log file, however, we are getting something I am not sure we were getting bef

Re: websphere web service deployment problem

2007-09-19 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi Simon, unfortunatelly I am seeing the same problem on WAS 6.1.0.9. Sebastien, do you still have the WAS environment? Could you try to deploy RC3 based example web service on it? Thanks a lot, Radim It works for me. I need more precise information to be able to he

Re: websphere web service deployment problem

2007-09-19 Thread Radim Kolarik
Hi Simon, unfortunatelly I am seeing the same problem on WAS 6.1.0.9. Sebastien, do you still have the WAS environment? Could you try to deploy RC3 based example web service on it? Thanks a lot, Radim On 9/19/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: > Hi Simon, > > thanks for your reply. We

Re: websphere web service deployment problem

2007-09-19 Thread Radim Kolarik
Hi Simon, thanks for your reply. We will test it now with 6.1.0.9 and I will let you know the result of that. Thanks, Radim On 9/19/07, Simon Nash <[EMAIL PROTECTED]> wrote: > As it's night time in California, I'll answer this question. > Sebastien told me that he had tested on 6.1.0.9. Can you

Re: websphere web service deployment problem

2007-09-19 Thread Simon Nash
As it's night time in California, I'll answer this question. Sebastien told me that he had tested on 6.1.0.9. Can you use that level instead of 6.1.0.11? Simon Radim Kolarik wrote: Hi Sebastien, I am having problems making the app work on Websphere 6.1.0.11. Did you try that particular fix

Re: websphere web service deployment problem

2007-09-19 Thread Radim Kolarik
Hi Sebastien, I am having problems making the app work on Websphere 6.1.0.11. Did you try that particular fixpack, or did you try 6.1.0.9? In the 6.1.0.11 WAS the service is not being picked up at all, nothing at all is logged to the log file if I try to access the service URL. I tried it with th

Re: websphere web service deployment problem

2007-09-14 Thread Jean-Sebastien Delfino
Jean-Sebastien Delfino wrote: Jean-Sebastien Delfino wrote: Radim Kolarik wrote: Hi Sebastian, I received the latest code from ant and I can confirm that the service generates the WSDL file now. The element doesn't even need uri attribute, it works without any attributes! However, there is s

Re: websphere web service deployment problem

2007-09-14 Thread Jean-Sebastien Delfino
Jean-Sebastien Delfino wrote: Radim Kolarik wrote: Hi Sebastian, I received the latest code from ant and I can confirm that the service generates the WSDL file now. The element doesn't even need uri attribute, it works without any attributes! However, there is still some problem, the generate

Re: websphere web service deployment problem

2007-09-14 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi Sebastian, I received the latest code from ant and I can confirm that the service generates the WSDL file now. The element doesn't even need uri attribute, it works without any attributes! However, there is still some problem, the generated WSDL contains Error 404: SRV

Re: websphere web service deployment problem

2007-09-14 Thread Radim Kolarik
Hi Sebastian, I received the latest code from ant and I can confirm that the service generates the WSDL file now. The element doesn't even need uri attribute, it works without any attributes! However, there is still some problem, the generated WSDL contains Error 404: SRVE0190E: File not found:

Re: websphere web service deployment problem

2007-09-14 Thread Jean-Sebastien Delfino
Radim Kolarik wrote: Hi Yang, unfortunatelly, that didn't help either. Thanks, Radim On 9/14/07, Yang Lei <[EMAIL PROTECTED]> wrote: Try remove the contextRoot and see if you can get the values. Yang On 9/13/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: Hi Simon, please ignore the

Re: websphere web service deployment problem

2007-09-14 Thread Radim Kolarik
Hi Yang, unfortunatelly, that didn't help either. Thanks, Radim On 9/14/07, Yang Lei <[EMAIL PROTECTED]> wrote: > Try remove the contextRoot and see if you can get the values. > > Yang > > > On 9/13/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: > > > > Hi Simon, > > > > please ignore the --, it w

Re: websphere web service deployment problem

2007-09-13 Thread Yang Lei
Try remove the contextRoot and see if you can get the values. Yang On 9/13/07, Radim Kolarik <[EMAIL PROTECTED]> wrote: > > Hi Simon, > > please ignore the --, it was just added to thread by accident. The > file I work with is a valid XML file. > > The URI even gets picked up from the .composite

Re: websphere web service deployment problem

2007-09-13 Thread Radim Kolarik
Hi Simon, please ignore the --, it was just added to thread by accident. The file I work with is a valid XML file. The URI even gets picked up from the .composite file during inicialization, I get the addServletMapping: /contextroot/ExampleComponent/ExampleService in the log file. But I do not s

Re: websphere web service deployment problem

2007-09-13 Thread Radim Kolarik
Hi Ant, see my answers inline. Thanks, Radim On 9/13/07, ant elder <[EMAIL PROTECTED]> wrote: > Hard to say, could you answer these questions: > > Do you see anything in the log or console saying "addServletMapping: > /ExampleComponent/ExampleService" to show the web service > is getting registe

Re: websphere web service deployment problem

2007-09-13 Thread Radim Kolarik
Hi Simon and Ant, We have tried to put a port to ws.binding to reference an existing WSDL, which had the correct port in, but without success. Also, we did another test and tried to specify the uri attribute to binding.ws, but it didn't work either. I will now try to reconfigure websphere to port

Re: websphere web service deployment problem

2007-09-13 Thread Simon Nash
See inline. Simon Radim Kolarik wrote: Oh, sorry about the stack trace, it only occurs with older version of Tuscany when TuscanyServlet is used instead of filters. I am now using Tuscany snapshot from the Maven repository dated 4th September, with filters set up in web.xml, but still no lu

Re: websphere web service deployment problem

2007-09-13 Thread Radim Kolarik
Oh, sorry about the stack trace, it only occurs with older version of Tuscany when TuscanyServlet is used instead of filters. I am now using Tuscany snapshot from the Maven repository dated 4th September, with filters set up in web.xml, but still no luck on Websphere. There is now no warning or ex

Re: websphere web service deployment problem

2007-09-13 Thread Radim Kolarik
Hi Yang, thank you for your suggestions. I am sure I use the correct root context, because I can access a JSP within the application successfully. It seems to me that the axis service is not being recognized at http://localhost:9201/contextRoot/componentName/serviceName. It is very strange, beca