You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Ku Jun Guo (JIRA)" <de...@tuscany.apache.org> on 2009/08/13 12:03:14 UTC

[jira] Created: (TUSCANY-3214) OASIS fixes required to make ASM_5015 work - blank string lost for service1Impl6.java

OASIS fixes required to make ASM_5015 work - blank string lost for service1Impl6.java
-------------------------------------------------------------------------------------

                 Key: TUSCANY-3214
                 URL: https://issues.apache.org/jira/browse/TUSCANY-3214
             Project: Tuscany
          Issue Type: Bug
    Affects Versions: Java-SCA-2.0
            Reporter: Ku Jun Guo
             Fix For: Java-SCA-M2


When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass the test. So I made a check, I found it was caused by service1Impl6, it missed a blank. Could you help to make a check for this? Thanks!


public String operation1(String input) {
		String result = serviceName + " operation1 invoked";
		// Call the reference if present
		if( reference1 != null ) result = result.concat(reference1.operation1( input ));
		return result;
	}

I think it should be:
             result = result.concat(" ").concat(reference1.operation1( input ));


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


[jira] Updated: (TUSCANY-3214) OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java

Posted by "ant elder (JIRA)" <de...@tuscany.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-3214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder updated TUSCANY-3214:
-------------------------------

    Component/s: OASIS Compliance

> OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java
> --------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-3214
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-3214
>             Project: Tuscany
>          Issue Type: Bug
>          Components: OASIS Compliance
>    Affects Versions: Java-SCA-2.0
>            Reporter: Ku Jun Guo
>             Fix For: Java-SCA-M2
>
>
> When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass the test. So I made a check, I found it was caused by service1Impl6, it missed a blank. Could you help to make a check for this? Thanks!
> public String operation1(String input) {
> 		String result = serviceName + " operation1 invoked";
> 		// Call the reference if present
> 		if( reference1 != null ) result = result.concat(reference1.operation1( input ));
> 		return result;
> 	}
> I think it should be:
>              result = result.concat(" ").concat(reference1.operation1( input ));

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


[jira] Updated: (TUSCANY-3214) OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java

Posted by "Simon Laws (JIRA)" <de...@tuscany.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-3214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Simon Laws updated TUSCANY-3214:
--------------------------------

    Summary: OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java  (was: OASIS fixes required to make ASM_5015 work - blank string lost for service1Impl6.java)

Also affects ASM_6017

> OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java
> --------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-3214
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-3214
>             Project: Tuscany
>          Issue Type: Bug
>    Affects Versions: Java-SCA-2.0
>            Reporter: Ku Jun Guo
>             Fix For: Java-SCA-M2
>
>
> When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass the test. So I made a check, I found it was caused by service1Impl6, it missed a blank. Could you help to make a check for this? Thanks!
> public String operation1(String input) {
> 		String result = serviceName + " operation1 invoked";
> 		// Call the reference if present
> 		if( reference1 != null ) result = result.concat(reference1.operation1( input ));
> 		return result;
> 	}
> I think it should be:
>              result = result.concat(" ").concat(reference1.operation1( input ));

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


[jira] Resolved: (TUSCANY-3214) OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java

Posted by "Simon Laws (JIRA)" <de...@tuscany.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-3214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Simon Laws resolved TUSCANY-3214.
---------------------------------

    Resolution: Fixed

Now fixed and otests working in 2.x code base

> OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java
> --------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-3214
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-3214
>             Project: Tuscany
>          Issue Type: Bug
>          Components: OASIS Compliance - OASIS
>    Affects Versions: Java-SCA-2.0
>            Reporter: Ku Jun Guo
>             Fix For: Java-SCA-M2
>
>
> When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass the test. So I made a check, I found it was caused by service1Impl6, it missed a blank. Could you help to make a check for this? Thanks!
> public String operation1(String input) {
> 		String result = serviceName + " operation1 invoked";
> 		// Call the reference if present
> 		if( reference1 != null ) result = result.concat(reference1.operation1( input ));
> 		return result;
> 	}
> I think it should be:
>              result = result.concat(" ").concat(reference1.operation1( input ));

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


[jira] Commented: (TUSCANY-3214) OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java

Posted by "ant elder (JIRA)" <de...@tuscany.apache.org>.
    [ https://issues.apache.org/jira/browse/TUSCANY-3214?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12745030#action_12745030 ] 

ant elder commented on TUSCANY-3214:
------------------------------------

Also affects ASM_5022

> OASIS fixes required to make ASM_5015 and ASM_6017 work - blank string lost for service1Impl6.java
> --------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-3214
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-3214
>             Project: Tuscany
>          Issue Type: Bug
>    Affects Versions: Java-SCA-2.0
>            Reporter: Ku Jun Guo
>             Fix For: Java-SCA-M2
>
>
> When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass the test. So I made a check, I found it was caused by service1Impl6, it missed a blank. Could you help to make a check for this? Thanks!
> public String operation1(String input) {
> 		String result = serviceName + " operation1 invoked";
> 		// Call the reference if present
> 		if( reference1 != null ) result = result.concat(reference1.operation1( input ));
> 		return result;
> 	}
> I think it should be:
>              result = result.concat(" ").concat(reference1.operation1( input ));

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