Forum Discussion

adriandc's avatar
adriandc
Occasional Contributor
12 years ago

Passing a steam as a parameter

Hi,

Would it be possible to pass a stream as a parameter to a Rest web service. If yes, any sample that I can look at.

I am new to SoapUI and do not know all the details

Thanks

6 Replies

  • Hi,

    What type of stream are you trying to pass as a parameter?

    We currently have an enhancement request open for HLS streaming.
  • adriandc's avatar
    adriandc
    Occasional Contributor
    Some thing like this way this way the web serivce expects

    Dim clientid As String
    clientid = 70
    Dim LoggedInUserID As String = 86
    Dim objMessage As New IronMQMessage
    objMessage.messages = New List(Of IronMQMessageFormat)
    Dim objMessageFormat As New IronMQMessageFormat
    objMessageFormat.body = "UserID:" & LoggedInUserID & ",ClientID:" & clientId
  • Hi,

    To be specific, what type of protocol are you using to pass the stream?
  • Hi,

    Based off the code snippet in previous post it looks like you are using Visual Basic protocol buffer?

    If my assumption is correct then let me know and I will create an enhancement request for this.
    Also please provide some information of how you intend on using this with SoapUI.


    Thanks.
  • adriandc's avatar
    adriandc
    Occasional Contributor
    Hi,

    Yes it is VB.net. I am planning to use SoapUI to send the stream and get a response. Instead of me writing a some code to make a ajax call to the web service I want to use SoapUI to test the web services and check the response.

    Specifically I am trying to test a service call that will be put on IornQueue - www.iron.io

    Thanks