I am trying to embed my Tableau dashboard in R markdown. I am using the following code to do the same.
<center><iframe src="https://public.tableau.com/views/WineProductionAroundtheworld/Dashboard1?:embed=y&:display_count=yes"width="800" height="627" frameborder="0"></iframe></center>
I am receiving the error, public tableau.com refused to connect
Can you help me resolve this issue?
You need to use two parameters in your tableau public link. Remember you will only see the dashboard after you publish your rmarkdown. Here is the link for how to add the parameter:
https://kb.tableau.com/articles/howto/embedding-tableau-public-views-in-iframes
Related
I am trying to publish an RMarkdown document that I have edited in RStudio. but it's unfortunate that I am quite confused the way I need to go about this publishment.
I am requested to Enter the Public URL of the RStudio Connect server:
I searched through internet, how I can find this URL but I have failed to find it. I even filled the form on https://rstudio.com/products/connect/ but did not yield any positive result.
Kindly help to know what is wrong with my Rstudio connect and what I do to address this issue.
thank you in advance!
Below is the the screenshot of the message I am being given.
enter image description here
I finally found that the error I was experiencing is due to the location of the project location (directory) I am working with which was different from the current directory.
In addition to this, I found that I needed to knit the document to html before proceeding to publishing it.
The issue has been now addressed, thanks!
I have a Sitecore solution that is connecting to an external website using FXM.
When I'm trying to add a new placeholder using FXM I receiving next error but in
logs doesn't appear something related to this error. Please see attached picture
As it seems the Sitecore.Services.Client.FXM.Enabler.config was .disabled and it needs to be enable it in order to make FXM work on the instance.
As #sitecore climber mentioned it can be found on the documentation here.
All the databases are stored in a remote server where I need to access remotely.
I need to access to Analytic db from my code behind file to get most viewed page.
So, I tried with something like this:
SqlConnection thisConnection = new SqlConnection("Data Source=xxx.xxx.xxx.xxx;database=xxxx ;User id=xxxx;Password=xxxx;");
But an exception was thrown (Login in failed ... )
And I have found few guides, but not really understand how it is used.
Guide 1: using Creating LINQ to SQL Classes (O/R Designer) as mentioned in http://learnsitecore.cmsuniverse.net/en/Developers/Articles/2009/09/mostviewedList.aspx
can anyone tell me or guide me what should I do? I have totally 0 idea on doing this.
Guide 2: using configuration manager (I haven't tried this yet)
string connectionString = ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString;
using(SqlConnection SqlConnection = new SqlConnection(connectionString));
Which version of Sitecore are you using? Are you using OMS or DMS? The article you linked to is for querying OMS, in Sitecore 6.5/DMS you should just be querying via the Sitecore.Analytics API and therefore should need a sql connection reference.
How to get item page views using sitecore 6.5 Analytics API
Jim mentions in this answer that he ended up writing his own calls. May be he might be a source of more information.
Moreover I am not aware that what exactly is your requirement but have a quick look at this page and see if this code offers what your are after.
Hope this helps.
I want to retrieve server content which is like wsdl link(WCF service URL)using FLEX 4.5.. I haven't worked with webservices on FLEX. I have worked with xml data retrieval using httpservices where I had a local xml datas. Right now, i am trying to retrieve a server content. I have provided with the service link, method name and xml tags. (seems like parameters).. Since this is the first time im trying the server content, I need some help. Your help is highly appreciated.. thanks in advance... Would be better if i can get a sample project on webservices.
This is what I'm trying. The service link is below.
http://mfsapi.blisslogix.net/RSS_FEEDS_SERVICE.svc
When I click on this link, i'm getting the below link.
http://mfsapi.blisslogix.net/RSS_FEEDS_SERVICE.svc?wsdl
where I can see a lot of tags.
I am using HTTPSERVICES and WEBSERVICES to work on this issue and i'm not getting the xml data. I guess I did some mistake on passing the parameters. Please walk me through the steps how can I pass the method and parameters with this link..
First you need to create a WebService tag. Or use ActionScript an object of type WebService.
<mx:WebService id="myWebService"
useProxy="false"
showBusyCursor="true"
load="OnServiceLoad(event)"
fault="OnFault(event)">
<s:operation name="GetInformation" result="onLoad(event)" fault="onFault(event)">
</s:operation>
</mx:WebService>
Then you need to specify the WSDL document location and load it.
myWebService.loadWSDL("http://mfsapi.blisslogix.net/RSS_FEEDS_SERVICE.svc?wsdl");
Then you can simply call the operations specified in the WebService tag.
myWebService.GetInformation();
Here is a link on how to communicate with web services using MXML and AS.
I have saved a site as tempalte (i.e. MyMarketing.stp) and added to sharepoint server using stsadm addtemplate command and after few days lost MyMarketing.stp file. Now it is available for creating top level sites as well. I want to get this site template back as MyMarketing.stp file. Is it possible to extract it from the server as MyMarketing.stp file?
Thanks and in advance!
Regards,
Asher
Create an new site based on the template, then use http://SITEURL/_layouts/savetmpl.aspx to save the site in it's own site template gallery. you can now download the .stp file from that gallery.
Alternatively you could use SharePoint designer to export the site as a template.