Azure Web Application Architecture
I am building a webapplication which will be deployed on Microsoft Azure.
Part of my site will be SSL protected and the rest will not.
I am not interested in SSL securing my entire site.
The SSL secured area includes a member login section and a create new member page.
The rest of the webappication is just company presentation etc. and needs not be protected.
I would like to host my webapplication in a single webrole.
How should I organize my application?
Kind Regards
Frederik
Reply:
Hi, Frederick KC.
Try to read this article.
http://msdn.microsoft.com/en-us/library/windowsazure/ff795779.aspx
It describes how to add an HTTPS endpoint to a role in your Windows Azure service and associate it with an SSL certificate.
------------------------------------
Reply:
Hello Frederik,
There are many tutorials on how to add an HTTPS endpoint to a role in your Windows Azure service, but not so much on the code side.1. Download Nuget, Microsoft.Web.Administration, because most probably you don't have it on your PC.
2. OnStart() Method, in Global.asax
ServerManager serverManager = new ServerManager(); Microsoft.Web.Administration.Configuration config = serverManager.GetApplicationHostConfiguration(); Microsoft.Web.Administration.ConfigurationSection section = config.GetSection("system.webServer/security/access", RoleEnvironment.CurrentRoleInstance.Id + "_Web" + "/SecureSSL.aspx"); ConfigurationAttribute enabled = section.GetAttribute("sslFlags"); enabled.Value = "Ssl"; serverManager.CommitChanges(); Hope it helps.
------------------------------------
What is next step after enable IRM in Sharepoint 2010.
Dear All,
I have successfully enable the IRM from the Cebtral Administration.
But I am not understanding what is next step. I am not getting any option in document library setting or anywhere.
Can anyone please help me out what is the next step to do for IRM ?
Thanks and Regard's
Harish
Reply:
Apply Information Rights Management to a list or library
Roger Cormier
Microsoft
Premier Field Engineer, SharePoint
Twitter:
Note: My posts are provided "AS IS" without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
------------------------------------
Reply:
Dear Friend,
Finally I am able to do the settings for the document library.
I have enable the some settigns from IRM for document library.
When I am downloading the document I am getting following error,
Error:
"The service at http//ServerName.XXX.com:443/_wmcs/licensing is temporary
unavailable. Ensure that you have connectivity to this server. This
error could be caused because you are working offline, your proxy
setting are preventing your connection, or you are exoerienceing
intermittent network issues."
Can anyone please help me out how to resolve this issue ?
Thanks and Regard's
Harish Patil
------------------------------------
JDBC driver throws exception with "SET SHOWPLAN_ALL ON" when setMaxRows() was set.
When running a SELECT statement through a statement where setMaxRows() was set and SET SHOWPLAN_ALL ON; was execute previously the driver throws an exception:
The following code reproduces this problem:
Connection con = null; Statement stmt = null; try { Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); con = DriverManager.getConnection("jdbc:sqlserver://localhost;databaseName=bedb_integration", "username", "password"); con.setAutoCommit(false); stmt = con.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY); stmt.execute("SET SHOWPLAN_ALL ON"); stmt.setMaxRows(10000); ResultSet rs = stmt.executeQuery("SELECT 1"); while (rs.next()) { System.out.println(rs.getObject(1)); } rs.close(); stmt.close(); } catch (Exception sql) { sql.printStackTrace(); } finally { con.close(); } This produces the following Exception:
com.microsoft.sqlserver.jdbc.SQLServerException: The TDS protocol stream is not valid. Unexpected token TDS_COLMETADATA (0x81).
at com.microsoft.sqlserver.jdbc.SQLServerConnection.terminate(SQLServerConnection.java:1667)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.terminate(SQLServerConnection.java:1654)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.throwInvalidTDSToken(SQLServerConnection.java:1643)
at com.microsoft.sqlserver.jdbc.TDSReader.throwInvalidTDSToken(IOBuffer.java:4754)
at com.microsoft.sqlserver.jdbc.TDSParser.throwUnexpectedTokenException(tdsparser.java:100)
at com.microsoft.sqlserver.jdbc.TDSTokenHandler.onColMetaData(tdsparser.java:222)
at com.microsoft.sqlserver.jdbc.TDSParser.parse(tdsparser.java:77)
at com.microsoft.sqlserver.jdbc.TDSParser.parse(tdsparser.java:39)
at com.microsoft.sqlserver.jdbc.SQLServerConnection$1ConnectionCommand.doExecute(SQLServerConnection.java:1756)
at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:5696)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:1715)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectionCommand(SQLServerConnection.java:1761)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.setMaxRows(SQLServerConnection.java:203)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.doExecuteStatement(SQLServerStatement.java:742)
at com.microsoft.sqlserver.jdbc.SQLServerStatement$StmtExecCmd.doExecute(SQLServerStatement.java:689)
at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:5696)
at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:1715)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:180)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:155)
at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeQuery(SQLServerStatement.java:616)
If setMaxRows() is not called (or set to zero) everything works fine.
Driver Version: 4.0.2206.100
Happens with SQL Server 2012 Express and SQL Server 2005 SP3
JDK 1.7 and JDK 1.6
Reply:
Hello,
I have tested in SSMS 2008 this code
use AdventureWorksLT2008 go set showplan_all on go select 1 go
and i am getting 3 rows
The use AdventureWorksLT2008 followed by by the line go creates a connection or reuses a connection already open ( thats's the same as your code line con = DriverManager.getConnection(...) ). The 3 lines are corresponding to the 3 T-SQL statements.
I think you have a problem in your java code. I am not a specialist of Java but i am feeling that JDK 1.7 and 1.6 are coming from Oracle.
I would suggest you to have a look at http://docs.oracle.com/javase/7/docs/api/
For the preparedStatement.ExecuteNonQuery part , i have found
SQLException - if a database access error occurs, this method is called on a closed Statement, the given SQL statement produces anything other than a single ResultSet object, the method is called on a PreparedStatement or CallableStatement Please, could you include a test with Connection.isClosed()in your code just before the code line
"ResultSet rs = stmt.executeQuery("SELECT 1");"
As i wrote earlier, i am far to be a Java/JDBC specialist , and if i am replying , it is only because it seems i am the 1st person interested by your thead.
Have a nice day
PS : i know that Oracle has a support but you have to be registered to access it.
Mark Post as helpful if it provides any help.Otherwise,leave it as it is.
------------------------------------
Reply:
Of course it works in SSMS because that is not using the JDBC Driver.
The problem is a combination of changing to "showplan_all on" and setting calling setMaxRows() on the statement object.
It is definitely a bug in the Microsoft JDBC driver and has nothing to do with the JDK, Oracle or closed connections.
It is not caused by the backend, because the same code works fine when using the jTDS driver.
The "select 1" was just an example. The given Java code will reliably reproduce this bug with any SQL statement.
------------------------------------
Reply:
Hello,
I am far to be a specialist of JDBC but i would suggest you to have a look at this link :
You will find a link towards the good Microsoft.Connect.
If you estimate that it is a bug from Microsoft, don't hesitate to create a bug report in
https://connect.microsoft.com/SQLServer/Feedback
In this case, don't forget to post the identifier/link of this bug report ( to get some "useful" clicks which could help you to get a quick and maybe positive answer )
Have a nice day
Mark Post as helpful if it provides any help.Otherwise,leave it as it is.
------------------------------------
How to change the Type of Calendar
Hi
By mistake, I changed the calender type as Hijri. Actually I don't know, How I have done the changes. All the date format in my site is changed to Hijri. Even created date, modified date also. Now I want to revert it back to normal but I am not able to do that. I have done the changes in the regional settings in the Site Settings but it didn't reverted it.
My current Regional Setting of the Site is :
Locale : English (US)
Sort Order : General
Time Zone : Kuwait, Riyadh
Calendar : Gregian
Alternate Calendar : None
Can anybody help revert it back to normal calendar type?
Vairavan
Reply:
Vairavan,
Check out this posting to use PowerShell to change your Regional Settings and Locale:
http://sharedsharepointexperiences.blogspot.com/2011/03/sharepoint-2010-changing-regional.html
thx.
Patrick Drews
------------------------------------
Delete bdedrive/bitlocker drive - bcdboot / diskpart problem
hi
I am trying to delete the bitlocker drive from a bunch of VDI machines on our corporate system..
What I'm doing is:
cmd -> bcdboot C:\windows /s C:
Then diskpart
select disk 0
select part 1
active
exit
Then a reboot
Then ..well.. then I should be able to delete the bitlocker drive.. but the VDI just hangs at boot.. black screen..
so something is not right.. but what...
ideas?
Kindest regards, Martin
Reply:
Kindest regards, Martin
------------------------------------
Reply:
Hi,
This partition is a system partition and contains boot files. Remove this partition will cause the system to not boot.
You may follow the instructions in the following KB article for running a startup repair.
Tracy Cai
TechNet Community Support
------------------------------------
Reply:
hi tracy..
yes.. I am aware of that, which is why I am using bcdedit to "move" the properties of the systemdrive to C:
I am following instructions from several different sources which describe the same procedure... incl. MS mvp's..
Kindest regards, Martin
------------------------------------
Two keys not working after coffee spill.
I spilled coffee about three days ago all over my desk, some of it getting on my keyboard.
My keyboard is a Digital Media Pro keyboard. I tried to tilt it some that some/most of the coffee would drain out of it, and when I tried using it shortly after, I noticed that the ctrl key to the left wasn't working and my enter key wasn't working. For now, I'm using the ctrl key on the right and the enter key on the numerical keypad.
I tried searching for what to do but gave up after a bit. Is there any way to fix it now?
Reply:
------------------------------------
Reply:
------------------------------------
VBScript to change VNC passwords?
Dear All,
I want to change VNC password to all the systems in my office.
Thanks & Regards Dominic Palraj
Reply:
Hi Dom, you might get better answers in the scripting guys forum. IIRC VNC passwords were set in the registry, so you really just need an example of how to modify the registry remotely via VBS, then customize it to set your VNC password in the particular registry key that your version of VNC stores that info (I seem to recall that each verson of VNC used a different key) Good luck.
http://social.technet.microsoft.com/Forums/en-US/ITCG/threads
Don't forget to mark your posts as answered so they drop off the unanswered post filter. If I've helped you and you want to show your gratitude, just click that green thingy.
------------------------------------
SSIS 2008 Package to Insert/Update from SQL Source TO Oracle Destination Problem
Good Morning,
I face the following problem while creating a package to read data from sql server to insert or update to oracle table:
1- Conditional split not working at all to differ between existing records and new one (ISNULL(COL_ID)) for new records --- and if i got the conditional default result it working in insert mode always.
2- I'm also trying to execute sql script with MERGE STATEMENT to check the source and destination and if matched then update , if not matched then insert ... same problem always going to insert.
3-AM using ADO.NET to connect to ORACLE server with ADO.NET DESTINATION
ANY HELP PLEASE ??
firewall ports for CAS to Primary Site Server
Hi All
Please can you anyone tell me of any of the firewall ports required for CAS to communicate to the Primary Site.
I have seen a internet site stating the following ports
On the CAS-Server "SSB Port" = 4022On the P01-Server "SSB Port" = 4023
but not sure if this is correct, the databases for each CAS and PO1 will be local for each role.
Many thanks
Kabir Hussein
Reply:
Here is a Technical Reference for the ports used in Configuration Manager 2012
http://technet.microsoft.com/en-us/library/hh427328.aspxKind Regards, Tom Ziegler http://www.sccmguy.com | Twitter @Tom_Ziegler
------------------------------------
Reply:
Hi Tom
thanks for the link, i am struggling to see what ports the CAS Server would communincate with a Site Server.
thanks
kabir
Kabir Hussein
------------------------------------
Reply:
Look at the two sections in this article (Install a central administration site and install a primary site that joins an existing hierarchy).
This should give you the information you are looking for.
http://technet.microsoft.com/en-us/library/gg712320.aspx
Kind Regards, Tom Ziegler http://www.sccmguy.com | Twitter @Tom_Ziegler
------------------------------------
Reply:
Hi Tom
sorry to be a pain, but i have looked at the link and still dont see where the ports are mentioned for CAS to Site Servers.
Thanks
Kabir
Kabir Hussein
------------------------------------
[SOLVED] How do I get rid of this folder in my user folder?
I was trying to get rid of some of the useless reappearing folders in my user folder (like Searches) by using the instructions in this thread: http://social.technet.microsoft.com/Forums/en/w7itproui/thread/5278e3da-c24c-4889-bc57-6257a3fe7d7f
However, I messed up on the target location for the folder: I redirected it to the C:\Users\Public folder instead of the "dummy folder". So now the Public folder is in my user folder and I can't get rid of it. If I try, I get stuck in an endless loop of asking for permission. I can't undo the change by going to Properties and clicking Restore Default in the location tab, because it says "Folder cannot move because there is non redirectable folder at the same path, Access is denied".
The Previous Versions tab in Properties is useless too, because it just adds another Public folder to my user folder, but at least I can delete that one.
Is there any way I can change this back?
Reply:
------------------------------------
is there any posibility to play videos in sharepoint directly when am click on link which is present in Content Query webpart
Hiiiiiiiii.everybody.
is there any posibility to play videos in sharepoint directly when am click on link which is present in Content Query webpart
when am click the word document link or image link in content query webpart , it is opened directly in sharepoint site only.
my problem is when am click the video link or audio link which is present on content query webpart it shows save dialogue box to download.i don't want download that file.i want to play within sharepoint site only.
NOTE:these files(word document,image,audio,video) are stored in Document library.
please any one can help me on this.
Thank in advance.
ANIL
- Edited by ANILW270 Thursday, September 20, 2012 12:15 PM
Reply:
Unfortunately you can't get a video to play right in the browser similar to your Word docs. Of course SharePoint has several ways to play video in the browser (via webparts and code), but your situation is a little different.
You could modify the AllowedInlineDownloadedMimeTypes of the web application. Adding the video mime types to this list would probably get you what you're looking for. The video would still be downloaded, but your users would not be presented with a "save as" dialog, rather the video would download and play in their default media player (probably Windows Media Player).
Here is a Powershell to update the AllowedInlineDownloadedMimeTypes:
$webApp = Get-SPWebApplication("http://yourwebappurl") $webApp.AllowedInlineDownloadedMimeTypes.Add("video/mp4") $webApp.Update() Here is a blog post on this Powershell, it covers adding PDFs to the list, but its all the same: http://blogs.captechconsulting.com/blog/brandon-atkinson/allowing-pdfs-open-browser-sharepoint-2010-the-right-way
Here is a post with all the video mime types: http://www.encoding.com/correct_mime_types_for_serving_video_files
Brandon Atkinson
Blog: http://brandonatkinson.blogspot.com
------------------------------------
Reply:
Thanks for your suggestion.
ANIL
------------------------------------
Reply:
Hi Brandon,
I followed your instructions.Finally i got the result.thank you so much.
But i have some requirement i want to use some additional VIDEO TYPES which you are provided in the following link.
http://www.encoding.com/correct_mime_types_for_serving_video_files
Is there any Possibility to use additional extensions ------> .wma,.rm,.ra,.smi,.smil,.rp,.rt.
Please provide me MIME Types for that extensions.
Please help me on this.
Thanks,
ANIL
------------------------------------
Windows 7 Professional accessing an NT shared drive
My XP computer crashed so I am forced to Windows 7. I have windows 7 professional and I cannot access an NT shared drive. I don't need to or want to join the domain...that is fine. However, I need access to the files on a shared drive on the NT system.
Yes, I can ping the IP address of the machine.
Yes, the machine the shows up in the file manager under Network.
One troubleshooting step that I tried is to join the "workground" with the same name as the domain. My username and password for the local client machine is the same as on the domain.
Any ideas?
Thank you for not trying to start an argument.
- Changed type Kim Zhou Tuesday, October 9, 2012 8:45 AM
Reply:
Hi,
Before moving on, I would like to know if the shared drive is on the system which is in the domain environment. If so, please ensure you have permission to access it.
Please provide the more information about the network environment between the shared drive and Windows 7 which is used to access the shared drive.
Kim Zhou
TechNet Community Support
------------------------------------
How to implement document library folder structure promattically.
hi Friends,
I have few documetn library on my site with a perticular folder structure. Now some meta data (country ,Site and etc ) is applied to the document inside library. Now requirement is that i have created on webpart to display this douments based on Country and site filters (user combo box for counrty and side. Please refer below image for more understanding) i'm displaying documents here. but it is only displaying documents..but i want to display hole folder structure for these documents means based on my filter the document should be visible along with folder hierichy.. please suggest me how can i do this. Please share links. sample code if any availbale.
Regard, Ravindra Patil
optimum number of site collections
Hi,
For a public facing site with about 450 pages, we calculated that we would have to have about 40+ site collections. Is this a good amount of site collections to have? What are the disadvantages/advantages of having lot of site collections?
Also, we have implemented variations in our current public facing site which is in MOSS 2007 which we are moving to SharePoint 2010(its a total redesign). Considering variations, is it possible to have a subsite only under a particular variation and not under other variations? What are the possible impacts of such a configuration? Kindly help.
Amarnath
Reply:
Hi
For advantage and disadvantage of having lot of site collections please check this link
http://jopx.blogspot.in/2007/01/when-to-use-sharepoint-site.html
------------------------------------
How to create homegroup on computers with windows 7 through OpenVpn?
- Changed type Cloud_TS Monday, October 22, 2012 9:35 AM redirect
Reply:
Hi,
Please understand that Microsoft has the very limited resources about the third party program. For the issue related to OpenVpn, you may ask the question on OpenVpn forum for further discussion.
Thank you for your understanding.
Tracy Cai
TechNet Community Support
------------------------------------
Risk or disadvantage of changing the Authentication in sharepoint 2010 from NTLM to Kerberos
Hi,
Can someone explain me that how much the risk involved in changing the sharepoint 2010 Authentication from NTLM to Kerberos.
Thanks & Regards
Kousalyaa C
Smile Always
Reply:
From a security perspective, it isn't a risk. However, it does complicate setting up and maintaining the system which is a risk. What is the need to enable it?
There are very good reasons to enable it but it is harder to support. I don't like adding complexity if not needed as a personal preference.
JD Wade
Senior SharePoint Consultant, MCTS, MCITP
Horizons Consulting, Inc.
Blog: http://wadingthrough.com
Twitter: http://twitter.com/jdwade
------------------------------------
Reply:
http://sharepoint.nauplius.net
------------------------------------
Reply:
Hi JD Wade,
Thanks for your reply.
Our Client requirement is to connect a RSS Viewer web part to a SharePoint List on the same web app / site collection.
When we tried to connect we received the following error message
"The RSS web part does not support authenticated feeds".
So when googling i came to know that we need to change the authentication from NTLM to Kerberos.
I read so many articles, state that the configuration and the setup is very difficult and if anything goes wrong we would not able to login to the site.
But could you pls help to get a solution for the RSS viewer error without changing the authentication. I think the other solution is to write a custom code.
Thanks & Regards,
Kousalyaa C
Smile Always
------------------------------------
Reply:
SharePoint - Nauplius Applications
Microsoft SharePoint Server MVP - 2012
------------------------------------
Reply:
Hi Trevor,
Thanks for your reply.
Is there anyother way to get rid of RSS error without changing he authentication?
Smile Always
------------------------------------
Reply:
SharePoint - Nauplius Applications
Microsoft SharePoint Server MVP - 2012
------------------------------------
Wildcard IE Trusted Site Zone - GPO
Hi,
I have a problem,
I can add *://*.contoso.com and the gpo is successfully processed.
However, If i add *://*.nhs.uk we get proccessing failures.
(*://*.nhs.co.uk and *://*.nhs.com process fine too, looks like its a bug and not recognising the nhs.uk suffix?)
Anyone come accross this before?
- Edited by James Crowther Wednesday, October 3, 2012 4:11 PM
- Changed type Kim Zhou Monday, October 8, 2012 3:23 AM
Reply:
------------------------------------
Windows 8 Mail MS Account change is not reflected in the new settings.
Hi, I suspect this is a problem with the sequence I have followed in doing things.
I DID have a problem with a custom domain ...@mydomain.com being my MS account setup and email, which I understand is a known problem in W8.
In order to combat this I tried the following.
went here : https://account.live.com/
clicked "update email address"
change to another mail address (something@live.com) -just made up a new email address then and there.
It accepted it and was change... all is well...???
Not quite - now this appears to have created an ALIAS nothing more, and in Windows 8 Mail, it still not only points to the old account via my windows account that this was all bound to but also is set as the default email address for mail, which is 'not change able" (greyed out in "settings, accounts")
Now however I have been able to get the mail coming for this account, by chosing the "sync mail" option in settings, it still appears to be using the ...@mydomain.com under the hood, and I have no way to change this... Nor am I able to "send mail" as my new alias that account doesn't seem to exist anywhere exept in the "use this email", there is no ability to select it as an account in the "accounts" interface online (although perhaps Hotmail/outlook is in charge of this bit... perhaps I just need to set that up in the web interface of that mail... hmm... Yes in outlook.com accounts the new alias shows up as something I can use...)
UPDATE: This PERHAPS is ONLY in the Windows 8 Mail - interface, as I send an email, although it seems to allow me to choose only from the account that is bound to my MS account, and it implies that it iwll be from ...@mydomain.com it is infact being recieved at the other end from my new something@live.com account... its just in windows 8 mail there appears to be no way to change/update this... I have tried everything - even rebuilding the system to remove this "cached" value, but its somewhere inbetween the machine and the ms account...
I also am unable to create the something@live.com mail as a NEW MS account because its now "allocated" that alias to my other account...
Woohoo... all this online security stuff makes things superfun dontcha think?!?! How many billions of accounts and passwords and email addresses and social accounts am I going to end up with in life, and how many am I going to forget about and not even realise I have that information floating around... ?!?!
;)
- Edited by noJedi Monday, September 24, 2012 12:09 AM
- Changed type Arthur Xie Tuesday, September 25, 2012 7:20 AM
Reply:
Thank you for sharing your experiences. We will check it.
Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. "
------------------------------------
Reply:
FYI/followup
I ended up getting sick of the issues that surround the problems with custom domain and the "upgraded" accounts from hotmail to outlook.com, so I did what a lot have done/suggested and created a new account with outlook.com and gone from there... which solved most problems (apart from having another account!!! ;) hehe)
for those going through these frustrations this was my experience (on top of the above):
Create new account with outlook.com.
try to "Manage Account" and "Permissions" "Add Linked Account" to get access to my old account easily, "service is not available at this time please try later" (for weeks), so I followed a few suggestions, and the one that finally worked for me was:
Create YET ANOTHER(!!!) account with link both the "old" and the "new" to the newNEW account and that seemed to work... go figure (actually the first time I did it it also didn't work, but then I think I bound the "newNEW one to the new one BEFORE binding the old one, and that seemed to stick..." - I haven't been brave enough to delete any of these accounts at this stage, althought its inferred that this should be okay...
This seems to be smoother now (having a new "outlook.com" account)... so I'm a little happier... but now I have to figure out how to move across everything - all your contacts and various other stuffs, without doing it manually - it would be nice if there was a "merge linked accounts" function somewhere in the microsoft accounts stuff... maybe I should submit it as a feature request (but there may be a technical reason why this is not possible)... probably something to do with OpenID/OAuth stuff... man I hate that stuff... :)
------------------------------------
Code for Images slideshow in SharePoint using jQuery
Now let's add the JavaScript. Let's start with adding a Content Editor Web Part and opening it in the Source Editor mode. Paste the following code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> var Imtech = {} || Imtech; Imtech.Slideshow = function() { this.images = null; this.current = -1; this.wrapper = null; this.duration = 6000; this.delay = 3000; this.init = function() { this.images = loadImages(); this.wrapper.css("display", "none"); this.wrapper = $("div.slideshow", this.wrapper.parent(":first").append('<div class="slideshow"></div>')); this.wrapper.html('<img src="' + this.images[++this.current] + '"/>'); this.intervalObj = window.setInterval(this.showImage, this.duration + this.delay); } this.showImage = function() { if (++slideshow.current >= slideshow.images.length) { slideshow.current = 0; } slideshow.wrapper.fadeOut(slideshow.delay, function() { slideshow.wrapper.html('<img src="' + slideshow.images[slideshow.current] + '"/>'); slideshow.wrapper.fadeIn(slideshow.delay); }); } var loadImages = function() { var images = $("table.ms-summarystandardbody td.ms-vb2 a"); var imagesList = new Array(images.length); var i = -1; images.each(function() { imagesList[++i] = this.href.replace('about:', ''); }); return imagesList; } }; var slideshow; $().ready(function() { slideshow = new Imtech.Slideshow(); slideshow.wrapper = $("table.ms-summarystandardbody td.ms-vb2 a").parents("div[id^=WebPart]"); slideshow.init(); }); </script> - Changed type Rock Wang– MSFT Wednesday, February 15, 2012 6:54 AM no issue
- Edited by Kamal Pandey Friday, March 27, 2015 7:45 PM
Reply:
------------------------------------
Reply:
I dont see a question. you must be having issues running the script
have you added the pictures or just using the plain code?
------------------------------------
web analytics reports show no data
hi guys i have done phd in this issue
this issue is related to authentication in sqlserver sharepoint database ,please check the db owner of sharepointconfig database ,sharepoint staging and reporting database
other thing you can do is remove the previous web analytics service and then again create new service
- Edited by fahad aslam Friday, October 5, 2012 1:03 AM
- Changed type Qiao Wei Monday, October 8, 2012 7:52 AM
No comments:
Post a Comment