[nox-dev] gathering status of Openflow Switch

2011-06-18 Thread Min-Hyup KANG
Hi. allI would like to gather through pyswitch.py a little status information of flow in Openflow Switch(v.10)I think I should use Openflow protocol that can gather their some status of flow between OpenflowSwitch and NOX controller.so Is it possible with pyswitch.py ?or Should I write a new

Re: [nox-dev] Error in send a string using messenger component

2011-06-18 Thread kk yap
Hi Ricardo, You might want to add a length and type in front of the string. :) Regards KK On 18 June 2011 14:46, Ricardo Bennesby wrote: > Hi. > > I am writing component in C++ that uses messenger component. > > I have a client function that send a string to the own component. As > follows: >

[nox-dev] Error in send a string using messenger component

2011-06-18 Thread Ricardo Bennesby
Hi. I am writing component in C++ that uses messenger component. I have a client function that send a string to the own component. As follows: * void comp::sendMessageOtherAs(){ ClientSocket theSocket ("localhost", 2603 ); string request; request = "Test"; theSocket << request <