<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing questions tagged with webMathematica sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3177108" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2672853" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1886019" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2594233" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2391344" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2337912" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2281204" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/868653" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/380814" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1999108" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1879099" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1828923" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1670068" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1391661" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1300029" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1079114" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/989082" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/932597" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/593465" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/294688" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3177108">
    <title>Inserting a matrix in Mathematica Online</title>
    <link>https://community.wolfram.com/groups/-/m/t/3177108</link>
    <description>How do I insert a matrix in Mathematica Online? The documentation says it should be under the Insert menu, but it is not there in my Online session. &#xD;
&#xD;
Also, is there a good place that describes the Online interface for someone who is used to the desktop interface?&#xD;
&#xD;
Thanks.</description>
    <dc:creator>John Gore</dc:creator>
    <dc:date>2024-05-15T23:07:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2672853">
    <title>What&amp;#039;s the difference between Wolfram Mathematica and Wolfram One?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2672853</link>
    <description>I wanted to compare those two solutions, so I started a free trial for both of them. However, it looks like they&amp;#039;re completely the same. Wolfram Mathematica web opens the same website as Wolfram One web, and both of the desktop downloads download the same application.&#xD;
&#xD;
So what is the difference between those two? Are they just the same thing, but with different pricing models?</description>
    <dc:creator>Paul Zolotarevskiy</dc:creator>
    <dc:date>2022-10-26T12:43:35Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1886019">
    <title>How do I change output size before truncation from the Linux Terminal ?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1886019</link>
    <description>I recently installed Wolfram Mathematica in a instance in Google Cloud using GPUs and I&amp;#039;m running it inside Jupyter Notebook, Python 3, using Wolfram Client library. However, big outputs, like a 400,000 connections social network are being prevented from being shown:&#xD;
&#xD;
![Truncated][1]&#xD;
&#xD;
He is my code:&#xD;
&#xD;
    a1=list(a.iloc[:,1].astype(str))&#xD;
    a2=list(a.iloc[:,2].astype(str))&#xD;
    b=[i for i in list(a1)]&#xD;
    b2=[i for i in list(a2)]&#xD;
    punct=w1.Flatten(w1.StringCases(w1.CharacterRange(1, 65535), w1.PunctuationCharacter))&#xD;
    c1=w1.StringDelete(b,punct)&#xD;
    c2=w1.StringDelete(b2,punct)&#xD;
    edges=wlexpr(&amp;#039;f[x_,y_]:=CommunityGraphPlot[Graph[UndirectedEdge[x[[#]], y[[#]]] &amp;amp; /@ Range[Dimensions[x][[1]]]],FindGraphCommunities[Graph[UndirectedEdge[x[[#]], y[[#]]] &amp;amp; /@ Range[Dimensions[x][[1]]]]]]&amp;#039;);&#xD;
    h=w1.f(c1,c2);&#xD;
    path2 = &amp;#034;/home/rubens/Math/data2.jpg&amp;#034;&#xD;
    cr=session.evaluate(w1.Export(path2,h , &amp;#034;JPG&amp;#034;));&#xD;
    &#xD;
    import imageio&#xD;
    import matplotlib.pyplot as plt&#xD;
    from PIL import Image&#xD;
    &#xD;
    im1 = imageio.imread(&amp;#039;/home/rubens/Math/data2.jpg&amp;#039;) &#xD;
    plt.imshow(im1)&#xD;
    plt.show()&#xD;
&#xD;
I tried Show[] but it does not solve the problem. I noticed it&amp;#039;s possible to setup a maximum output before truncation and I guess this would solve my problem, but I don&amp;#039;t know how to do this using Linux terminal command line, given that Jupyter does not offer a Mathematica menu.&#xD;
&#xD;
Any ideas are welcome.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=doubt.png&amp;amp;userId=992056</description>
    <dc:creator>Rubens Zimbres</dc:creator>
    <dc:date>2020-02-23T19:14:01Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2594233">
    <title>Dialog box to read a cloud file in Mathematica Online</title>
    <link>https://community.wolfram.com/groups/-/m/t/2594233</link>
    <description>Good afternoon.&#xD;
&#xD;
I am an engineer that used Mathematica many many years ago during my Ph.D. Now I decided to try again and I ordered an annual subscription for Mathematica online.&#xD;
&#xD;
I wrote a little script that reads a file:&#xD;
&#xD;
    data=Transpose@Partition[BinaryReadList[&amp;#034;0077_1_20070101.BIN&amp;#034;,&amp;#034;UnsignedInteger16&amp;#034;],8];&#xD;
&#xD;
This is the first line.&#xD;
I would like to choose the correct file (in this case 0077_1_20070101.BIN) through a dialog window. Is it possible to choose a file from the Cloud Files directory?&#xD;
&#xD;
Thank you in advance and best regards.&#xD;
&#xD;
Bruno</description>
    <dc:creator>Bruno Vusini</dc:creator>
    <dc:date>2022-08-09T13:29:11Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2391344">
    <title>HTMLSelect gives a wrong ouput?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2391344</link>
    <description>I am using the bellow code. With opA or opD works but not with opB or opD. Perhaps because in the output B and C is used 10^-6! But why?. Also, in OpB and optC the menu reset to OptA .&#xD;
 &#xD;
![enter image description here][1]&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
    &amp;lt;%@ page language=&amp;#034;java&amp;#034;  %&amp;gt;&#xD;
    &amp;lt;%@ taglib uri=&amp;#034;/webMathematica-taglib&amp;#034; prefix=&amp;#034;msp&amp;#034; %&amp;gt;&#xD;
    &amp;lt;html&amp;gt;&#xD;
    &#xD;
    &amp;lt;head&amp;gt;&#xD;
    &amp;lt;title&amp;gt;TITULO&amp;lt;/title&amp;gt;&#xD;
    &amp;lt;link rel=stylesheet type=&amp;#039;text/css&amp;#039; href=&amp;#039;css/estilo1.css&amp;#039;&amp;gt;&#xD;
    &#xD;
    &amp;lt;/head&amp;gt;&#xD;
    &amp;lt;body bgcolor=&amp;#034;#ffffff&amp;#034; &amp;gt;&#xD;
    &#xD;
    &amp;lt;form name=&amp;#034;formulario&amp;#034; action=&amp;#034;biokmodfit2.jsp&amp;#034; method=&amp;#034;post&amp;#034;&amp;gt;&#xD;
    &#xD;
    &#xD;
    Choose one option: &#xD;
    &amp;lt;msp:evaluate&amp;gt;&#xD;
    HTMLSelect[{&amp;#034;OpA&amp;#034;,&amp;#034;OpB&amp;#034;,&amp;#034;OpC&amp;#034;,&amp;#034;OpD&amp;#034;}, {2.4*10^-5, 0.32*10^(-5), 2.1*10^-6, 4.2*10^-5}, &amp;#034;dcf&amp;#034;, SelectedValues -&amp;gt; {$$dcf}]&#xD;
    &amp;lt;/msp:evaluate&amp;gt;&#xD;
    Or&#xD;
    &amp;lt;INPUT TYPE=&amp;#034;TEXT&amp;#034; NAME=&amp;#034;dcfOptional&amp;#034; ALIGN=&amp;#034;LEFT&amp;#034; SIZE=&amp;#034;35&amp;#034; &#xD;
    VALUE=&amp;#034;&amp;lt;msp:evaluate&amp;gt;  MSPValue[$$dcfOptional,&amp;#034;0.0&amp;#034;] &#xD;
    &amp;lt;/msp:evaluate&amp;gt;&amp;#034;&#xD;
    /&amp;gt;&#xD;
    &amp;lt;INPUT TYPE=&amp;#034;checkbox&amp;#034; NAME=&amp;#034;dcfOptionalChbx&amp;#034; &amp;gt;&#xD;
    &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&#xD;
    &#xD;
    &amp;lt;br&amp;gt;&#xD;
    &#xD;
    &amp;lt;p class=&amp;#039;azulpeque&amp;#039; align=&amp;#039;center&amp;#039;&amp;gt;Push EVALUATE &amp;lt;br&amp;gt;&amp;lt;img src=&amp;#034;images/help.gif&amp;#034; width=&amp;#034;1%&amp;#034; heigth=&amp;#034;1%&amp;#034; border=&amp;#034;0&amp;#034;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&#xD;
    &amp;lt;center&amp;gt;&amp;lt;input type=&amp;#034;submit&amp;#034; name=&amp;#034;btnSubmit&amp;#034; value=&amp;#034;Evaluate&amp;#034;  &amp;gt; &amp;lt;/center&amp;gt;&#xD;
    &amp;lt;img name=&amp;#034;results&amp;#034; src=&amp;#034;images/results.gif&amp;#034; class=&amp;#034;icon&amp;#034; align=&amp;#034;absmiddle&amp;#034; border=&amp;#034;0&amp;#034; width=&amp;#034;100%&amp;#034;&amp;gt;&#xD;
    &#xD;
    &amp;lt;font class=&amp;#039;rojo&amp;#039;&amp;gt;&amp;lt;b&amp;gt; Input data &amp;lt;/b&amp;gt;&amp;lt;/font&amp;gt;&#xD;
    &amp;lt;msp:evaluate&amp;gt;&#xD;
    If[$$dcfOptionalChbx===&amp;#034;on&amp;#034;,$$dcf=$$dcfOptional];&#xD;
    HTMLTableForm[MSPBlock[{$$dcf}, {$$dcf}]]&#xD;
    &amp;lt;/msp:evaluate&amp;gt; &#xD;
    &amp;lt;/form&amp;gt;&#xD;
    &amp;lt;/body&amp;gt;&#xD;
    &amp;lt;/html&amp;gt;&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Captura2.JPG&amp;amp;userId=430661&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Captura1.JPG&amp;amp;userId=430661</description>
    <dc:creator>JOSÉ GUILLERMO SÁNCHEZ LEÓN</dc:creator>
    <dc:date>2021-10-23T17:25:12Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2337912">
    <title>Work productivity and accountability sessions</title>
    <link>https://community.wolfram.com/groups/-/m/t/2337912</link>
    <description>I want to set up a regular online meeting for productivity and accountability in our Mathematica projects.  I suggest the Pomodoro method: 25 minutes independent work on our own projects, 5 minute break to check in with each other, repeated 3-4x per session. Happy to discuss exact timings and frequency with anyone who&amp;#039;s interested!</description>
    <dc:creator>Milan Ter</dc:creator>
    <dc:date>2021-08-09T14:34:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2281204">
    <title>Graphics3D with tooltip doesn&amp;#039;t work on Mathematica online?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2281204</link>
    <description>7 years ago, Bianca Eifert gave this example for tooltip with Graphics3D :&#xD;
&#xD;
    Graphics3D[{Tooltip[Sphere[{0, 0, 0}], &amp;#034;one sphere&amp;#034;],&#xD;
      Tooltip[Sphere[{2, 0, 0}], &amp;#034;another sphere&amp;#034;]}]&#xD;
&#xD;
It does not work when I test it on Mathematica online.&#xD;
&#xD;
I wonder why.&#xD;
Thank you in advance for any help.</description>
    <dc:creator>Jean Maillet</dc:creator>
    <dc:date>2021-06-02T10:19:05Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/868653">
    <title>Set EdgeStyles on a Directed Graph?</title>
    <link>https://community.wolfram.com/groups/-/m/t/868653</link>
    <description>Hello, I wonder if anyone can help me understand how to use EdgeStyles on a directed graph.&#xD;
&#xD;
On an un-directed graph I can do the following:&#xD;
&#xD;
    Graph[{1&amp;lt;-&amp;gt;2,3 &amp;lt;-&amp;gt; 2,1&amp;lt;-&amp;gt;3}, EdgeStyle -&amp;gt; {1&amp;lt;-&amp;gt;2-&amp;gt; Directive[Thickness[0.01],Blue], 3 &amp;lt;-&amp;gt; 2 -&amp;gt; Directive[Thickness[0.005],Red], &#xD;
    1&amp;lt;-&amp;gt; 3 -&amp;gt; Directive[Thickness[0.02],Green]}]&#xD;
&#xD;
But on a directed graph the following does not work:&#xD;
&#xD;
    Graph[{1-&amp;gt;2,3 -&amp;gt; 2,1-&amp;gt;3}, EdgeStyle -&amp;gt; {1-&amp;gt;2-&amp;gt; Directive[Thickness[0.01],Blue], 3 -&amp;gt; 2 -&amp;gt; Directive[Thickness[0.005],Red], &#xD;
    1-&amp;gt; 3 -&amp;gt;  Directive[Thickness[0.02],Green]}]&#xD;
&#xD;
Can someone help me understand what I am missing here?&#xD;
&#xD;
Thank you,&#xD;
Grey</description>
    <dc:creator>Grey Nearing</dc:creator>
    <dc:date>2016-06-06T19:57:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/380814">
    <title>how to use this mathematica thing on a chromebook w/o using the online one</title>
    <link>https://community.wolfram.com/groups/-/m/t/380814</link>
    <description>i dont get what one to download or if there isnt one you can download</description>
    <dc:creator>Jack Lugliani</dc:creator>
    <dc:date>2014-10-30T06:12:50Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1999108">
    <title>Create a tree menu in webMathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/1999108</link>
    <description>At present I have in webMathematica a Menu like this:&#xD;
&#xD;
I have only a box where the user can choose {&amp;#034;A1&amp;#034;, &amp;#034;A2&amp;#034;,  &amp;#034;B1&amp;#034;, &amp;#034;B2&amp;#034;, &amp;#034;B3&amp;#034;,&amp;#034;C1&amp;#034;,&amp;#034;C2&amp;#034; }&#xD;
I apply the following syntax&#xD;
&amp;lt;msp:evaluate&amp;gt;&#xD;
HTMLSelect[{&amp;#034;A1&amp;#034;, &amp;#034;A2&amp;#034;,  &amp;#034;B1&amp;#034;, &amp;#034;B2&amp;#034;, &amp;#034;B3&amp;#034;,&amp;#034;C1&amp;#034;,&amp;#034;C2&amp;#034; }, {&amp;#034;av1&amp;#034;,&amp;#034;av2&amp;#034;, &amp;#034;bv1&amp;#034;, &amp;#034;bv2&amp;#034;,&amp;#034;bv3&amp;#034;, &amp;#034;cv1&amp;#034;, &amp;#034;cv2&amp;#034;}}, &amp;#034;lambda&amp;#034;, SelectedValues -&amp;gt; {$$lambda}]&#xD;
&amp;lt;/msp:evaluate&amp;gt;&#xD;
&#xD;
I will prefer to divide the above box in two boxes&#xD;
&#xD;
Box1-&amp;gt; The user can choose {A or B or C}&#xD;
Box2-&amp;gt; If in Box1 it is chosen A, then it shows {A1, A2},  If it is chosen B, then it shows {B1,B2, B3},  If it is chosen C, then it shows {C1,C2}, &#xD;
&#xD;
How can it be done?&#xD;
&#xD;
&#xD;
Guillermo</description>
    <dc:creator>JOSÉ GUILLERMO SÁNCHEZ LEÓN</dc:creator>
    <dc:date>2020-06-09T07:14:09Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1879099">
    <title>webMathematica: Avoid reset the input in a menu with different options?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1879099</link>
    <description>In the below jsp file the user chooses between 3 options: A, B, C. When the menu is evaluated the output is fine, but the menu reset to the initial state. For instance: If I choose B, and evaluate the ouput is B (it is OK), but the input menu resest to A,  how could I get that it stays in my last election (B)?&#xD;
&#xD;
    &amp;lt;%@ page language=&amp;#034;java&amp;#034;  %&amp;gt;&#xD;
    &amp;lt;%@ taglib uri=&amp;#034;/webMathematica-taglib&amp;#034; prefix=&amp;#034;msp&amp;#034; %&amp;gt;&#xD;
    &#xD;
    &amp;lt;html&amp;gt;&#xD;
    &#xD;
    &amp;lt;form name=&amp;#034;fest&amp;#034; action=&amp;#034;test.jsp&amp;#034; method=&amp;#034;post&amp;#034;&amp;gt;&#xD;
    &amp;lt;body&amp;gt;&#xD;
    Select a option:  &#xD;
    &#xD;
    &amp;lt;SELECT NAME=&amp;#034;element&amp;#034; SIZE=&amp;#034;1&amp;#034;&amp;gt;&#xD;
    &amp;lt;OPTION VALUE=&amp;#034;OptionA&amp;#034;&amp;gt;A&#xD;
    &amp;lt;OPTION VALUE=&amp;#034;OptionB&amp;#034;&amp;gt;B&#xD;
    &amp;lt;OPTION VALUE=&amp;#034;OptionC&amp;#034;&amp;gt;C&#xD;
    &amp;lt;/SELECT&amp;gt;&#xD;
    &amp;lt;br&amp;gt;&#xD;
    &amp;lt;br&amp;gt;&#xD;
    &amp;lt;msp:evaluate&amp;gt;&#xD;
    MSPBlock[$$element,$$element ]&#xD;
    &amp;lt;/msp:evaluate&amp;gt;&#xD;
    &amp;lt;input type=&amp;#034;submit&amp;#034; name=&amp;#034;btnSubmit&amp;#034; value=&amp;#034;Evaluate&amp;#034; &amp;gt; &#xD;
    &#xD;
    &amp;lt;/body&amp;gt;&#xD;
    &amp;lt;/html&amp;gt;</description>
    <dc:creator>JOSÉ GUILLERMO SÁNCHEZ LEÓN</dc:creator>
    <dc:date>2020-02-15T16:41:34Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1828923">
    <title>Show an output in a new webPage in webMathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1828923</link>
    <description>webMathematica: How show an output in a new webPage?&#xD;
 e.g. In  https://library.wolfram.com/webMathematica/Mathematics/Expand.jsp&#xD;
![enter image description here][1]&#xD;
How show the result in a new webpage.&#xD;
&#xD;
The code of the Expand.jsp example can be found in. &#xD;
https://library.wolfram.com/webMathematica/scripts/GetForm.jsp?script=Mathematics/Expand.jsp&#xD;
I will apprediate if you modify it to obtain the output in a new  webpage.&#xD;
 &#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=example.JPG&amp;amp;userId=430661</description>
    <dc:creator>JOSÉ GUILLERMO SÁNCHEZ LEÓN</dc:creator>
    <dc:date>2019-11-21T13:02:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1670068">
    <title>webMathematica in Safari under macOS Mojave: Unsupported plug-in for 3D</title>
    <link>https://community.wolfram.com/groups/-/m/t/1670068</link>
    <description>On a localhost installation of webMathematica (with Mathematica 12.0 as engine) under macOS Mojave 10.14.4, and using tomcat 9.0.1, I can run the supplied examples *except* those that create 3D graphics, e.g., &amp;#034;Live 3D Plotting&amp;#034; and &amp;#034;Polyedron Explorer&amp;#034;.&#xD;
&#xD;
When in Safari I press a button to do an evaluation, etc. for one of these 3D graphics apps, I get an &amp;#034;Unsupported Plug-in&amp;#034; error where the 3D graphic should appear.&#xD;
&#xD;
What plug-in would this be, and how can the error be fixed?</description>
    <dc:creator>Murray Eisenberg</dc:creator>
    <dc:date>2019-04-26T19:49:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1391661">
    <title>Get Mathematica Online usage and access?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1391661</link>
    <description>Hello,&#xD;
My name is Shailesh. I have just purchased the Mathematica Annual subscription for Premium Service Plus package. It is supposed to include the Mathematica Online usage and access. However, I am not able to use the platform, not able to create notebooks etc. Please help.&#xD;
&#xD;
Regards,&#xD;
Shailesh</description>
    <dc:creator>Shailesh Chiplunkar</dc:creator>
    <dc:date>2018-07-25T12:23:45Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1300029">
    <title>Obtain a Plot3D in webMathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1300029</link>
    <description>Hello friends&#xD;
&#xD;
Can any body give me an example to represent a graphics 3D (using Plot3D) in webMathematica?&#xD;
&#xD;
I copied the file Plot3D included in webMathemaica documentantion&#xD;
(https://reference.wolfram.com/webMathematica/tutorial/BasicExamples.html )&#xD;
 &#xD;
http://oed.usal.es/webMathematica/Examples/Plot3DLive.jsp , It worked some time ago (years) but now it does´t work&#xD;
&#xD;
I realize at http://library.wolfram.com/webMathematica/Graphics/Plot3D.jsp includes an example of Plot3D but a package called Cluster whose code is not shown is requiered .&#xD;
&#xD;
Guillermo</description>
    <dc:creator>JOSÉ GUILLERMO SÁNCHEZ LEÓN</dc:creator>
    <dc:date>2018-03-11T11:21:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1079114">
    <title>Get tomcat servlet info in webMathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1079114</link>
    <description>Anyone know how to fetch the current webMathematica kernel ID number (e.g. {0,1,2,3...} as reported by Resources/Tools/KernelMonitor.jsp) from within my webMathematica code.  I can use $ProcessID to get a UNIX PID, but I&amp;#039;d prefer to have the Kernel ID associated with that PID.&#xD;
&#xD;
Also, I&amp;#039;d like to know how to fetch the current tomcat servlet ID from within webMathematica.  Any idea how to do this?  This is the value logged as &amp;#039;%t&amp;#039; in the log4j logging package used by tomcat (e.g. &amp;#039;http-bio-8080-exec-4&amp;#039;) when running webMathematica transactions.&#xD;
&#xD;
Thanks!</description>
    <dc:creator>Jim Van Riper</dc:creator>
    <dc:date>2017-05-01T17:25:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/989082">
    <title>Create an online version of a desktop WL-based puzzle game?</title>
    <link>https://community.wolfram.com/groups/-/m/t/989082</link>
    <description>Hello. I wrote the code for a puzzle game. It&amp;#039;s written in a notebook that I would like to share on the internet:&#xD;
&#xD;
    game[] := &#xD;
      Dynamic[DynamicModule[{pt = {0, 0}}, &#xD;
        Magnify[EventHandler[&#xD;
          ClickPane[Dynamic@Graphics[display[]], (pt = #) &amp;amp;], &#xD;
            {&amp;#034;MouseClicked&amp;#034; :&amp;gt; clicks$manager[pt[[1]], pt[[2]]]}], 7]]];&#xD;
&#xD;
display[] calls a Graphics[...] user interface. There is a &#xD;
&#xD;
    {background$color,Rectangle[{0,0},{1024,1024}]} &#xD;
&#xD;
background and images appear in top of it. `clicks$manager[x,y]` triggers actions depending on what is currently displayed by the UI. `game[]` is the single-line input I shift-enter to begin playing the game.&#xD;
&#xD;
When I shift-enter the code, the game imports the images that will be used by the UI from &amp;#034;path/images/image01.jpg&amp;#034;, &amp;#034;path/images/image02.jpg&amp;#034;, ... . All images a stored on my computer.&#xD;
&#xD;
The game is single player: one vs the AI. The AI has a few difficulty levels. One level calls a log of all the previous games to be able to pick the best decisions. This database is actually only a table written in a log.txt file stored on my computer. At the end of each game, the log is exported to &amp;#034;path/log/log.txt&amp;#034;. At the beginning of each game, log.txt is imported from &amp;#034;path/log/log.txt&amp;#034;&#xD;
&#xD;
My question is from that point, what do I need to do to share this game on the internet?&#xD;
I&amp;#039;d like to have a webpage that starts to display the UI at once.&#xD;
I consider webmathematica to let anyone, not only Mathematica users, have access to my UI.&#xD;
Is that the only option?&#xD;
If yes, where will I put the notebook, the images and the log.txt that the game requires?&#xD;
What modification will I have to make to the code?&#xD;
Am I sure that I will be the only one to have access to the log.txt file?&#xD;
Are there examples of websites for puzzle games made by amateurs that are powered by webmathematica? (I googled it but I can only find www.wolfram.com pages)&#xD;
&#xD;
Thank you.</description>
    <dc:creator>Dominic Biron</dc:creator>
    <dc:date>2017-01-03T13:13:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/932597">
    <title>Deploying interactive Notebooks or CDFs to an existing website?</title>
    <link>https://community.wolfram.com/groups/-/m/t/932597</link>
    <description>I have a website that I created with Go Daddy and deployed on the web via Google.&#xD;
&#xD;
I would like to embed some interactive Mathematica calculation capabilities and graphics into the site&amp;#039;s webpages. I have several notebooks and CDFs that will be of interest to my website visitors as-well-as a customized package and palette that I might also want to use with the site&amp;#039;s calculations.&#xD;
&#xD;
What is the best way to go about doing this? Which Wolfram product should I utilize (webMathematica, Wolfram Cloud, Mathematica Online, etc) and how do I actually do it? Should I first convert my interactive notebooks into CDF&amp;#039;s or use the notebooks as is? Website building is not my area of expertise.&#xD;
&#xD;
Thanks for your assistance!&#xD;
&#xD;
Kerry</description>
    <dc:creator>Kerry Litvin</dc:creator>
    <dc:date>2016-10-02T02:06:07Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/593465">
    <title>WebMathematica having issues on Windows</title>
    <link>https://community.wolfram.com/groups/-/m/t/593465</link>
    <description>Hi,&#xD;
&#xD;
I followed the guide to install under tomcat but a error &amp;#034;Front End Error : Export String Failed &amp;#034; is showing up for all the images returned by MSPShow and any other packages. I did set the flags KernelExecutable and FrontEndExecutable to MathKernel path but no luck. Any solutions?&#xD;
&#xD;
&#xD;
It works fine for other person on mac osx with same configuration.&#xD;
&#xD;
&#xD;
Regards&#xD;
Gautam</description>
    <dc:creator>Gautam ANAND</dc:creator>
    <dc:date>2015-10-23T10:29:06Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/294688">
    <title>WebMathematica for Mathematica V10 (Yes!)</title>
    <link>https://community.wolfram.com/groups/-/m/t/294688</link>
    <description>Does anyone know when webMathematica will be updated to work with version 10?</description>
    <dc:creator>Rodrigo Murta</dc:creator>
    <dc:date>2014-07-15T01:24:06Z</dc:date>
  </item>
</rdf:RDF>

