Forum Post: RE: Network protocol/data error on REMEDY 8.1
There are various videos on the community site related to customization/parameterization and the following resolution might be useful: Troubleshooting Remedy applications which use a Security Token...
View ArticleForum Post: RE: Reusing login logout transactions in multiple scripts?
Hi, You have to put the code which you want to reuse in functions in a .bdh file. For example: LoginLogout.bdh --------------- dclfunc function FMyLogin begin // your code for login end...
View ArticleWiki Page: "HTTP: 500 - internal server error" returned when making a...
For Remedy versions 7.6.04 SP5, 8.1.00 SP1 and 8.8.00, the Mid-tier configuration property will come with a security token property, arsystem.securitytoken_enable=true , and when this is true, the...
View ArticleWiki Page: Troubleshooting Remedy applications which use a Security Token...
This advice applies to Silk Performer 15.0 (with no additional hotfixes applied) and earlier. Silk Performer supports a range of Remedy application versions, all of which are documented within the...
View ArticleForum Post: Requests not getting redirected to proper URL
Hi All, I have started working on Silk Performer tool from last 6 months, and stiIl learning Silk performer. I am working on one project where while recording script, one request is redirected to "...
View ArticleForum Post: RE: Requests not getting redirected to proper URL
Hi Check the referer header for this call in the recorded truelog, and add that referer into the script before the call using WebHeaderAdd function. That should make the call the same between record...
View ArticleForum Post: Parameterising system generated values
Hi Guys How do I parameterize system generated values such as security tokens etc in silk performer 15.0 Regards., Brian
View ArticleForum Post: RE: Parameterising system generated values
Hi Brian, This issue was resolved via a support incident. The security token was part of a server response so we were able to parse this value and replace the hard-coded values in the script with a...
View ArticleWiki Page: How to overwrite data from a specific column in an external data...
The BDF script below demonstrates how data from within a specific column from an external data file can be overwritten from within Silk Performer. The script first of all uses the FOpen / FWrite...
View ArticleForum Post: RE: Test run folders
Ha stupid me. Now I see it. Auto numbering now only works on the default suggested name, but not on any custom folder names. I will log a bug for that. Temporary workaround: Rename the workload.
View ArticleForum Post: use of functions
Hello All, I am relatively new to Silk Performer and I am soryy this could be a silly question to many of you. After going through the entire contents in the SP15 I could not understand about the...
View ArticleForum Post: RE: use of functions
Hi Arwin, The return statement would terminate the execution of a transaction or the simulation of the user executing the current transaction. For example, if you need to terminate the execution after...
View ArticleForum Post: Login
Hello, Am new to silk performer I have recorded a script with single user login function. After customizing the username and password when i execute the try script it is just picking the username and...
View ArticleForum Post: RE: Login
Hello Shiva, Have you created the data file of the passwords with per transaction? if yes then delete the customization in the code part and custoize the password again. when you create choose random...
View ArticleForum Post: RE: Login
I take that your password in the data file is not encrypted (i.e. clear text). Then you should not call Decrypt3DES().
View ArticleForum Post: Is it possible to send mails with attachments by SMTP functions set?
Hello, I have the requirement to send mails with attachments to a SMTP mail server. The attachments are jpg or png files. Is this possible with the SMTP functions set? I found the function...
View ArticleForum Post: RE: Is it possible to send mails with attachments by SMTP...
I believe you will have to send it as an MIME attachment. You will first need to convert it to MIME-encoded binaries in ASCII 128 format.
View ArticleForum Post: RE: Is it possible to send mails with attachments by SMTP...
You should be able to encode using WebBase64Encode function. Here's a detail on Base64 encoding: en.wikipedia.org/.../Base64
View Article