You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Raymond Feng (JIRA)" <tu...@ws.apache.org> on 2007/09/14 01:05:32 UTC

[jira] Resolved: (TUSCANY-1633) To support for SCA Binding using URI on r558780

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

Raymond Feng resolved TUSCANY-1633.
-----------------------------------

    Resolution: Fixed

By checking the values in the debugger with the latest code, the issue has been fixed.

> To support <reference target > for SCA Binding using URI on r558780
> -------------------------------------------------------------------
>
>                 Key: TUSCANY-1633
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1633
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Assembly Model
>         Environment: Windows
>            Reporter: Yang Lei
>            Assignee: Raymond Feng
>             Fix For: Java-SCA-1.0
>
>
> We assume we can use SCA binding 's URI for its target service. We see the following problems:
> 1. When there is a SCABinding element under the reference or we are trying to create one when there is none, the URI is not set. So added  a else block to the following code in CompositeBuilderImpl,matchBinding method:
>                     if (binding instanceof WireableBinding) {     
>                                  .....
>                     } else {
>                         //use terget serviceBinding's URI as referece's binding URI
>                         //This is to support reference target
>                         if (cloned instanceof SCABinding && cloned.getURI() == null) {
>                             cloned.setURI(serviceBinding.getURI());
>                         }
>                     }
> 2. When there is a SCABinding element defined on service side, URI is not set we need to add the else block:
>                 // Create and configure an SCA binding for the service
>                 if (componentService.getBindings().isEmpty()) {
>                     SCABinding scaBinding = componentService.getBinding(SCABinding.class);
>                     if (scaBinding == null) {
>                         scaBinding = scaBindingFactory.createSCABinding();
>                         scaBinding.setName(componentService.getName());
>                         componentService.getBindings().add(scaBinding);
>                     }
>                     scaBinding.setComponent(component);
>                     scaBinding.setURI(uri);
>                  }else
>                  {
>                     SCABinding scaBinding = componentService.getBinding(SCABinding.class);
>                     if (scaBinding != null && scaBinding.getURI()==null) {
>                         scaBinding.setURI(uri);
>                     }
>                  }

-- 
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