Forum Discussion
Photo_G_84660
Nimbostratus
Sep 05, 2006VB .NET nodeDisable sub
Hi,
I am trying to code a disableNode sub-procedure in VB .NET, and I am getting this error:
"Value of type 'App_Based_Node_Handler.NodeAddress.CommonEnabledState' cannot be converted to '1-dimensional array of App_Based_Node_Handler.NodeAddress.CommonEnabledState'."
Here is the sub:
Sub disableNode()
Dim sNodeAddress = txtNodetoDisable.Text
Dim state As NodeAddress.CommonEnabledState
state = App_Based_Node_Handler.NodeAddress.CommonEnabledState.STATE_DISABLED
Dim configure = Node.set_session_enabled_state(sNodeAddress, state)
Along with the error, the compiler highlights the 'state' variable at the end of the last line, and I cannot seem to figure out what I am doing wrong.
Can anyone clarify this error for me?
Thanks in advance,
Scott H.
- The signature for LocalLB::Node::set_session_enabled_state() is as follows:
void set_session_enabled_state( in String[] node_addresses, in EnabledState[] states );
Dim node_addressess() as String = {sNodeAddress} Dim states() as NodeAdddress.CommonEnabledState = {state} Dim configure = Node.set_session_enabled_state(node_addresses, states)
- Photo_G_84660
Nimbostratus
Thanks Joe,Public Function disableNode() Dim node_addresses() As String = {sNodeAddress} Dim states() As NodeAddress.CommonEnabledState = _ {App_Based_Node_Handler.NodeAddress.CommonEnabledState.STATE_DISABLED} Dim configure = Node.set_session_enabled_state(node_addresses, states) End Function
- Not sure why you have the "Dim configure =" part of the line as the method doesn't return a value. Just remove it...
Public Function disableNode() Dim node_addresses() As String = {sNodeAddress} Dim states() As NodeAddress.CommonEnabledState = _ {App_Based_Node_Handler.NodeAddress.CommonEnabledState.STATE_DISABLED} Node.set_session_enabled_state(node_addresses, states) End Function
- Photo_G_84660
Nimbostratus
Got it. Thanks a million Joe! - Katherine_G_106
Nimbostratus
Thanks for the snippets, this just made my day!
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects