1

I have an API that returns URL that render an image from Adobe Scene7. The API is doubling up, or repeating, the URL in the xml return and is causing parsing issues in my presentation. Is there a technical term for this repeated URL? I need to know how to report this to my developers.

Here is an example, in the url can see where the protocol starts and repeats the exact same URL...

      <d1p1:ProductImageUrl>http://s7d7.scene7.com/is/image/BBE004?&op_colorize=0f5196http://s7d7.scene7.com/is/image/BBE004?&op_colorize=0f5196</d1p1:ProductImageUrl>
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
EMAW2008
  • 289
  • 2
  • 15

1 Answers1

1

I think the technical term for this is "invalid URL".

JimmyJames
  • 1,356
  • 1
  • 12
  • 24
  • I agree, I would report it as an invalid URL and provide the exact string so they can see what the unexpected result is – Taegost Jan 05 '16 at 19:29
  • that works. just didn't know if there was some term for it that i wasn't finding in a google search. – EMAW2008 Jan 05 '16 at 19:34