Re: omniorbpy: problems sending float values

2006-05-31 Thread Duncan Grisby
In article <[EMAIL PROTECTED]>, Juergen <[EMAIL PROTECTED]> wrote: >I've got a problem sending floating point values to an corba server. >With other datatyes like short or string it works fine. Upgrade to the latest stable release, omniORB 4.0.7 and omniORBpy 2.7. The problem you are seeing is d

Re: omniorbpy: problems sending float values

2006-05-29 Thread SuperHik
Juergen wrote: > hi, > > I've got a problem sending floating point values to an corba server. > With other datatyes like short or string it works fine. > > > So having this idl file : > > module Example{ > interface User{ > void setV( in float x ); > }; >

Re: omniorbpy: problems sending float values

2006-05-29 Thread Diez B. Roggisch
Juergen wrote: > hi, > > I've got a problem sending floating point values to an corba server. > With other datatyes like short or string it works fine. It works fine for me with floats, too. You'd better ask this on the omniorb ML, and don't forget to give some more details on the python & omn

omniorbpy: problems sending float values

2006-05-29 Thread Juergen
hi, I've got a problem sending floating point values to an corba server. With other datatyes like short or string it works fine. So having this idl file : module Example{ interface User{ void setV( in float x ); }; interface Target{