Hi,

Sure you can!

In BarcodePage, use the PageParameters to extract the code. If the code is there, show its associated content.
    StringValue codeValue = getPageParameters().get("code");
    if (!codeValue.isEmpty())
        ...

In your app init code, mount your page like this:
mountPage("/activate/#{code}", BarcodePage.class);

On 01/05/2013 12:07 PM, chrome1235 wrote:
Hi,

I want to integrate zxing application (barcode reader) to my web application
for android phones.

When user click an ajax button in a page,
the code will call zxing with a custom url (like:
"zxing://scan/?ret=http://mydomain.com/MyApp/{CODE}";),
then zxing can post or (get) to a generated url according to my parameters.

Can I handle this url (zxing's post url) at the same page?



Thanks.
Kemal.




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Get-data-from-External-application-tp4658441.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to