"Seibert, Dan" wrote:
>
> ...
> Does my parameter essentially become a "passed by value" item somewhere
> along the way?

Yes, this is required by the spec.

> I suppose, if this is true, I can try various workarounds.
>
> Any comments/clarity is appreciated.

For EJB components, the return value must be used for all 'output' parameters.
If you need to return several values, use a class, e.g.

public class MyClass implements java.io.Serializable
{
    int returnValue1;
    String returnValue2;
}

> Thanks,
> Dan
>
> ===========================================================================
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff EJB-INTEREST".  For general help, send email to
> [EMAIL PROTECTED] and include in the body of the message "help".

--
________________________________________________________________________________

Evan Ireland              Sybase EAServer Engineering        [EMAIL PROTECTED]
                            Wellington, New Zealand               +64 4 934-5856

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to