Forum Discussion

abolourian's avatar
abolourian
Occasional Contributor
15 years ago

Documentation for WsdlDataSinkTestStep

I need to add data to DataSink test step using Groovy script. So I ran the following code:

def dataSink = testRunner.testCase.testSteps['DataSink']
log.info dataSink.getClass().name

and got the following result: com.eviware.soapui.impl.wsdl.teststeps.WsdlDataSinkTestStep

Then I looked at soapUI API documentation (http://www.soapui.org/apidocs/index.html) to find WsdlDataSinkTestStep and couldn't find it. Please advise.

6 Replies

  • abolourian's avatar
    abolourian
    Occasional Contributor
    Hello?? Where is my "World Class Support" for "soapUI Pro exclusive forum" (referring to: http://www.eviware.com/Support/support-overview.html). Who am I relying to answer my questions for a paid version of soapUI? That support page also mentions:

    The support is included in the yearly software license fee. There are no extra support fees, neither initial nor when you use the support. The support is available via a soapUI Pro exclusive forum or via e-mail.


    Well, I haven't received any support for my questions yet. >:(

    Here's another class I cannot find in documentation: com.eviware.soapui.impl.wsdl.WsdlTestSuitePro
  • Hi!

    I'm sorry for the delayed response; unfortunately we don't publish the javadocs for the pro version classes yet. Let us know what you want to do in your scripts and we'll try to guide you along!

    best regards,

    /Ole
    eviware.com
  • abolourian's avatar
    abolourian
    Occasional Contributor
    One of the things I need to do is converting WsdlDataSourceTestStep.properties to a Map.

    I need to do a lot of other scripting and it's impossible to rely on a support forum with long delay responses for some trivial questions that I can find answers quickly by looking up javadocs. What's your plan on releasing javadocs for PRO version?

    Frankly I'm very disappointed with lack of support and documentation for such highly priced product.
  • Hi!

    we'll look into publishing the javadocs for the pro-classes for you. Regarding the properties conversion, I'm assuming you want to create a map that maps names to current values, which would be done as follows;

    def map = [:]
    dataSourceStep.properties.each { key, value -> map[key] = value.value }

    Does that work ok?

    regards,

    /Ole
    eviware.com
  • abolourian's avatar
    abolourian
    Occasional Contributor
    Wow Ole! That was quick turnaround. Thanks for providing the document and prompt response.