0

I am trying to calculate the size of the attachment in one of the service, i used below function "{fn:string-length($attachments)}" it will return the number of character, can any one tell how to calculate the size of the attachment in proxy service in oSb

sam
  • 101
  • 2
  • 13

1 Answers1

2

Not sure if this is possible with xquery or not.Another option is to use java callout activity in your proxy . Please refer this link to understand how to do it in java - bytes of a string in java?

Community
  • 1
  • 1
Habin
  • 792
  • 1
  • 11
  • 21
  • Thanks for your reply Habin, actually my requirement is to check for the $attachment size and check if $attachment is in Base64, if not then convert it. Well in proxy service when i traverse to the path $attachments/ctx:attachment/ctx:body/* i am not getting anything. Can you help me out here – sam May 16 '16 at 08:55