ContributionsMost RecentMost LikesSolutionsRequest Attachment Size limited to 8 KB Hi All, I am building a virt in Service V Pro, where I use a groovy (dispatch) script to store request attachments to a file system (See below code snippet). When I send the request (multipart request), the file gets created but the input stream contents always limited to 8 KB. Even if i send an attachment greater than 8KB, the input stream saves only first 8 KB, thus making the file invalid. Any comments would be appreciated Code Snippet ------------------ //extract the attachment file def file = new File (filename) log.info (file.getAbsolutePath()) def attachment = attachments[0] def is = attachment.getInputStream() file.append(is) log.info("Attachment Size:" + attachment.getSize()) SOAP/JMS Virtualisation Hi, I have implemented JMS Virt Service using Service V and Hermes. However I would like to virtualise SOAP/JMS endpoints, especially in a same way as SOAP/HTTP to do the following: - Routing (Partial routing) i.e. Virt only few requests, others should be forwarded to real JMS service - Recording Has anyone virtualised SOAP/JMS services using Service V? If so, can you shed some light on this one? Re: How to configure XML datasource for Virts (Service V Pro) I have realised Service V doesn't support XML Datasource out of the box. Hence I have implemented it using BaseX (XML Database) and Groovy.. How to configure XML datasource for Virts (Service V Pro) Hi, I am wondering how can I use XML as a Datasource for Virts? In Ready API 1.9.0, the datasource types listed for Virts are: Excel File (seems to be CSV) Grid JDBC Data Connection Data Generator XML is not listed in the drop down list. SolvedHow to deploy to Virt Server using Maven Hi, I am looking at deploying a servicev virt to remote Virt Server using Maven, by following instructions provided in the below url: http://readyapi.smartbear.com/virtserver/using/maven The maven plugin (virtserver-maven-plugin) referenced in the above URL no longer seem to exist in SmartBear Maven Repository, which is, http://smartbearsoftware.com/repository/maven2/com/smartbear/ Can you tell me if I should be using a different maven plugin to deploy a virt? Thanks Panneer Re: Docker images for virt server Thanks for the response, will follow the instructions and let you know if we ran into issues. Docker images for virt server Hi We are going towards containerisation path and looking to use docker (in Linux). Just wondering if there is a docker image for Virt Server? If not, what are the other options for installing Virt Server under Red Hat Linux. SolvedMock/Virtualise only when real service is down Hi All, I am newbie to Service V Pro/Virtualization, currently working on a POC to virtualize one of the critical backend services. For our dev environment, we are planning to mock response, only when back-end service is down i.e. route always to real service at first and if the service returns a specific fault type, then overwrite with mock response. Can anyone guide me on how to implement the above using Service V Pro? Thanks Panneer Solved