Adding New Element to Webservice

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!

Subject: Web service update: change WSDL first

We can convert a WSDL into a LotusScript interface, but that’s a one-way process. Creating an updated WSDL from your changes to the LotusScript code is not something we’ve even looked at supporting. You have to modify and re-import the WSDL. This will wipe out any changes you’ve made to the LS code, so save off a copy.