We have just finished deploying SharePoint 2010 in our company,
When i try to access a data service endpoint it simply times out (either through code or browser)
The endpoint i am trying to his is http://......./Site/_vti_bin/listdata.svc/ProductionLinks()
If i then browse the list and retry the link it will then work. it then also works for other people accessing the data service but it seems that someone needs to browse the list with IE first (and maybe spin up the site). then after aproximatly 30 min the Data Services requests will stop working.
Is there a way to make a data service call access a SharePoint List without having to browse it first with IE?
Or is there some SharePoint config item I need to set?
Related
How can I get the list of deployed application with XL Deploy REST Api, with their duration.
I've searched on the doc https://docs.xebialabs.com/xl-deploy/8.6.x/rest-api/index.html
I get find the request for my need, perhaps I am not searching at the right place
You should be able to get the list of all deployed application using this endpoint: https://docs.xebialabs.com/xl-deploy/8.6.x/rest-api/com.xebialabs.deployit.engine.api.RepositoryService.html#/repository/query:GET
With a query like: http://user:password#yourXLD/deployit/repository/query?type=udm.DeployedApplication&ancestor=Environments&resultsPerPage=-1
As for the durations of the deployment, surely a little bit tricky, I think it should be in the TaskBlockService (https://docs.xebialabs.com/xl-deploy/8.6.x/rest-api/com.xebialabs.deployit.engine.api.TaskBlockService.html). You can also try to monitor with your browser the http requests issued by the webUI, we have been able to get some API endpoints that were not documented... Needless to say it won't be officialy supported.
Problem: I have to create another WebApplication outside of my SharePoint environment which uses Windows Authentication(NTLM) but this new WebApp will be called from SharePoint and I have to leave that domain changing "unknown" for the end user, however, users got to be authenticated in this new WebApp in order to see all the data. Therefore, I heard that SharePoint 2013 has this new Provider-Hosted App thing that I thought could work for me but somehow I still have to pass my credentials twice (#1 - when accessing SharePoint, #2 when redirected to the app) to get authenticated. Am I missing something or did I misunderstood how provider-hosted app really works?
I work on a simple list on a simple site/site collection/web app on a SharePoint 2010 test server which does not use SSL.
I then make a site collection backup and restord it onto our Production environment which have the same setup as the test server. The only difference is that it is set up to use SSL encryption and in particular for this web app.
When I want to customize the forms of the list using InfoPath I get a weird error message : "The SOAP message cannot be parsed".
This is when I click on the "Customize form" button in the ribbon which has the InfoPath icon:
Does anybody have already encountered such problem?
I have seen many posts about this error but this is because of athe time out issue when the list contains a lot of items. In my case, it is empty.
Thanks,
Sébastien
Actually, the problem was coming from the fact that InfoPath initially tried to connect using http to the SharePoint site. When the settings were changed to https, the IE cache still kept this setting and I had to remove it using the "Reset..." button located on the Advanced tab of the Internet options so that IE now opens up InfoPath using the right URL with https.
I was getting the error "The SOAP message cannot be parsed." while publishing a very complicated (list-based) InfoPath form in SharePoint Enterprise 2010. The issue only seemed to be effecting this form and not any others but would fail with either my personal account or the farm account.
After some experimenting with timing values within the InfoPath Service(s) we expanded the ExecutionTimeout in the Web.Config file within I.I.S. and that worked.
I'm running SSRS in integrated mode (Trusted) and have an issue with trying to use the HTML viewer on a Forms Based Authentication site in Sharepoint 2010. I have found several articles on using the report viewer in FBA; however, to the best of my knowledge, I need to use the HTML viewer as the ultimate goal is to seamlessly produce a PDF file for the end user. The error I'm getting is "401 UNAUTHORIZED An unknown error occurred with the Reporting Services endpoint on this SharePoint site." The Url format I'm submitting is as follows:
http:///_vti_bin/ReportServer?//.rdl&rs:Command=Render&rs:Format=PDF. Some additional information, the request works if I use the default site name and not the forms based name.
So my question is twofold, should I be able to do this in FBA? and if not what is the best route to produce a PDF of the report for the client?
Thanks
First of all, running SSRS with SharePoint is tricky. For SSRS to be able to receive the user credential, it has to be running in kerberos mode. Otherwise, the request to SSRS is made as ANONYMUS LOGON (that's why you are getting a 401).
Now, for the PDF, you have a few options :
Call the SSRS webservice directly and produce a PDF.
Setup a subscription and generate it as PDF, either to filesystem, email, etc.
Do what you are doing now, but with kerberos enabled.
Just starting out with ArcGIS server at work, I've had no prior experience but I been given the responsibility to display our map on the web.
I have a ArcGIS server running on a server and I am using ArcMap 10 on my desktop. I created a Folder in the server where I saved the map document. I can add a new service using this document and I'm given a url when I do so. But when I go to that URL I get this error:
Server Error in '/ArcGIS/Services' Application.
Runtime Error
And, when going to the same url from the server I get:
Server Error in '/ArcGIS/Services' Application.
No Content
Do you try to open servername/ArcGIS/services via browser? This url is for SOAP requests, e.g. you can add '?wsdl' to it ang get SOAP service description. To use it with browser you'll need ArcGIS Server REST API, i.e. use 'servername/ArcGIS/rest/services' URL.