You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Full Name (JIRA)" <ji...@apache.org> on 2009/03/11 22:48:50 UTC

[jira] Created: (CXF-2109) samples\corba\bank_ws_addressing does not compile

samples\corba\bank_ws_addressing does not compile
-------------------------------------------------

                 Key: CXF-2109
                 URL: https://issues.apache.org/jira/browse/CXF-2109
             Project: CXF
          Issue Type: Bug
          Components: Samples
    Affects Versions: 2.1.4
            Reporter: Full Name
            Priority: Trivial


"ant cxf.server" won't build because of invalid code in samples\corba\bank_ws_addressing\src\cxf\server\BankImpl.java

    // TODO: What is the correct implementation for this operation?
    public void findAccount(javax.xml.ws.Holder<Object> accountDetails) {
    }

correct code for sample

    // TODO: What is the correct implementation for this operation?
    public java.lang.Object findAccount(java.lang.Object accountDetails) {
	   Object holder = "foo";
	   return holder;
	}




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


[jira] Updated: (CXF-2109) samples\corba\bank_ws_addressing does not compile

Posted by "Full Name (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Full Name updated CXF-2109:
---------------------------

    Attachment: BankImpl.java

fix

> samples\corba\bank_ws_addressing does not compile
> -------------------------------------------------
>
>                 Key: CXF-2109
>                 URL: https://issues.apache.org/jira/browse/CXF-2109
>             Project: CXF
>          Issue Type: Bug
>          Components: Samples
>    Affects Versions: 2.1.4
>            Reporter: Full Name
>            Priority: Trivial
>         Attachments: BankImpl.java
>
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> "ant cxf.server" won't build because of invalid code in samples\corba\bank_ws_addressing\src\cxf\server\BankImpl.java
>     // TODO: What is the correct implementation for this operation?
>     public void findAccount(javax.xml.ws.Holder<Object> accountDetails) {
>     }
> correct code for sample
>     // TODO: What is the correct implementation for this operation?
>     public java.lang.Object findAccount(java.lang.Object accountDetails) {
> 	   Object holder = "foo";
> 	   return holder;
> 	}

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


[jira] Resolved: (CXF-2109) samples\corba\bank_ws_addressing does not compile

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CXF-2109?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved CXF-2109.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.1.5
         Assignee: Daniel Kulp

> samples\corba\bank_ws_addressing does not compile
> -------------------------------------------------
>
>                 Key: CXF-2109
>                 URL: https://issues.apache.org/jira/browse/CXF-2109
>             Project: CXF
>          Issue Type: Bug
>          Components: Samples
>    Affects Versions: 2.1.4
>            Reporter: Brad L. Ragsdale
>            Assignee: Daniel Kulp
>            Priority: Trivial
>             Fix For: 2.1.5
>
>         Attachments: BankImpl.java
>
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> "ant cxf.server" won't build because of invalid code in samples\corba\bank_ws_addressing\src\cxf\server\BankImpl.java
>     // TODO: What is the correct implementation for this operation?
>     public void findAccount(javax.xml.ws.Holder<Object> accountDetails) {
>     }
> correct code for sample
>     // TODO: What is the correct implementation for this operation?
>     public java.lang.Object findAccount(java.lang.Object accountDetails) {
> 	   Object holder = "foo";
> 	   return holder;
> 	}

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