wss

SharePoint 2007: Possible to copy a list instance from 1 server to another without using a feature?

和自甴很熟 提交于 2019-12-11 00:55:07
问题 I am not server admin on one of our production systems, neither do I have SQL permissions because of this I need to ask someone to install a WSP package, its annoying. Is there a way I can copy a list instance from one server to another by just using the SharePoint GUI, I am root admin on 1 machine (dev) and site admin on another (test/production) I guess in the way that an information worker would do it, not a developer. Thanks 回答1: On top of my head there 2 methods to move/copy a list By

SharePoint (WSS) Authentication Across Multiple Domains

喜欢而已 提交于 2019-12-10 17:22:50
问题 First, a little background: We have an intranet site based on WSS 3.0 that is hosted on a server in DOMAIN_A.LOCAL and set up to use Integrated Windows Authentication to authenticate users against Active Directory user accounts of DOMAIN_A.LOCAL . This setup works just fine for users who are logged into Windows using an AD account from DOMAIN_A.LOCAL , but when users try to access the site from a PC logged into Windows using an AD account from a different domain (i.e. DOMAIN_B.LOCAL ) the

Relative URLs in Sharepoint master page

眉间皱痕 提交于 2019-12-10 15:17:09
问题 I have a master page with tabs. The tabs are defined by the following sitemap file: <siteMap> <siteMapNode title="Home" url="~/" > <siteMapNode title="Schedule" url="~/Pages/Tab2.aspx"/> <siteMapNode title="Deliverables" url="~/Pages/Tab3.aspx"/> <siteMapNode title="My Items" url="~/Pages/Tab4.aspx"/> <siteMapNode title="Management" url="~/Pages/Tab5.aspx"/> <siteMapNode title="Working Docs" url="~/Pages/Tab6.aspx"/> </siteMapNode> </siteMap> The problem is that on my subsites, clicking on a

SharePoint list CAML query using CONTAINS

夙愿已清 提交于 2019-12-10 01:08:33
问题 I'm trying to query a SharePoint list using the following CAML query in a webpart. I have tested the query in U2U CAML Query Builder and Stramit CAML Viewer and it works fine, only returning the matching records, but when I use it in my webpart it return all list items. It is driving me crazyyyyy. Here is the code: string camlQuery = string.Format(@"<Query><Where><Contains><FieldRef Name='Title' /><Value Type='Text'>2</Value></Contains></Where></Query>"); SPQuery query = new SPQuery(); query

What does “wsse:InvalidSecurity” mean?

耗尽温柔 提交于 2019-12-09 23:58:11
问题 An error was discovered processing the <wsse:Security> header This is a WS-Security question btw... I can't see anything wrong with my WS endpoint (apart from the fact that it's running in a TIBCO BW engine!). Does someone have any 'prior' with this kind of error? I realise that the WS-Security Header could be broken anywhere presumably to get this error but, there's GOT to be a 90% percentile on some kind of common error. Here's the secured SOAP - the client is standalone java (WSS4J 1.5.0)

freeswitch websocket webrtc

半世苍凉 提交于 2019-12-09 20:31:50
Install the Certificate into FreeSWITCH Replace sipjs.com with the domain name that you used to generate the certificate. cd /etc/letsencrypt/live/sipjs.com echo '' >> /usr/local/freeswitch/certs/wss.pem && cat cert.pem >> /usr/local/freeswitch/certs/wss.pem && cat privkey.pem >> /usr/local/freeswitch/certs/wss.pem && cat chain.pem >> /usr/local/freeswitch/certs/wss.pem Restart FreeSWITCH 其他还有配置在本文档的 《Freeswitch/wss》的章节。 echo '' >> /usr/local/freeswitch/certs/wss.pem && cat cert.pem >> /usr/local/freeswitch/certs/wss.pem && cat privkey.pem >> /usr/local/freeswitch/certs/wss.pem && cat chain

Using Uploadify with Sharepoint and .net

这一生的挚爱 提交于 2019-12-09 18:34:25
问题 I have a some html being generated by JQuery on a Share Point page. I want to use uploadify in this html to upload a file to the server. Alexander has helped by providing the following sample code which is based partially on http://www.uploadify.com/forum/viewtopic.php?f=5&t=45. upload.ashx <%@ Assembly Name="ClassName, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f099e668beaaa0f9" %> <%@ WebHandler Language="C#" CodeBehind="Upload.ashx.cs" Class="Site.RootFiles.TEMPLATE.LAYOUTS.other

SharePoint 2007: How can I perform a series of operations within a transaction?

冷暖自知 提交于 2019-12-09 18:08:21
问题 I would love to know how to perform a series of operations in a SharePoint context within a transaction. For example, I would like to be able to do something like the following: context.BeginTransaction(); listItemA.Update(); listItemB.Update(); context.CommitTransaction(); I know this isn't possible with the OOTB APIs, but someone has got to have figured out how to accomplish this. Is it possible to get a reference to the database connection in order to handle the transaction? Or any other

Debugging Sharepoint timer jobs

独自空忆成欢 提交于 2019-12-09 05:40:52
问题 I am creating my first Timer Job and want to debug it. I have installed the timer job through a feature, and added it to a webapplication's JobDefinitions collection, and added a SPMinuteSchedule to run every 5 minutes (for testing purposes). Then, in Visual Studio I've tried attaching the debugger to the WebApplication's Process, the Central Admin process and the OWSTIMER.exe process, but it will not debug into the Execute Method of the TimerJob. What am I missing here. P.S. The timer job

Sharepoint List to PDF report

倖福魔咒の 提交于 2019-12-08 22:11:24
问题 I have a SharePoint list and I need to transform it into a document (any type) and export it to PDF. Would you have any tips on the best way to do this? I have Crystal Reports but not sure if this is the correct use case for this. 回答1: You can programatically access the document library using the object model or via web services. If you use the object model. You can use the SPContext object to get the current site/list. From there, you can iterate through the items or, you can use a method on