Re: Get CLOB from JDBC Request Callable Statement

2014-03-21 Thread Deepak Shetty
Hi CLOB data is not supported by the current sampler as far as I remember - you need to write your own code (either extend the sampler or just create a java sampler that makes a JDBC call) On Fri, Mar 21, 2014 at 7:17 AM, Ryabtsev Vladimir wrote: > Hi, > > I'm calling stored procedure (Oracle) u

Re: Is it possible to connect to and query a database to use data in an HTTP request in JMeter?

2014-03-21 Thread ZK
Hi, you could group your JDBC requests inside a 'Transaction Controller' (Logic Controllers) and ensure the 'Generate Parent Sample' checkbox is ticked That would tidy things up for you ZK -- View this message in context: http://jmeter.512774.n5.nabble.com/Is-it-possible-to-connect-to-and-q

Get CLOB from JDBC Request Callable Statement

2014-03-21 Thread Ryabtsev Vladimir
Hi, I'm calling stored procedure (Oracle) using JDBC Request in Callable Statement mode and I need to access output parameter of this procedure which is of CLOB type. In simple Select statement I can define name of the special object ('Result variable name') which I can use to access the resu

Re: JMeter and Richfaces FileUpload on Flash mode

2014-03-21 Thread Flavio Cysne
Hi, although the solution below was not tested for Richfaces, neither for flash mode, it may solve the problem with JSF 2 and FileUpload component (at least worked for our team). Issue: When using JSF 2 and PrimeFaces FileUpload component, JMeter HTTP Request seem to fail the upload process,

Re: Performance of JSR223

2014-03-21 Thread sebb
On 21 March 2014 10:18, Ryabtsev Vladimir wrote: > According to documentation, JSR223 sampler provides improved performance from > compilation and caching in case scripting engine implements Compilable > interface. The only language with this interface mentioned in documentation > is Groovy. >

Re: Is it possible to connect to and query a database to use data in an HTTP request in JMeter?

2014-03-21 Thread ZK
Hi, //I seem to have resolved this by adding a Debug post processor and noticing the variable is actually set to 'LOCATION_CODE_1' rather than 'LOCATION_CODE'. //If I substitute ${LOCATION_CODE_1} into my HTTP sampler it seems to work. //Any ideas why this is the case? sorry my bad, that's

Performance of JSR223

2014-03-21 Thread Ryabtsev Vladimir
According to documentation, JSR223 sampler provides improved performance from compilation and caching in case scripting engine implements Compilable interface. The only language with this interface mentioned in documentation is Groovy. Do I understand right that JSR223/java is interpreted? Will