You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "ant elder (JIRA)" <tu...@ws.apache.org> on 2008/01/24 12:23:35 UTC

[jira] Assigned: (TUSCANY-1927) WS Binding throws ServiceRuntimeException: No callback wire found for / under load

     [ https://issues.apache.org/jira/browse/TUSCANY-1927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder reassigned TUSCANY-1927:
----------------------------------

    Assignee: ant elder

> WS Binding throws  ServiceRuntimeException: No callback wire found for /  under load
> ------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1927
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1927
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-1.0
>            Reporter: Lou Amodeo
>            Assignee: ant elder
>
> When running callbacks over the Web Services binding an intemittent exception occurs when running under load with concurrent clients. 
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R org.osoa.sca.ServiceRuntimeException: org.osoa.sca.ServiceRuntimeException: No callback wire found for /
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invokeTarget(Axis2BindingInvoker.java:216)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invoke(Axis2BindingInvoker.java:133)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.invokeNextInterceptor(RuntimeExtensionManager.java:211)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.processMessage(RuntimeExtensionManager.java:96)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at com.ibm.ws.soa.sca.runtime.impl.RuntimeTuscanyInterceptor.invoke(RuntimeTuscanyInterceptor.java:131)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at org.apache.tuscany.sca.core.databinding.wire.DataTransformationInteceptor.invoke(DataTransformationInteceptor.java:83)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(JDKInvocationHandler.java:259)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(JDKInvocationHandler.java:156)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at $Proxy73.priceQuoteCallByItem(Unknown Source)
> [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R 	at pqclientcb.sca.ws.PriceQuoteCBClientComponentImpl.getPriceQuotes(PriceQuoteCBClientComponentImpl.java:64)
> This is caused by  the  Axis2 EndpointReference being shared by multiple threads.  I applied the following local fix and they problem has been resolved.
> Axis2BindingInvoker.java
>         // If target endpoint was not specified when this invoker was created,         
>         // use dynamically specified target endpoint passed in on this call       
>                
>         EndpointReference toEPR = options.getTo();
>         if (toEPR == null) {  
>             ep = msg.getTo();
>             toEPR = new EndpointReference(ep.getURI());
>          }
>         else
>             toEPR = new EndpointReference(toEPR.getAddress()); //   <== added this "else"  to create  a new instance of EPR.  
>       

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: [jira] Assigned: (TUSCANY-1927) WS Binding throws ServiceRuntimeException: No callback wire found for / under load

Posted by Giorgio Zoppi <gi...@gmail.com>.
2008/1/24, ant elder <an...@gmail.com>:
> Hopefully this should fix it then, I've committed the fix for it, would you
> be able to see if it resolves it for you?
Now i've not time because I'm going to graduate next February 15th, so
I've a great deal of work to do. We'll see after my graduation.

Cheers,
Giorgio-

---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


Re: [jira] Assigned: (TUSCANY-1927) WS Binding throws ServiceRuntimeException: No callback wire found for / under load

Posted by ant elder <an...@gmail.com>.
Hopefully this should fix it then, I've committed the fix for it, would you
be able to see if it resolves it for you?

   ...ant

On Jan 24, 2008 2:38 PM, Giorgio Zoppi <gi...@gmail.com> wrote:

> This was exactly the problem, which I had a while ago with callbacks :).
>
>
> 2008/1/24, ant elder (JIRA) <tu...@ws.apache.org>:
> >
> >      [
> https://issues.apache.org/jira/browse/TUSCANY-1927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel]
> >
> > ant elder reassigned TUSCANY-1927:
> > ----------------------------------
> >
> >     Assignee: ant elder
> >
> > > WS Binding throws  ServiceRuntimeException: No callback wire found for
> /  under load
> > >
> ------------------------------------------------------------------------------------
> > >
> > >                 Key: TUSCANY-1927
> > >                 URL:
> https://issues.apache.org/jira/browse/TUSCANY-1927
> > >             Project: Tuscany
> > >          Issue Type: Bug
> > >          Components: Java SCA Axis Binding Extension
> > >    Affects Versions: Java-SCA-1.0
> > >            Reporter: Lou Amodeo
> > >            Assignee: ant elder
> > >
> > > When running callbacks over the Web Services binding an intemittent
> exception occurs when running under load with concurrent clients.
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R
> org.osoa.sca.ServiceRuntimeException: org.osoa.sca.ServiceRuntimeException:
> No callback wire found for /
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invokeTarget(
> Axis2BindingInvoker.java:216)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invoke(
> Axis2BindingInvoker.java:133)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.invokeNextInterceptor
> (RuntimeExtensionManager.java:211)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.processMessage(
> RuntimeExtensionManager.java:96)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> com.ibm.ws.soa.sca.runtime.impl.RuntimeTuscanyInterceptor.invoke(
> RuntimeTuscanyInterceptor.java:131)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> org.apache.tuscany.sca.core.databinding.wire.DataTransformationInteceptor.invoke
> (DataTransformationInteceptor.java:83)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(
> JDKInvocationHandler.java:259)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(
> JDKInvocationHandler.java:156)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> $Proxy73.priceQuoteCallByItem(Unknown Source)
> > > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at
> pqclientcb.sca.ws.PriceQuoteCBClientComponentImpl.getPriceQuotes(
> PriceQuoteCBClientComponentImpl.java:64)
> > > This is caused by  the  Axis2 EndpointReference being shared by
> multiple threads.  I applied the following local fix and they problem has
> been resolved.
> > > Axis2BindingInvoker.java
> > >         // If target endpoint was not specified when this invoker was
> created,
> > >         // use dynamically specified target endpoint passed in on this
> call
> > >
> > >         EndpointReference toEPR = options.getTo();
> > >         if (toEPR == null) {
> > >             ep = msg.getTo();
> > >             toEPR = new EndpointReference(ep.getURI());
> > >          }
> > >         else
> > >             toEPR = new EndpointReference(toEPR.getAddress()); //
> <== added this "else"  to create  a new instance of EPR.
> > >
> >
> > --
> > This message is automatically generated by JIRA.
> > -
> > You can reply to this email to add a comment to the issue online.
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> > For additional commands, e-mail: tuscany-dev-help@ws.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
>

Re: [jira] Assigned: (TUSCANY-1927) WS Binding throws ServiceRuntimeException: No callback wire found for / under load

Posted by Giorgio Zoppi <gi...@gmail.com>.
This was exactly the problem, which I had a while ago with callbacks :).


2008/1/24, ant elder (JIRA) <tu...@ws.apache.org>:
>
>      [ https://issues.apache.org/jira/browse/TUSCANY-1927?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
>
> ant elder reassigned TUSCANY-1927:
> ----------------------------------
>
>     Assignee: ant elder
>
> > WS Binding throws  ServiceRuntimeException: No callback wire found for /  under load
> > ------------------------------------------------------------------------------------
> >
> >                 Key: TUSCANY-1927
> >                 URL: https://issues.apache.org/jira/browse/TUSCANY-1927
> >             Project: Tuscany
> >          Issue Type: Bug
> >          Components: Java SCA Axis Binding Extension
> >    Affects Versions: Java-SCA-1.0
> >            Reporter: Lou Amodeo
> >            Assignee: ant elder
> >
> > When running callbacks over the Web Services binding an intemittent exception occurs when running under load with concurrent clients.
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R org.osoa.sca.ServiceRuntimeException: org.osoa.sca.ServiceRuntimeException: No callback wire found for /
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invokeTarget(Axis2BindingInvoker.java:216)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at org.apache.tuscany.sca.binding.ws.axis2.Axis2BindingInvoker.invoke(Axis2BindingInvoker.java:133)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.invokeNextInterceptor(RuntimeExtensionManager.java:211)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at com.ibm.ws.soa.sca.runtime.impl.RuntimeExtensionManager.processMessage(RuntimeExtensionManager.java:96)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at com.ibm.ws.soa.sca.runtime.impl.RuntimeTuscanyInterceptor.invoke(RuntimeTuscanyInterceptor.java:131)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at org.apache.tuscany.sca.core.databinding.wire.DataTransformationInteceptor.invoke(DataTransformationInteceptor.java:83)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(JDKInvocationHandler.java:259)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(JDKInvocationHandler.java:156)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at $Proxy73.priceQuoteCallByItem(Unknown Source)
> > [11/28/07 4:14:51:906 CST] 0000004b SystemErr     R   at pqclientcb.sca.ws.PriceQuoteCBClientComponentImpl.getPriceQuotes(PriceQuoteCBClientComponentImpl.java:64)
> > This is caused by  the  Axis2 EndpointReference being shared by multiple threads.  I applied the following local fix and they problem has been resolved.
> > Axis2BindingInvoker.java
> >         // If target endpoint was not specified when this invoker was created,
> >         // use dynamically specified target endpoint passed in on this call
> >
> >         EndpointReference toEPR = options.getTo();
> >         if (toEPR == null) {
> >             ep = msg.getTo();
> >             toEPR = new EndpointReference(ep.getURI());
> >          }
> >         else
> >             toEPR = new EndpointReference(toEPR.getAddress()); //   <== added this "else"  to create  a new instance of EPR.
> >
>
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
> For additional commands, e-mail: tuscany-dev-help@ws.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org