Recently, I configured WebMathematica in my system. I tested with inbuilt examples, all are working fine.
Basically, Helloworld program returns Date[] output. I tried with Dynamic wrapper around Date[], the corresponding code is below.
<msp:evaluate>
Dynamic[Date[]]
</msp:evaluate>
I restarted server, it's not working. It shows Dynamic[Date[]] as output. In the same way I tried Buttoninstead of Date, the corresponding code is below, it's also not working, it returns Mathematica code.
<msp:evaluate>
Button[Style["Click", Black, Bold,25], (MessageDialog["This is Tested by Grandhi..."]), ImageSize -> {180, 60}, Background -> LightGray]
</msp:evaluate>
I have 3 questions.
1.How can I fix this problem ?
2.where can I get good WebMathematica examples?
3.Do all Mathematica functions work in WebMathematica?
<msp:evaluate>will work,is itWebMathematicatag orHtmltag. If we createGUIelements throughHTMLor any scripting language.how canMathematicacode interacted with that..for that I seen inbuilt examples code,I didn't understood anything.I understood up to,calling one html page to another page.after that I didn't understood anything. – subbu May 29 '13 at 10:02Mathematica. After that we thought to develop web based Apps for that we are using Premier Service. I think it's free of charge. – subbu May 29 '13 at 10:31mspis, I think, a shortcut for mathematica server pages and formally used as an xml namespace in that tag. If you interested what this all means and how it is used you definitely should read some documentation. As powerful as webMathematica is: you need to learn some technology before you can do stuff thats more advanced than what the examples provide. If the docs that come with webMathematica don't cover your needs you might find more information when searching for documentation about JSP and XML/XHTML. – Albert Retey May 29 '13 at 13:13