Hello!
I’m stumpped on something that should be pretty easy. I developed a web service in 2007 using Notes 7. Now I need to enhance it by adding a new element to the WSDL using Notes 8. My WSDL is based on a series of classes that I’ve defined in the Declarations of a Script Library that is utilized by my Web Service:
Public Class Application
Public acctNum As String
Public bankNo As String
Public branchNo As String
Public chkRoutingNo As String
Public id As String
Public type As String ' CHK/SAV
Public wireRoutingNo As String
End Class
Public Class ApplicationGroup
Public app() As Application
Public count As Integer
End Class
Public Class SetupRequest
Public appGroup As ApplicationGroup
End Class
I need to add a new element to the Application class:
Public acctCode As String
I’ve done that and saved the Script Library and the Web Service objects, but when I do “Show WSDL” in the Web Service object, my new element is not there.
Am I missing a step?
Thanks in advance for any help!