deeplink login constant

0
I still have the same problem with the login constant i have tried '', "" and ../ '' gives me this http://nlbmraweb3:91/link/test/''link/test/''link/test/''link/test/''link/test/''link/test/1 "" gives me this http://nlbmraweb3:91/link/test/''link/test/''link/test/''link/test/''link/test/''link/test/''link/test/''link/test/''link/test/''link/test/1 ../ gives me this http://nlbmraweb3:91/link/link/test/1 but also gives me a console warning of deeplink with name 'link' not found. So i think i need to go down the route of ../ but i don't no what to put. I am working with IIS 7.0
asked
1 answers
1

Hmm.. if empty is not accepted, just give it a space and change javasource/deeplink/StartDeeplinkJava.java line 285 from

if (loginLocation != null && !loginLocation.isEmpty()) {

to

if (loginLocation != null && !loginLocation.trim().isEmpty()) {
answered