tldnr: need a variation to allow "/" in parameter object on organization item;

When doing a "Content Package Conformance Test" I receve the following error when for the parameters attribute. This is a necessary attribute for the content to function, but will not validate as long as I have the "/" in there. I have tested the package on the SCORM cloud, and it loads and launches as intended, but I need to validate it as well. Is there a variation I could use that would maintain the "/" but allow it to be properly validated?

ERROR: [?first=0&dir=dir/subdir] does not adhere to the syntax defined by IMS CP 1.1.4 and SCORM for the "parameters" attribute

Variations Tried:
?dir=dir//subdir&first=0 //same error
?dir=dir\/subdir&first=0 //same error
?dir=dir\subdir&first=0 //same error
?dir=dir/subdir&first=0 //same error
?dir=dir⁄subdir&first=0 //invalidates the xml

Additionally Tried:

%3Ffirst%3D0%26wd%3Ddir%2Fsubdir //same error
?first=0&wd=dir%2Fsubdir //same error

link|improve this question

25% accept rate
feedback

2 Answers

Have you tried a url encoded version:

%3Fdir%3Ddir%2Fsubdir%26first%3D0

link|improve this answer
I've tried this: "?first=0&wd=dir%2Fsubdir", but it causes the javaApplet to fail. see error below – Lighthouse Keeper Feb 17 '11 at 17:04
also tried full urlencode as you suggested, but still receive the same error, appended these to the OP – Lighthouse Keeper Feb 17 '11 at 17:10
Sounds like it could be an error in the CTS. Have you submitted the problem to ADL? – Mike Rustici Feb 17 '11 at 17:55
not yet. I was trying to ensure it wasn't something I was screwing up first. – Lighthouse Keeper Feb 17 '11 at 18:00
feedback

solution NOT found:

use "%2F" in place of the slash.

edit: turns out this blows up java, so still looking for alternatives

java error:

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDR; InfoPath.2; .NET4.0C; .NET4.0E) Timestamp: Thu, 17 Feb 2011 17:03:18 UTC

Message: java.lang.Exception: java.lang.StringIndexOutOfBoundsException: String index out of range: -99
Line: 443
Char: 13
Code: 0
URI: file:///C:/ADL/SCORM_2004_3rd_Ed_CTS_V1.0.2_ST/TestSuite/contentpackage/ContentPackageInstructions.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.