August 2007 - Posts
Per gli amanti della sidebar e dei relativi gadgets vi giro un post di Mark dove segnala il rilascio di un gadget appositamente sviluppato per catturare la propria immagine sulla web cam. Non riesco a capire il suo utilizzo :-( ma se volete provarla scaricatela qui!
Cosa c'è di meglio per una demo che rispolverare la mia biblioteca personale di hot video? Premetto che non li guardo più (giuro), ma tutti noi almeno una volta nella nostra vita dovremmo realizzare un Business Data Catalog che vada a gestire la nostra cara videoteca, mi sbaglio? Se qualcuno vuole contribuire alla lista vi giro la struttura delle due tabelle del DB che utilizzo:
- Actors
- actor_ID
- actor_aka
- actor_fname
- actor_lname
- actor_birthday
- Films
- film_ID
- actor_ID
- film_title
- film_author
- film_duration
Vi giro alcuni esempi di film della mitica Selen:
- La Regina degli elefanti
- Siamo agli sgoccioli
- Mia moglie davanti, dietro tutti quanti
- Selen contro i giganti
Vi giro un esempio circa l'aggiunta/eliminazione di siti SharePoint basati su dei templates. A volte capita di voler associare un template dinamicamente ad un nuovo sito, magari scegliendo proprio un "stp" nella template gallery del server MOSS.
Esempio#1 - Create SharePoint WebSite
1 Public Function CreatSite(ByVal siteName As String) As Integer
2 Dim ris As Integer
3 Dim SPSite As SPSite = Nothing
4 Dim SPWeb As SPWeb = Nothing
5 Dim SPCollection As SPWebCollection
6 Dim newWeb As SPWeb = Nothing
7
8 Try
9 SPSite = New SPSite("http://")
10 SPWeb = SPSite.OpenWeb()
11 SPCollection = SPWeb.Webs
12 'Aggiunta del nuovo sito web in base al LCID di installazione
13 SPWeb.AllowUnsafeUpdates = True
14 Select Case SPWeb.Language
15 Case "1033"
16 newWeb = SPCollection.Add("siteName", _
17 "title","description",SPWeb.Language, "template.stp", True, False)
18 SPWeb.Update()
19 Case "1040"
20 newWeb = SPCollection.Add("siteName", _
21 "title","description",SPWeb.Language, "template.stp", True, False)
22 SPWeb.Update()
23 End Select
24 'Controllo sulla riuscita dell'operazione
25 For Each SPWeb In SPCollection
26 If SPWeb.Name = siteName Then
27 ris = 1
28 Exit For
29 Else
30 ris = 0
31 End If
32 Next
33 Return ris
34
35 Catch ex As Exception
36 'Eccezione
37 Return -1000
38
39 Finally
40 If SPSite IsNot Nothing Then SPSite.Dispose() : SPSite = Nothing
41 If SPWeb IsNot Nothing Then SPWeb.Dispose() : SPWeb = Nothing
42 If newWeb IsNot Nothing Then newWeb.Dispose() : newWeb = Nothing
43
44 End Try
45 End Function
Esempio#2 - Delete SharePoint WebSite
1 Public Function DeleteSite(ByVal siteName As String) As Integer
2 Dim ris As Integer
3 Dim SPSite As SPSite = Nothing
4 Dim SPWeb As SPWeb = Nothing
5 Dim SPCollection As SPWebCollection
6
7 Try
8 SPSite = New SPSite("http://")
9 SPWeb = SPSite.OpenWeb()
10 SPCollection = SPWeb.Webs
11 'Eliminazione del website
12 SPWeb.AllowUnsafeUpdates = True
13 For Each SPWeb In SPCollection
14 If SPWeb.Name = siteName Then
15 SPWeb.Delete()
16 ris = 1
17 Exit For
18 Else
19 ris = 0
20 End If
21 Next
22 Return ris
23 Catch ex As Exception
24 'Eccezione
25 Return -1000
26
27 Finally
28 If SPSite IsNot Nothing Then SPSite.Dispose() : SPSite = Nothing
29 If SPWeb IsNot Nothing Then SPWeb.Dispose() : SPWeb = Nothing
30
31
32 End Try
33 End Function
Anche io su Facebook. Appena ho un attimo mi piacerebbe riflettere insieme a voi sulla quantità di stronzate che vengono fatte in questi ultimi tempi, una di queste è Facebook ed io come buon italiano mi ci butto a capofitto. Comunque adesso durante il giorno devo tenere aperti "fissi" 4 tabs di IE7, ma qualcuno ancora non ha pensato ad un gadget per Vista??
Technorati Tags:
Facebook,
Web 2.0
Sono contento di scoprire che Roberto Ruggeri "Senior Technical Strategist per Microsoft Worldwide Healt" segnali continuamente i passi avanti che la tecnologia made in MS compie sulle orme di standard "americani" per l'Healt. Finalmente una voce italiana ;-) Ricordo che nelle conferenze internazionali, scpecialmente sull'eGovernment (quindi anche sanità) MS non compare mai, mentre IBM, ORACLE e ADOBE la fanno da padroni....magari ne parrlerò più avanti!! Comunque segnalo una serie di articoli sull'Healt Common User Interface (MSCUI). Magari l'HL7 Italia potrà approfittare di questi sforzi e dare più spazio a soluzioni made in MS invece di rompersi la testa altrove ;-) Buon lavoro Roberto!
Stefano, sul suo blog segnala la disponibilità di questo book, secondo me molto interessante:
"The Family Guide to Digital Freedom, June 2007 edition - Lulu.com
The only book on software and digital technologies that no parent can ignore."
lo compro!
Il team di sviluppo delle specifiche XPS ha rilasciato una nuova release del tool che racchiude nuova documentazione e code sample. Download!!
Meet Team Italy. They have created software that will evaluate and determine psychological characteristics of humans by analyzing handwriting! Even yours truly gets an analysis. The results are surprising indeed :) Incredible stuff. Tune in! Look the video.....
Finalmente.....
The Business Data Catalog Definition Editor tool (or "BDC tool") is now available in the latest (August 2007) version of the downloadable MOSS 2007 SDK, which was just posted at http://www.microsoft.com/downloads/details.aspx?familyid=6d94e307-67d9-41ac-b2d6-0074d6286fa9&displaylang=en.
Overview
The Business Data Catalog Definition Editor provides a visual tool for creating an Application Definition for BDC in MOSS 2007. Features include:
- Underlying XML is abstracted by the design surface and properties window
- Drag and drop web methods, tables, or views to create line of business (LOB) connections.
- Entities and methods are created automatically from database metadata and WSDLs.
- Additional method instances can be added to further enhance the database or web service connection.
- Method instances can be tested from within the tool, enabling incremental development of LOB connections
read more....
MOSS comes in Standard and Enterprise versions. In a slightly nasty pricing move, these two platforms aren't separate, they're cumulative. To buy Enterprise CALs (client access licenses), you'll first need a Standard CAL for every user. That may be some serious milking of the revenue cow on Microsoft's part, but the two platforms are different enough that most customers will take Enterprise seriously. Whereas Standard carries the basic SharePoint security, collaboration, and content management tools, only Enterprise has the advanced Business Data Catalog search extensions, the business workflow tools, and the electronic forms processing extensions....read more

Thks to Giacomo Silvi ;-)
VIA Michael Gannotti
Michael segnala l'uscita di un template per la gestione di poadcast, il template e le info sono fortnite naturalmente "as-is" ;-)
Mauro segnala e commenta l'uscita di un nuovo white paper sulle capability di MOSS, da scaricare!
Technorati Tags:
MOSS,
SharePoint
More Posts
Next page »