<?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 any discussions tagged with webMathematica sorted by most likes.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/294688" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1884517" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/613588" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/71578" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/908444" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/173752" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/206834" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/309979" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/107541" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/89641" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/593465" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/517557" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/471455" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2672853" />
        <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/1828923" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1391661" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/566053" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/542622" />
      </rdf:Seq>
    </items>
  </channel>
  <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>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1884517">
    <title>Running Wolfram Mathematica inside Jupiter Notebook in Google Cloud + GPUs</title>
    <link>https://community.wolfram.com/groups/-/m/t/1884517</link>
    <description>I am a Data Scientist working in a startup in Brazil. Recently I was working with Social Networks in Python using networkx library to analyse posts from a given hashtag for our client. However, I was completely aware of the additional functionalities of Wolfram Mathematica. Take the following picture as an example, done with networkx, 100,000 people:&#xD;
&#xD;
![Social Network Emotions Connections][1]&#xD;
&#xD;
It&amp;#039;s an interesting perspective, but adds little value to generate strategic insights for our clients, given that we need to zoom it to analyze details of this network. In my previous experience of Wolfram Mathematica, I was able to use some reasoning coming from cellular automata interactions to map, track people of interest (blue circle), and watch the evolution of mood (color), number of connections (size of circle) in a social network:&#xD;
&#xD;
![Evolution of Mood][2]&#xD;
&#xD;
Besides, one can use Mathematica&amp;#039;s features of finding communities, coloring them and even highlight people of interest when passing the mouse over the social network and also speaking their names:&#xD;
&#xD;
![Communities][3]&#xD;
&#xD;
More than that, you can highlight communities and check the number of connections of each individual:&#xD;
&#xD;
![Communities Two][4]&#xD;
&#xD;
So, it&amp;#039;s clear that Wolfram Mathematica is way ahead of networkx. However, I was dealing with a drawback: if you choose to plot more than 10,000 connections in Mathematica, that can take some time. And time is what you don&amp;#039;t have in a startup. So, I started wondering how I could use GPUs with Wolfram Mathematica. One way it&amp;#039;s to use webMathematica, installing Java and Apache Tomcat in a cloud instance. However, I was told one can also use Wolfram Client Python library and run Mathematica in a Python notebook.&#xD;
&#xD;
So, I will present how I was able to run Mathematica inside a Jupyter notebook located in a Google Cloud instance with 8 V100 GPUs. My co-worker, Gustavo Gouvea, also put efforts in this solution.&#xD;
&#xD;
First of all, go to Google Cloud Platform (GCP) Compute Engine and select Create Instance in a given region. Choose your CPUs, Memory, GPUs and regarding the boot disk, I used Debian GNU/Linux with Anaconda, PyTorch and CUDA already installed, as we also work with Deep Learning and NLP.&#xD;
&#xD;
After that, you need to configure Jupyter in order to be able to open it in the local browser, by doing the following:&#xD;
&#xD;
    ipython&#xD;
    from IPython.lib import passwd&#xD;
    passwd()&#xD;
&#xD;
Now that you created the password, you are going to save &amp;#034;sha1:49b8799c22...&amp;#034;&#xD;
Then you will edit Jupyter configuration file (use sudo or chmod -R 777 /home/anaconda3):&#xD;
&#xD;
    sudo vi ~/.jupyter/jupyter_notebook_config.py&#xD;
&#xD;
Add (type &amp;#034;i&amp;#034;) these line of code:&#xD;
&#xD;
    c=get_config()&#xD;
    c.NotebookApp.password =  paste your sha1 here&#xD;
    c.IPKernelApp.pylab = &amp;#039;inline&amp;#039;&#xD;
    c.NotebookApp.ip =  &amp;#034;*&amp;#034; or 0.0.0.0&#xD;
    c.NotebookApp.open_browser = False&#xD;
&#xD;
Go to GCP VPC and create a static IP for your instance, SSH into it.&#xD;
&#xD;
So, to start Jupyter notebook you will need to run:&#xD;
&#xD;
    jupyter notebook&#xD;
&#xD;
![Jupyter][5]&#xD;
&#xD;
Now you will access Jupyter in the following address:&#xD;
&#xD;
http://http://55.100.30.200:8888/&#xD;
&#xD;
![Jupyter 2][6]&#xD;
&#xD;
That will allow you to run Python notebooks in Jupyter. Now Mathematica. Get the mathematica .sh file:&#xD;
&#xD;
    sudo wget link_to_mathematica.sh&#xD;
&#xD;
To install Mathematica run in another SSH session (terminal window):&#xD;
&#xD;
    sudo bash  link_to_mathematica.sh&#xD;
&#xD;
Ok, you installed Mathematica. Now run:&#xD;
&#xD;
    math&#xD;
&#xD;
This command will ask for your Activation key and Password. After providing them, Mathematica notebook starts in the command line&#xD;
&#xD;
![Mathematica running][7]&#xD;
&#xD;
**Important:** You must run Mathematica (&amp;#034;math&amp;#034;) **before** you open Jupyter Notebook.&#xD;
&#xD;
Now that you&amp;#039;ve opened Mathematica in the command line with one SSH and after that Jupyter Notebook in other SSH, access the web address, port 8888, create a new Python 3 notebook and install wolframclient library:&#xD;
&#xD;
![pip install][8]&#xD;
&#xD;
Now you can run your Mathematica scripts with backup of how many GPUs you need:&#xD;
&#xD;
![NVIDIA-SMI][9]&#xD;
&#xD;
    from wolframclient.language import wl as w1&#xD;
    from wolframclient.language import wlexpr&#xD;
    from wolframclient.evaluation import WolframLanguageSession&#xD;
    session = WolframLanguageSession(&amp;#039;/usr/local/Wolfram/Mathematica/12.0/Executables/MathKernel&amp;#039;)&#xD;
    import numpy as np &#xD;
    import imageio&#xD;
    import matplotlib.pyplot as plt&#xD;
    from PIL import Image&#xD;
&#xD;
![Output][10]&#xD;
&#xD;
In bird&amp;#039;s eye:&#xD;
&#xD;
![Overview][11]&#xD;
&#xD;
![enter image description here][12]&#xD;
&#xD;
The only point is that you won&amp;#039;t have access to all Mathematica functionalities, as Manipulate, Mouse Over and the display of some images when output is truncated. My guess is that init.m config file must be adjusted to increase output size before truncation (in the command line) :&#xD;
&#xD;
![GraphPlot][13]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Easter0.PNG&amp;amp;userId=992056&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=0.jpeg&amp;amp;userId=992056&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=01.png&amp;amp;userId=992056&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=02.png&amp;amp;userId=992056&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=2918jupy.png&amp;amp;userId=992056&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=jupyter.png&amp;amp;userId=992056&#xD;
  [7]: https://community.wolfram.com//c/portal/getImageAttachment?filename=pp.png&amp;amp;userId=992056&#xD;
  [8]: https://community.wolfram.com//c/portal/getImageAttachment?filename=pip.png&amp;amp;userId=992056&#xD;
  [9]: https://community.wolfram.com//c/portal/getImageAttachment?filename=nvidia.png&amp;amp;userId=992056&#xD;
  [10]: https://community.wolfram.com//c/portal/getImageAttachment?filename=py.png&amp;amp;userId=992056&#xD;
  [11]: https://community.wolfram.com//c/portal/getImageAttachment?filename=bird.png&amp;amp;userId=992056&#xD;
  [12]: https://community.wolfram.com//c/portal/getImageAttachment?filename=sss.png&amp;amp;userId=992056&#xD;
  [13]: https://community.wolfram.com//c/portal/getImageAttachment?filename=issues.png&amp;amp;userId=992056</description>
    <dc:creator>Rubens Zimbres</dc:creator>
    <dc:date>2020-02-21T00:39:03Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/613588">
    <title>For Beginners: A book (or two) to learn the Wolfram Language</title>
    <link>https://community.wolfram.com/groups/-/m/t/613588</link>
    <description>Since there are many folks on this forum that are new to using Mathematica/WolframLanguage I&amp;#039;d suggest that each order a copy of Stephen Wolfram&amp;#039;s soon-to-be-released (December 7 2015)  &amp;#034;An Elementary Introduction to the Wolfram Language&amp;#034;:&#xD;
&#xD;
[http://www.amazon.com/Elementary-Introduction-Wolfram-Language/dp/1944183000/][1]&#xD;
&#xD;
though I haven&amp;#039;t read it yet, there is a clear need for a tutorial that helps beginning users &amp;#034;start right&amp;#034; and avoid the many issues that arise by simply diving in without a helping hand to get the basics in place.&#xD;
&#xD;
Also another excellent book (but which assumes a certain amount of exposure to scientific, engineering and mathematical subjects but no knowledge of *Mathematica* and very little if any of programming in general) is Paul Wellin&amp;#039;s &amp;#034;Programming with Mathematica®: An Introduction&amp;#034;, which I have read. &#xD;
&#xD;
[http://www.amazon.com/Programming-Mathematica-Introduction-Paul-Wellin/dp/1107009464/][2] &#xD;
&#xD;
So, beginners, get a couple of good introductions to Mathematica and dive in to learning the language!&#xD;
&#xD;
  [1]: http://www.amazon.com/Elementary-Introduction-Wolfram-Language/dp/1944183000/&#xD;
  [2]: http://www.amazon.com/Programming-Mathematica-Introduction-Paul-Wellin/dp/1107009464/</description>
    <dc:creator>David Reiss</dc:creator>
    <dc:date>2015-11-14T17:09:12Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/71578">
    <title>WebMathematica users active here?</title>
    <link>https://community.wolfram.com/groups/-/m/t/71578</link>
    <description>Hi all, just checking in to see if there are any other developers on the web here!</description>
    <dc:creator>Bjorn Cole</dc:creator>
    <dc:date>2013-07-24T15:00:15Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/908444">
    <title>[WSSA16] Astronomy Club Scheduler</title>
    <link>https://community.wolfram.com/groups/-/m/t/908444</link>
    <description>Abstract&#xD;
=======&#xD;
&#xD;
Have you ever thought which place could be the best for sky observation? When should you enjoy clear sky? A lot people like astronomy and usually they observe astronomical objects using telescopes or camera. Star observers and photographers should know the importance of the clear sky during an observation of astronomical objects such as the moon. The moon is the brightest object in the sky and it is the main reason why  I started my  project with creating an astronomical  web program which will show the weather forecast  by comparing it with other regions in a chosen country and also the moon phases for the next week. Firstly, users will get an opportunity to observe the moon from their window or in the parks near to their home. Secondly, they will get information about regions where cloud density is the lowest. Finally, users will know the moon phases for the next week so they can use it for an observation. In this case it becomes easy to observe astronomical objects without having problems with the cloudy sky and the location choice.&#xD;
&#xD;
Table of Context&#xD;
--------------------&#xD;
&#xD;
 -  **Introduction to Astronomy Club Bot program**&#xD;
 -  **Searching for Wolfram Data**&#xD;
 -  **Creating Data Access Library**&#xD;
 -  **Integrating Library into a Single Macro-Function**&#xD;
 -  **Creating Cloud Micro-Site**&#xD;
 -  **Conclusion**&#xD;
&#xD;
Please interact with the actual web project at the [**following location**][1]&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
#Introduction to Astronomy Club Bot program &#xD;
&#xD;
Astronomy Club Bot program has three inputs and a big output, which includes three important parts. First input is the name the of city where user wants to observe the Moon. The output has two parts related to each other. It shows the cloud cover and the moon phases for that week. Second and third inputs are the name of  the country and the exact date of  an observing. Third part shows map with the comparison of the cover densities  in all regions of a chosen country. The main thing that I used during programming was the Wolfram Data and all functions related to my web project.  &#xD;
&#xD;
Wolfram Data used&#xD;
=======&#xD;
 - WeatherForecastData&#xD;
 - CloudCoverFraction&#xD;
 - AdministrativeDivisionData&#xD;
 - CountryData&#xD;
 - CityData&#xD;
 - Date&#xD;
 - MoonPhase&#xD;
&#xD;
Creating Data Access Library&#xD;
=======&#xD;
&#xD;
After researching all important information I started to code a simple functions and the Wolfram data helped me. Here is my first plot (part of the main output) which shows the cloud cover for 6 days in a chosen city. That is why I used CloudCoverFraction to got the cloud cover information.&#xD;
&#xD;
    cit[x_] := &#xD;
     DateListPlot[&#xD;
      WeatherForecastData[GeoPosition[x], &amp;#034;CloudCoverFraction&amp;#034;], &#xD;
      PlotRange -&amp;gt; All, Mesh -&amp;gt; All, Filling -&amp;gt; Bottom]    &#xD;
    cit[Entity[&amp;#034;City&amp;#034;, {&amp;#034;Kathmandu&amp;#034;, &amp;#034;Kathmandu&amp;#034;, &amp;#034;Nepal&amp;#034;}]]&#xD;
&#xD;
  ![enter image description here][3]&#xD;
&#xD;
This is my second plot, which I connected with the first one (next output shows that). I used the MoonPhase function to got the illustration of the moon phase fraction for a current date. According to my written code the program counts days by assuming that the first day will be tomorrow (first=Tomorrow) so it adds the next 6 days to it and shows the moon phases for that days . &#xD;
&#xD;
    mn = Grid[{{ImageResize[#2, 35]}, {DateString[#, {&amp;#034;DayShort&amp;#034;}]}}] &amp;amp; @@@&#xD;
       MoonPhase[&#xD;
        With[{first = Tomorrow}, &#xD;
         DateRange[first, DatePlus[first, Quantity[6, &amp;#034;Days&amp;#034;]]]], &amp;#034;Icon&amp;#034;][&#xD;
       &amp;#034;Path&amp;#034;]&#xD;
&#xD;
Integrating Library into a Single Macro-Function&#xD;
=======&#xD;
&#xD;
Here I connected two simple functions by using Grid function and gave them sizes .In that case I have two parts in the one output. That means my program will take the city name and give me information about the cloud density and also the moon phases for 6 days.&#xD;
&#xD;
    tg[y_] := &#xD;
     Grid[{{Row[mn, Spacer[9]]}, {Show[cit[y], ImageSize -&amp;gt; 400]}}]&#xD;
    &#xD;
![enter image description here][4]&#xD;
&#xD;
 The AdministrativeDivisionData function helped me with the comparison of a regional cloud covers. The benefit of this data was that I found  administrative divisions of all needed countries by using EntityList and EntityClass. &#xD;
&#xD;
    div[z_] := &#xD;
    EntityValue[&#xD;
     Entity[&amp;#034;AdministrativeDivision&amp;#034;, {EntityProperty[&#xD;
         &amp;#034;AdministrativeDivision&amp;#034;, &amp;#034;ParentRegion&amp;#034;] -&amp;gt; z}], &amp;#034;Entities&amp;#034;]&#xD;
&#xD;
I made a function with WeatherForecastData for cloud cover prediction of the exact time.In this function I have two arguments, so they are responsible for the  Date and the GeoPostion.&#xD;
&#xD;
    wt[time_][ad_] := &#xD;
     QuantityMagnitude[&#xD;
      WeatherForecastData[GeoPosition[ad], &amp;#034;CloudCoverFraction&amp;#034;, time]]&#xD;
    &#xD;
The pltF function shows a regional plot with administrative divisions and the main argument depends on the exact date and the country that user should input. I used a &amp;#034;ct&amp;#034; argument which I defined by mapping a &amp;#034;wt&amp;#034; and a &amp;#034;region&amp;#034; functions.&#xD;
&#xD;
    pltF[y__, ct_] :=  &#xD;
      GeoRegionValuePlot[Thread[y -&amp;gt; ct], PlotStyle -&amp;gt; Opacity[.5], &#xD;
       GeoBackground -&amp;gt; &amp;#034;StreetMap&amp;#034;, &#xD;
       PlotLegends -&amp;gt; Placed[Automatic, Above], ImageSize -&amp;gt; 400];&#xD;
&#xD;
mapperFunct includes two arguments and makes easy to get a division plot that shows the comparison of the cloud covers for each region. This plot is evaluating by getting information of  date and position.  &#xD;
&#xD;
    mapperFunct[country_, time_] := Module[ {regions, ct, ans},&#xD;
      regions = div[country];&#xD;
      ct = wt[time] /@ regions;&#xD;
      ans  = pltF[regions, ct];&#xD;
      ans&#xD;
      ]&#xD;
    mapperFunct[Entity[&amp;#034;Country&amp;#034;, &amp;#034;Nepal&amp;#034;], Tomorrow]&#xD;
&#xD;
![enter image description here][5]&#xD;
&#xD;
Creating Cloud Micro-Site&#xD;
=======&#xD;
&#xD;
In finalFunct I added all important functions that  I programmed before. My function has 3 inputs with big output  as I wanted. It means my function runs by depending on 3 arguments.&#xD;
&#xD;
    finalFunct[city_, country_, time_] := &#xD;
     Rasterize[Column[{tg[city], mapperFunct[country, time]}], &amp;#034;Image&amp;#034;, &#xD;
      &amp;#034;ImageSize&amp;#034; -&amp;gt; 800]&#xD;
&#xD;
This is my final code of the web project where I used CloudDeploy function and included FormPage with 3 inputs. I changed my function permissions to Public, it means that program is opened for users so they can run my program and check the weather forecast for the moon observation.&#xD;
&#xD;
    CloudDeploy[&#xD;
    	Delayed[&#xD;
    		FormPage[{&#xD;
    			&amp;#034;city&amp;#034;-&amp;gt;&amp;lt;|&amp;#034;Interpreter&amp;#034;-&amp;gt;&amp;#034;City&amp;#034;,&amp;#034;Input&amp;#034;-&amp;gt;&amp;#034;Kathmandu&amp;#034;|&amp;gt;,&#xD;
    			&amp;#034;country&amp;#034;-&amp;gt;&amp;lt;|&amp;#034;Interpreter&amp;#034;-&amp;gt;&amp;#034;Country&amp;#034;,&amp;#034;Input&amp;#034;-&amp;gt;&amp;#034;Yerevan&amp;#034;|&amp;gt;,&#xD;
    			&amp;#034;date&amp;#034;-&amp;gt;List[With[{first=Tomorrow},DateRange[first,DatePlus[first, Quantity[6,&amp;#034;Days&amp;#034;]]]]]},&#xD;
    		finalFunct[#city,#country,#date]&amp;amp;]],&#xD;
    &amp;#034;AstroClub&amp;#034;,Permissions-&amp;gt;&amp;#034;Public&amp;#034;]&#xD;
&#xD;
Conclusion&#xD;
=======&#xD;
&#xD;
Astronomy Club Bot program gives an opportunity for amateur astronomers to take pictures and observe the moon with telescope or camera. Users will know the moon phase and the weather forecast by choosing the exact day when they want to organize observation. They also can go to another region where the cloud density will be the lowest. The main idea of this project was making an observation more comfortable for users who can&amp;#039;t leave his/her home or region. So I programmed it by using simple functions,wolfram data and documentation.  &#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/objects/user-3c5d3268-040e-45d5-8ac1-25476e7870da/AstroClub/&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2016-08-19at8.50.38AM.png&amp;amp;userId=900614&#xD;
  [3]: http://community.wolfram.com//c/portal/getImageAttachment?filename=ASTRO_CLUB_Final.png&amp;amp;userId=900614&#xD;
  [4]: http://community.wolfram.com//c/portal/getImageAttachment?filename=4482Capture.PNG&amp;amp;userId=900614&#xD;
  [5]: http://community.wolfram.com//c/portal/getImageAttachment?filename=4387Capture1.PNG&amp;amp;userId=900614</description>
    <dc:creator>Tatevik Mkrtchyan</dc:creator>
    <dc:date>2016-08-19T11:47:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/173752">
    <title>Creating GUI with Mathematica &amp;amp; Integrate with Webpage</title>
    <link>https://community.wolfram.com/groups/-/m/t/173752</link>
    <description>Hi Guys,

I am very new to Mathematica

I would like to build a GUI using Mathematica and eventually integrate the GUI on a webpage. Any advice on how and which platform to code on?

Thanks in advance

Arvind Rajan</description>
    <dc:creator>Arvind Rajan</dc:creator>
    <dc:date>2013-12-21T10:50:32Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/206834">
    <title>How to create a REST web service using Mathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/206834</link>
    <description>I would like to create a simple RESTful web service interface to publish a particular, complex calculation implemented in a Mathematica program to other external programs. I am thinking something along the lines of the [url=http://geocoder.us/help/utility.shtml]geocoder ZIP-code distance calculator[/url] example, easy to call via URI and passing an array of numbers as parameters (matrix algebra).

I have seen the [url=http://reference.wolfram.com/mathematica/WebServices/tutorial/Introduction.html]Web Services documentation[/url] on Wolfram&amp;#039;s reference for Mathematica 9. It seems to be a bit dated (2008) and geared towards SOAP 1.1. Also, the tutorials are generally describing the scenario where Mathematica is consuming an external web service as a client, as compared to offering a web service as Provider to external systems. I did not find any reference to a REST web service built with Mathematica either.

Any pointers or example code would be appreciated.

Thanks, Thomas.</description>
    <dc:creator>Thomas Laussermair</dc:creator>
    <dc:date>2014-02-23T20:04:15Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/309979">
    <title>Why is &amp;#039;Mathematica&amp;#039; written in italics?</title>
    <link>https://community.wolfram.com/groups/-/m/t/309979</link>
    <description>Software titles are usually not written in italics (e.g. &amp;#034;Microsoft Word&amp;#034;), but *Mathematica* always seems to be italic. Is there any reason for this, or is just the Wolfram house style?&#xD;
(I promise this question isn&amp;#039;t completely irrelevant! I haven&amp;#039;t been able to find the answer anywhere else, so I thought I&amp;#039;d ask here.)&#xD;
Thanks</description>
    <dc:creator>Tim Carruthers</dc:creator>
    <dc:date>2014-08-01T00:53:44Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/107541">
    <title>Questions about webMathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/107541</link>
    <description>Hello 

I have some questions as follows :

Is it possible that the clients can view the result without installing the CDF Player?
If yes, Is it possible that the results can have the interative features without CDF Player?
If yes, which interactive technologies does it support? Applet, ActiveX, .NET Cotrol, Flash, Image &amp;amp; AJAX, HTML5?

Additionaly, I cant type the return key(new line) in this dashboard.
so I made this words in other editor and copied &amp;amp; pasted them at this dashboard.
Please check this trouble.

Regards,

Daniel Hong</description>
    <dc:creator>Daniel Hong</dc:creator>
    <dc:date>2013-08-26T02:30:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/89641">
    <title>Web deployment of document containing URLSave function</title>
    <link>https://community.wolfram.com/groups/-/m/t/89641</link>
    <description>Is it possible to deploy a Mathematica notebook which contains a dynamic URLSave function? My code has the following structure:[mcode]web = URLSave[&amp;#034;http://www.wolfram.com/mathematica/&amp;#034;, Close[OpenTemporary[]]]
Dynamic[web, UpdateInterval -&amp;gt; 20, TrackedSymbols -&amp;gt; {}, SynchronousUpdating -&amp;gt; False][/mcode]The problem is when I start to deploy it, in the last step after I indicate in which folder to save the CDF file, then this error appears:

[code]Select::normal: Nonatomic expression expected at position 1 in
  Select[C:\Users\Morry\Dropbox\MEPS\ALISalehi\HTML\146\Untitled.cdf,StringMatchQ[#1,*.png]&amp;amp;].[/code]</description>
    <dc:creator>Morteza Shahrezaye</dc:creator>
    <dc:date>2013-08-04T07:57:39Z</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/517557">
    <title>DateListPlot in webMathematica doesn&amp;#039;t show FrameTicks properly</title>
    <link>https://community.wolfram.com/groups/-/m/t/517557</link>
    <description>It seems that DateListPlot when used in webMathematica (3.3.1) show different output than in desktop Mathematica (10.1).&#xD;
&#xD;
In desktop Mathematica, if you evalutate&#xD;
&#xD;
    data = {{{2015, 1}, 10}, {{2015, 2}, 6}, {{2015, 3}, 15}};&#xD;
    DateListPlot[data]&#xD;
&#xD;
will show this picture:&#xD;
&#xD;
![desktop Mathematica output][1]&#xD;
&#xD;
&#xD;
in webMathematica instead, when you call this code (html removed for clarity) in .jsp file from your browser&#xD;
&#xD;
     &amp;lt;msp:evaluate&amp;gt;&#xD;
          data = {{{2015, 1}, 10}, {{2015, 2}, 6}, {{2015, 3}, 15}};&#xD;
          MSPShow[DateListPlot[data]]&#xD;
     &amp;lt;/msp:evaluate&amp;gt;&#xD;
&#xD;
it will show the graph without the vertical and horizontal Ticks:&#xD;
&#xD;
![webMathematica .jsp output][2]&#xD;
&#xD;
&#xD;
Then I&amp;#039;ve tried to add   FrameTicks -&amp;gt; True   (and Frame-&amp;gt; False otherwise it doesn&amp;#039;t show them)&#xD;
&#xD;
    &amp;lt;msp:evaluate&amp;gt;&#xD;
          data = {{{2015, 1}, 10}, {{2015, 2}, 6}, {{2015, 3}, 15}};&#xD;
          MSPShow[&#xD;
             DateListPlot[data&#xD;
               ,Frame-&amp;gt; False&#xD;
               ,FrameTicks -&amp;gt; True]]&#xD;
        &amp;lt;/msp:evaluate&amp;gt;&#xD;
&#xD;
the output now shows the ticks, but in Scientific Notation. No way to display the ticks in date format:&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
It appears as a bug for me, because other functions as Plot[] or ListPlot[] produce a regular output. This strange behavior seems to be peculiar to DateListPlot[].&#xD;
&#xD;
Does anyone has encountered the same problem or found a workaround?&#xD;
&#xD;
&#xD;
*(I&amp;#039;ve posted this question also on [StackExchange][4] )*&#xD;
&#xD;
&#xD;
  [1]: /c/portal/getImageAttachment?filename=g1.MMA.gif&amp;amp;userId=332859&#xD;
  [2]: /c/portal/getImageAttachment?filename=g1.webMMA.gif&amp;amp;userId=332859&#xD;
  [3]: /c/portal/getImageAttachment?filename=g2.webMMA.gif&amp;amp;userId=332859&#xD;
  [4]: http://mathematica.stackexchange.com/questions/86647/datelistplot-in-webmathematica-doesnt-show-frameticks-properly</description>
    <dc:creator>Guido Tripaldi</dc:creator>
    <dc:date>2015-06-23T15:38:45Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/471455">
    <title>How can I write and deploy a GUI DB application with Mathematica?</title>
    <link>https://community.wolfram.com/groups/-/m/t/471455</link>
    <description>Mathematica has pretty nice support for reactive GUI creation and database connectivity. It seems that it would be suitable for writing database front-ends, especially those involving a lot of computation, graphs etc. Sadly, I&amp;#039;ve failed to identify a reasonable way to deploy such applications. If it&amp;#039;s a bad idea to try using Mathematica for writing such applications, please tell me. Otherwise I&amp;#039;d like pointers as to a reasonable deployment strategy. Here is a list of the options I&amp;#039;ve considered and why I consider them unreasonable or problematic.&#xD;
&#xD;
1) Write the application using Mathematica. To deploy, let every client install Mathematica, get a copy the notebook and run the application using Mathematica. This would be pretty hefty priced, since there would be a license fee for every single client using nothing from Mathematica except running this application. Maybe not unreasonable, but if there are better ways I&amp;#039;d like to know.&#xD;
&#xD;
2) Write the application in Mathematica, then deploy using the CDF technology. Numerous sources indicate the CDF player for security reasons is unable to read or write external files. I suppose connecting to external, custom data sources is likewise restricted. I&amp;#039;m trying to deploy an application, not deliver a document, and since CDF is a &amp;#034;computable document format&amp;#034; I should probably take a hint. A database application not able to connect to it&amp;#039;s data source is unreasonable. Also, having an application require the user to &amp;#034;allow unsafe whatever&amp;#034; every time it starts is, if not unreasonable, at least a major nuisance.&#xD;
&#xD;
3) Write the application using Wolfram programming cloud. I&amp;#039;ve failed to build user interfaces using this product. Wolfram support tell me that &amp;#034;Mathematica Online, which is a Beta product, does not support the function Dynamic yet. Some Mathematica functionality is only supported in Wolfram Desktop systems as of now.&amp;#034; Building Mathematica GUI without Dynamic is what I consider unreasonable. Also, I&amp;#039;m not exactly sure to what extent database connectivity is supported in Mathematica Online or Wolfram Programming Cloud (they are essentially the same product, right?)&#xD;
&#xD;
4) Write the application using webMathematica. Haven&amp;#039;t tried it, but is there any reason to believe it would work better than programming cloud?&#xD;
&#xD;
5) Use the wolfram language server-side, but not for client GUI. This is probably viable, but would be a sad choice if you like the Mathematica GUI and graphs. Especially since the technology is there. Again, I don&amp;#039;t know if the area of DB front-ends simply isn&amp;#039;t targeted by Wolfram, but I assume there are countless other areas where you&amp;#039;d have the need to deploy a computing application with both GUI and file/data access. Delivering a top-notch product with [insert your favorite Wolfram sales video] and not providing a reasonable way for deploying applications, is what I consider unreasonable.</description>
    <dc:creator>M G</dc:creator>
    <dc:date>2015-04-01T14:08:10Z</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/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/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/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/566053">
    <title>Login / Survey online</title>
    <link>https://community.wolfram.com/groups/-/m/t/566053</link>
    <description>Can anyone help me login with Mathematica to this site:&#xD;
&#xD;
http://letsfeedback.com/en/home/#presenter-login (?)&#xD;
&#xD;
(here is a similar question of mine: [Import with Login][1], in case anyone would be curious to have a look)&#xD;
&#xD;
It would help me to centralize and analyze the data from several accounts..&#xD;
&#xD;
---&#xD;
&#xD;
Is it possible to create something similar (using e.g. FormFunction), store responses, analyse and display the results? &#xD;
&#xD;
Thank you!&#xD;
&#xD;
&#xD;
  [1]: http://community.wolfram.com/groups/-/m/t/411642?p_p_auth=0ruYIGfA</description>
    <dc:creator>Sandu Ursu</dc:creator>
    <dc:date>2015-09-16T15:19:28Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/542622">
    <title>i want to share simple standalone executable app - whats the best tool?</title>
    <link>https://community.wolfram.com/groups/-/m/t/542622</link>
    <description>I want to share simple standalone executable app - it will read in a file of data, manipulate that data, and write to another file.  no interface, no inputs except filename/path.  The only requirements are that&#xD;
&#xD;
1) it has to be usable for others who **dont** have mathematica.   &#xD;
2) it does not reveal the code to users. &#xD;
 -whats the best tool?  thanks!</description>
    <dc:creator>jacob grayson</dc:creator>
    <dc:date>2015-08-04T18:13:26Z</dc:date>
  </item>
</rdf:RDF>

