RE: Windows build from trunk fails in CMake

2009-10-20 Thread lroloson
The error is still the same; CMake Error at src/CMakeLists.txt:101 (include): include could not find load file: C:/qpid/qpid/cpp/build/src/managementgen.cmake -- View this message in context: http://n2.nabble.com/Windows-build-from-trunk-fails-in-CMake-tp3860404p3860674.html Sent from

RE: Windows build from trunk fails in CMake

2009-10-20 Thread Steve Huston
Try deleting your C:/qpid/qpid/cpp/build directory, then retry the cmake. -Steve -- Steve Huston, Riverace Corporation Total Lifecycle Support for Your Networked Applications http://www.riverace.com > -Original Message- > From: lroloson [mailto:lrolo...@trmi.com] > Sent: Tuesday, Octob

Windows build from trunk fails in CMake

2009-10-20 Thread lroloson
I tried following the instructions in INSTALL-WINDOWS, which states "To get the source code from the subversion repository (trunk) do: C:\qpid> svn checkout https://svn.apache.org/repos/asf/incubator/qpid/trunk"; this repository does not seem to exist. I was able to get what I think was the

Re: How to send binary data in qpid

2009-10-20 Thread Carl Trieloff
FYI -- I guess you are using string& assign ( const char* s ); assign your data with string& assign ( const char* s, size_t n ); string& assign ( const string& str ); string& assign ( const string& str, size_t pos, size_t n ); string& assign ( const char* s, size_t n ); str

Re: How to send binary data in qpid

2009-10-20 Thread Carl Trieloff
Sorry, I looked in the wrong place.. how do you assign your data to the string object? Carl. lroloson wrote: When I try to specify the length I get an error "error: no matching function for call to ‘qpid::client::Message::setData(std::string, unsigned int)’". Was the unsigned int paramet

Re: How to send binary data in qpid

2009-10-20 Thread lroloson
When I try to specify the length I get an error "error: no matching function for call to ‘qpid::client::Message::setData(std::string, unsigned int)’". Was the unsigned int parameter implemented after 801239? Larry Roloson TRMI Systems Integration On Oct 20, 2009, at 8:18 AM, Carl Trieloff [

Re: How to send binary data in qpid

2009-10-20 Thread Carl Trieloff
lroloson wrote: I have been successful with messages that are strings, but when trying to send binary data, I get the following error; error: no matching function for call to ‘qpid::client::Message::setData(std::string, unsigned int)’. When I use the call the void qpid::client::Message::setD