Forum Discussion

M_Chris_177125's avatar
M_Chris_177125
Icon for Nimbostratus rankNimbostratus
Nov 24, 2014

XML Format for set_member_session_enabled_state

I am trying to get the Set_Member_Session_State to work using SoapUI with the following XML:


   
   
      
         
            /Common/DCO_443_POOL
         
         
            
                
                    /Common/VWIATA01
                    443
                
            
         
         
            
                
                    STATE_ENABLED
                
            
           
      
   

But I get a failure every time stating:

SOAP-ENV:Server
Cannot convert a struct to a string.

Any ideas where I am going wrong here guys? All suggestions much appreciated.

2 Replies

  • As the tags suggest, surely this needs to be an IP address, not text:

    /Common/VWIATA01
    
  • Your enclosing item elements in the 2-d array do not specify that it's an array it contains. Give this a shot:

    
      
        
          
            /Common/DCO_443_POOL
          
          
            
              
                443
                10.10.10.10
              
            
          
          
            
              STATE_ENABLED
            
          
        
      
    
    

    Hope this helps...

    -Joe