Re: Unable to find the service wsdl file

2010-02-15 Thread Kevan Miller

On Feb 15, 2010, at 9:32 AM, mlounnaci wrote:

> 
> Hi,
> 
> Thanks for reply
> 
> In reality i am using websphere (WASCE version 2.1) which uese the
> geronimo-kernel 2.1.4 on windows.

K. So, can't say I recall anybody seeing this before. If you can show us an app 
that fails on Geronimo, I'd assume somebody will have a look. Please create a 
Jira and provide instructions (and an app) on how to recreate.

--kevan

Re: Unable to find the service wsdl file

2010-02-15 Thread mlounnaci

Hi,

Thanks for reply

In reality i am using websphere (WASCE version 2.1) which uese the
geronimo-kernel 2.1.4 on windows.

Regards


kevan wrote:
> 
> 
> On Feb 15, 2010, at 2:37 AM, mlounnaci wrote:
> 
>> 
>> Hi
>> 
>> When I create a new bean and expose it as a web service, the server
>> succeed
>> to publish it and generate the wsdl/schema files and web service
>> descriptors
>> correctly. But when i republish a number of times it suddenly fails to
>> generate WSDL desciptor for ever. If i create a new EJB with another name
>> it
>> repeats the same scenario as before (creates for certain number of times
>> and
>> fails for ever).
> 
> Thanks. What version of Geronimo? And is this on Windows, Linux, ...?
> 
> If you can generate a Jira, that would be great.
> 
> --kevan
> 

-- 
View this message in context: 
http://old.nabble.com/Unable-to-find-the-service-wsdl-file-tp27583029s134p27594606.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.



Re: Unable to find the service wsdl file

2010-02-15 Thread Kevan Miller

On Feb 15, 2010, at 2:37 AM, mlounnaci wrote:

> 
> Hi
> 
> When I create a new bean and expose it as a web service, the server succeed
> to publish it and generate the wsdl/schema files and web service descriptors
> correctly. But when i republish a number of times it suddenly fails to
> generate WSDL desciptor for ever. If i create a new EJB with another name it
> repeats the same scenario as before (creates for certain number of times and
> fails for ever).

Thanks. What version of Geronimo? And is this on Windows, Linux, ...?

If you can generate a Jira, that would be great.

--kevan

Re: Unable to find the service wsdl file

2010-02-14 Thread mlounnaci

Hi

When I create a new bean and expose it as a web service, the server succeed
to publish it and generate the wsdl/schema files and web service descriptors
correctly. But when i republish a number of times it suddenly fails to
generate WSDL desciptor for ever. If i create a new EJB with another name it
repeats the same scenario as before (creates for certain number of times and
fails for ever).

Thanks for reply



kevan wrote:
> 
> 
> On Feb 14, 2010, at 8:05 AM, mlounnaci wrote:
> 
>> 
>> Hi
>> 
>> Some times when i try to publish my J2EE app i get the following
>> exception:
>> 
>> ERROR [EjbModuleBuilder] JAXWSEJBModuleBuilderExtension.addGBeans()
>> failed:
>> Unable to find the service wsdl file
>> org.apache.geronimo.common.DeploymentException: Unable to find the
>> service
>> wsdl file
>>  at
>> org.apache.geronimo.jaxws.builder.WsdlGenerator.generateWsdl(WsdlGenerator.java:338)
> 
> What version of Geronimo? 
> 
> Does this problem always occur for a given application? Or does it work
> sometimes and fail other times?
> 
> --kevan
> 

-- 
View this message in context: 
http://old.nabble.com/Unable-to-find-the-service-wsdl-file-tp27583029s134p27590361.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.



Re: Unable to find the service wsdl file

2010-02-14 Thread Kevan Miller

On Feb 14, 2010, at 8:05 AM, mlounnaci wrote:

> 
> Hi
> 
> Some times when i try to publish my J2EE app i get the following exception:
> 
> ERROR [EjbModuleBuilder] JAXWSEJBModuleBuilderExtension.addGBeans() failed:
> Unable to find the service wsdl file
> org.apache.geronimo.common.DeploymentException: Unable to find the service
> wsdl file
>   at
> org.apache.geronimo.jaxws.builder.WsdlGenerator.generateWsdl(WsdlGenerator.java:338)

What version of Geronimo? 

Does this problem always occur for a given application? Or does it work 
sometimes and fail other times?

--kevan

Re: Unable to find the service wsdl file

2008-05-13 Thread filosofisto

We are using Geronimo 2.0.1 and all classes and interfaces are inside
EJBModule (jar).


Jarek Gawor-2 wrote:
> 
> What version of Geronimo are you using? Also, is the PDSBaseFacade and
> PrestarServicoBusiness class in the ejb jar file?
> 
> Jarek
> 
> On Mon, May 12, 2008 at 10:39 AM, filosofisto
> <[EMAIL PROTECTED]> wrote:
>>
>>  I'm trying to deploy a very simple EJB/WebService exposed.
>>
>>  My Bean:
>>
>>  package br.com.bb.pds.negocio.facade;
>>  ...
>>
>>  @Stateless
>>  @WebService
>>  public class PrestarServicoFacade extends PDSBaseFacade
>> implements PrestarServicoBusiness {
>>
>> @TransactionAttribute (TransactionAttributeType.SUPPORTS)
>> @Interceptors (ConfigSessionWebServiceInterceptor.class)
>> @WebMethod
>> public String hello(String param)
>> throws SystemException {
>> return "hello " + param;
>> }
>>  }
>>
>>  My interface:
>>
>>  package br.com.bb.pds.negocio.facade;
>>
>>  public interface PrestarServicoBusiness {
>>
>> String hello(String param) throws SystemException;
>>  }
>>
>>  and I got the follow error:
>>
>>  error: Could not find class file for
>>  br.com.bb.pds.negocio.facade.PrestarServicoFacade
>>  1 error
>>  10:40:39,348 ERROR [EjbModuleBuilder]
>>  ModuleBuilderExtension$$EnhancerByCGLIB$$8b7b4031.addGBeans() failed:
>> Unable
>>  to find the service wsdl file
>>  org.apache.geronimo.common.DeploymentException: Unable to find the
>> service
>>  wsdl file
>> at
>> 
>> org.apache.geronimo.jaxws.builder.WsdlGenerator.generateWsdl(WsdlGenerator.java:352)
>> at
>> 
>> org.apache.geronimo.axis2.builder.Axis2Builder.initialize(Axis2Builder.java:327)
>> at
>> 
>> org.apache.geronimo.jaxws.builder.JAXWSServiceBuilder.configureEJB(JAXWSServiceBuilder.java:402)
>> at
>> 
>> org.apache.geronimo.jaxws.builder.JAXWSServiceBuilder$$FastClassByCGLIB$$5b2252ff.invoke()
>> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
>> at
>> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
>> at
>> 
>> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
>> at
>> 
>> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
>> at
>> 
>> org.apache.geronimo.j2ee.deployment.WebServiceBuilder$$EnhancerByCGLIB$$122d2d15.configureEJB()
>> at
>> 
>> org.apache.geronimo.jaxws.builder.JAXWSEJBModuleBuilderExtension.addGBeans(JAXWSEJBModuleBuilderExtension.java:168)
>> at
>> 
>> org.apache.geronimo.jaxws.builder.JAXWSEJBModuleBuilderExtension$$FastClassByCGLIB$$74c250b4.invoke()
>> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
>> at
>> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
>> at
>> 
>> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
>> at
>> 
>> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
>> at
>> 
>> org.apache.geronimo.j2ee.deployment.ModuleBuilderExtension$$EnhancerByCGLIB$$8b7b4031.addGBeans()
>> at
>> 
>> org.apache.geronimo.openejb.deployment.EjbModuleBuilder.addGBeans(EjbModuleBuilder.java:659)
>> at
>> 
>> org.apache.geronimo.openejb.deployment.EjbModuleBuilder$$FastClassByCGLIB$$cd80af20.invoke()
>> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
>> at
>> 
>> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
>> at
>> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
>> at
>> 
>> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
>> at
>> 
>> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
>> at
>> 
>> org.apache.geronimo.j2ee.deployment.ModuleBuilder$$EnhancerByCGLIB$$159a1df2.addGBeans()
>> at
>> 
>> org.apache.geronimo.j2ee.deployment.EARConfigBuilder.buildConfiguration(EARConfigBuilder.java:628)
>>  

Re: Unable to find the service wsdl file

2008-05-13 Thread Jarek Gawor
What version of Geronimo are you using? Also, is the PDSBaseFacade and
PrestarServicoBusiness class in the ejb jar file?

Jarek

On Mon, May 12, 2008 at 10:39 AM, filosofisto
<[EMAIL PROTECTED]> wrote:
>
>  I'm trying to deploy a very simple EJB/WebService exposed.
>
>  My Bean:
>
>  package br.com.bb.pds.negocio.facade;
>  ...
>
>  @Stateless
>  @WebService
>  public class PrestarServicoFacade extends PDSBaseFacade
> implements PrestarServicoBusiness {
>
> @TransactionAttribute (TransactionAttributeType.SUPPORTS)
> @Interceptors (ConfigSessionWebServiceInterceptor.class)
> @WebMethod
> public String hello(String param)
> throws SystemException {
> return "hello " + param;
> }
>  }
>
>  My interface:
>
>  package br.com.bb.pds.negocio.facade;
>
>  public interface PrestarServicoBusiness {
>
> String hello(String param) throws SystemException;
>  }
>
>  and I got the follow error:
>
>  error: Could not find class file for
>  br.com.bb.pds.negocio.facade.PrestarServicoFacade
>  1 error
>  10:40:39,348 ERROR [EjbModuleBuilder]
>  ModuleBuilderExtension$$EnhancerByCGLIB$$8b7b4031.addGBeans() failed: Unable
>  to find the service wsdl file
>  org.apache.geronimo.common.DeploymentException: Unable to find the service
>  wsdl file
> at
>  
> org.apache.geronimo.jaxws.builder.WsdlGenerator.generateWsdl(WsdlGenerator.java:352)
> at
>  
> org.apache.geronimo.axis2.builder.Axis2Builder.initialize(Axis2Builder.java:327)
> at
>  
> org.apache.geronimo.jaxws.builder.JAXWSServiceBuilder.configureEJB(JAXWSServiceBuilder.java:402)
> at
>  
> org.apache.geronimo.jaxws.builder.JAXWSServiceBuilder$$FastClassByCGLIB$$5b2252ff.invoke()
> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
> at
>  
> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
> at 
> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
> at
>  
> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
> at
>  
> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
> at
>  
> org.apache.geronimo.j2ee.deployment.WebServiceBuilder$$EnhancerByCGLIB$$122d2d15.configureEJB()
> at
>  
> org.apache.geronimo.jaxws.builder.JAXWSEJBModuleBuilderExtension.addGBeans(JAXWSEJBModuleBuilderExtension.java:168)
> at
>  
> org.apache.geronimo.jaxws.builder.JAXWSEJBModuleBuilderExtension$$FastClassByCGLIB$$74c250b4.invoke()
> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
> at
>  
> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
> at 
> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
> at
>  
> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
> at
>  
> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
> at
>  
> org.apache.geronimo.j2ee.deployment.ModuleBuilderExtension$$EnhancerByCGLIB$$8b7b4031.addGBeans()
> at
>  
> org.apache.geronimo.openejb.deployment.EjbModuleBuilder.addGBeans(EjbModuleBuilder.java:659)
> at
>  
> org.apache.geronimo.openejb.deployment.EjbModuleBuilder$$FastClassByCGLIB$$cd80af20.invoke()
> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
> at
>  
> org.apache.geronimo.gbean.runtime.FastMethodInvoker.invoke(FastMethodInvoker.java:38)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:124)
> at
>  
> org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:830)
> at 
> org.apache.geronimo.gbean.runtime.RawInvoker.invoke(RawInvoker.java:57)
> at
>  
> org.apache.geronimo.kernel.basic.RawOperationInvoker.invoke(RawOperationInvoker.java:35)
> at
>  
> org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.intercept(ProxyMethodInterceptor.java:96)
> at
>  
> org.apache.geronimo.j2ee.deployment.ModuleBuilder$$EnhancerByCGLIB$$159a1df2.addGBeans()
> at
>  
> org.apache.geronimo.j2ee.deployment.EARConfigBuilder.buildConfiguration(EARConfigBuilder.java:628)
> at
>  
> org.apache.geronimo.j2ee.deployment.EARConfigBuilder$$FastClassByCGLIB$$38e56ec6.invoke()
> at net.sf.cglib.reflect.FastMethod.invoke(FastMethod.java:53)
> at
>  
> org.apache.geronimo.gbean.runtime.FastMetho