Search results

  1. R

    Internet explorer windows renders small

    did you resolve this? I have the exact same issue.
  2. R

    Solved How to use the 'Extract Regex Values' action of Utility - Strings

    this should pull out a date, assuming it is always in DD/MM/YYYY format \d{2}\/\d{2}\/\d{4}
  3. R

    Download File via HTTP

    What format is the response you get back from the endpoint? Is it just raw text that you want to save as a .txt file? If so you can use the utility action to write it to a file to save it down. Using the 'file url' input is only relevant when sending a file to the API, not for a GET request.
  4. R

    Not able to read particular outlook email using subject filter in Production Server

    We always get this issue. As a result, we always open Outlook at the start of the process & keep in minimised throughout. Normally use a batch file to open it minimised with this text start /min "" "C:\Program Files (x86)\Microsoft Office\Office15\OUTLOOK.EXE" /profile <OUTLOOK PROFILE GOES HERE>
  5. R

    ServiceNow API Call

    Hi Shane, based on the error you're getting (HTTP Status Code: 407) this is because Proxy Authentication is required. I had a similar issue trying to use Blue Prism's built in Web Service functionality. I eventually gave up and just use the standard Utility-HTTP object to form my HTTP request...
  6. R

    How to use filter collection utility as i need to compare two dates.

    hi Aditya, Yes the problem is that you're trying to perform a calculation 2 dates but one is a string/text. On the basis you're using an undefined collection, the way around this would be to cast [InputFileDetails.PTD] to a data item in your process with a Date format: create a data item e.g...
  7. R

    HTTP Request: Object reference not set to an instance of an object.

    Hi all, Wonder if anyone can help.. I've created a process that retrieves request information, formats into SOAP XML message and POSTs to an API to create a case on the target application using the Utility - HTTP object. The API requires client certificate authentication & as such I load the...
  8. R

    Outlook VBO - Move Mail creating copy of email

    Hi all, I have an issue when using the MS Outlook Email VBO, specifically the Move Single Mail action. I'm trying to move an email from one subfolder to another and it is creating a copy of the email - not moving it. If i do it manually in Outlook (drag drop) it works fine but with the VBO...
  9. R

    Multipart form data

    Did you resolve this? It is possible just using the Utility HTTP request as I've done it before. As long as you are: sending a HTTP POST request have the content type and boundary headers set format the body of the API call correctly & include the document data Here's a basic example of...
  10. R

    Blue Prism Environment Variables - using inside another Environment Variabl

    You can't do this within the EV itself unfortunately.Without knowing the detail of your process it's hard to say but can you not manage use of these EVs from the process in a way that means you can still just change the one and it carries on working. e.g. in your process you use...
  11. R

    Blue Prism: Registration of new Resources is disabled

    There is a setting within System manager that in your case is switched off. You'll need to switch it on to get around the error message,
  12. R

    Multipart form data

    You should be able to do this using the Utility-HTTP object. Should just be a case of specifying the correct headers and body. Do you have any more info on the request you're trying to make?
  13. R

    Can't get around decision stage false evaluation

    Looks on the face of it that you're decision stage is expecting a NewLine() in between those 2 sentences but in the data item there isn't one. Wrapping both in a Trim() may be more robust with this too.
  14. R

    Unable to click on Link from a Dynamic Path

    Hmm strange... Can you send a screenshot of inside your navigate stage? Another option may be to spy the link using a different spy method, e.g. AA or UIA modes.. but hopefully shouldn't need to do that
  15. R

    Start process from power shell, Trial Version of Blue Prism

    There is a dbconn flag to pass as a parameter. I'd recommend accessing the help section with blue prism (press F1) and search for 'command line'. It gives full documentation on how to run a process from command line
  16. R

    Unable to click on Link from a Dynamic Path

    Are you getting an error message? or is the navigate stage successfully completing In Blue Prism but not actually clicking the link?
  17. R

    BluePrim Cannot Recognize Font - Read Text with OCR

    Is there a reason that you must use OCR? Using 'recognise text' will likely be more robust.
  18. R

    Unable to match any windows with the query terms after implementing wait stage in Object studio

    Hi there, first thing I notice is that you have the Timeout from your wait stage going into the Write stage which isn't correct, it should be throwing an exception. I suspect the issue is that the wait stage is timing out, i.e. it's not finding the 'CostCenter' element but then still attempting...
  19. R

    BluePrim Cannot Recognize Font - Read Text with OCR

    Hi, are you trying to recognise a scanned image? If so, you should expect some inaccuracy from Read Text with OCR. If you are trying to use Surface Automation to recognise font on an application for instance you should use 'Recognise text' instead. This will match pixel for pixel against the...
  20. R

    Isolate date with Regex

    Hi, Assuming the date is always in that format, i.e. Month name > space > 1 or 2 numbers for Day > comma > space > 4 digit year ....This regex should work: (January|February|March|April|May|June|July|August|September|October|November|December) [0-9]{1,2}, [0-9]{4} Rich
Top