How to apply customization through visual studio to the SharePoint online

We have an existing SharePoint online site, now there are some changes in functionality is required, can we do that change through visual studio and send that change to
SharePoint online site? will it work?
or we have to do the same only through the JQuery or other client side code directly to the site?

Short list of what can't be done:
deploy any compiled code to a server. This includes DLLs, EXEs and full trust SharePoint Solutions.
deploy any file to a server disk drive. This includes anything usually stored in the 15 hive, site definitions, etc.
What can be done:
Anything that could also be done with SharePoint Designer.
Anything that is a file that can be loaded into a library. You can create and upload pages, as long as there is no server side code (C# etc.). These pages can include JavaScript, jQuery, CSOM, HTML, CSS, etc.
Create SharePoint 2013 apps. These can run custom code, but only if on an external to SharePoint servers.
See here for more:
http://technet.microsoft.com/en-us/library/sharepoint-online-developer-service-description.aspx (Developer Features in SharePoint Online)
Overview of SharePoint 2013 development:
http://msdn.microsoft.com/en-us/library/office/jj164084(v=office.15).aspx
Mike Smith TechTrainingNotes.blogspot.com
Books:
SharePoint 2007 2010 Customization for the Site Owner,
SharePoint 2010 Security for the Site Owner

Similar Messages

  • Scripting in Visual Studio 2013 against Sharepoint online - is it possible?

    Hi,
    I've been plowing through documentation on developing SharePoint apps but all I really want to do (right now anyways) is getting a more robust environment for coding scripts and HTML on SharePoint online 2013.
    Currently I'm using SharePoint Designer 2013 to edit scripts that are in webparts like the Content Editor.  It works but SharePoint Designer has terrible syntax highlighting and when things get complex it's a pain.
    Question is: How can I point Visual Studio 2013 Community at a SharePoint 2013 online (Office 365) site so that I can open scripts and edit/publish like is done in SharePoint designer?  I need to be able to achieve this without all the sharepoint server
    malarkey.
    Is it possible?  Can someone point me at a resource?  I've done a lot of digging but can't find anything so maybe not doable but couldn't hurt to ask.
    Thanks,
    Jerry

    While working with app development, especially SharePoint hosted apps you can use SPFastDeploy VS extension to deploy the changes from your app.
    https://visualstudiogallery.msdn.microsoft.com/9e03d0f5-f931-4125-a5d1-7c1529554fbd
    If you create a SharePoint will create set of script files where App.js is the Key file and for HTML you can use Default.aspx. You can make changes to these files and just deploy only those changes to the App which will save lot of time and you can see the
    changes immediately.
    Regarding VS 2013 community, i haven't tried yet specific to SharePoint apps development.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Can I use Visual Studio to develop Sharepoint Online workflows on existing site lists?

    I've been using Sharepoint Designer to develop workflows in Sharepoint 2013 on Office 365, but hitting limitations. I would like, for example, to be able to trigger a workflow when a list item is deleted.
    Perhaps naively I thought Visual Studio should be able to help. I've read of useful things like Remote Event Receivers - sounds exactly what I need. I've used VS before for Windows desktop applications in VB, so downloaded a trial version of VS 2013.
    Now I'm having doubts. It looks like I can create a Sharepoint App on a development site and create lists and workflows within it, but I can't access my existing lists to do anything more sophisticated than I already can in SPD. Is that right?
    I was expecting to be able to enter my Sharepoint site URL into Visual Studio somewhere, just like in SPD, and do wonderful things with my lists - but unless I'm missing something, that's not possible.
    Have I just got it completely wrong??!

    Hi,
    yes you can check those links
    http://blogs.msdn.com/b/bharatgupta/archive/2013/04/27/sharepoint-2013-app-workflow-with-custom-task-outcomes-in-o365.aspx
    https://msdn.microsoft.com/en-us/library/office/jj164126.aspx
    http://www.andrewconnell.com/blog/sharepoint-online-integrated-workflow-apps-workflows-as-apps-in-the-hostweb
    https://msdn.microsoft.com/en-US/library/jj220043.aspx
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • How to create a site column through Visual Studio 2010?

    I was trying to create lists, content type and site columns through Visual Studio 2010. But I could not figure out how to add site column? What item do I need to add for this and what kind of coding is to be done?

    Try this
    1. Create a Empty project in Visual studio.
    2.The Empty SharePoint Project template does not include any Features in the Features folder. To add a new Feature to this project, right -click the Features folder, and click Add Feature. This adds a new Feature component to the folder; double – click the
    Feature1 icon in Solution Explorer to modify the Feature ’ s
    metadata using the Feature designer. The Title and Description values appear on the Features pages in Site settings. It is a good idea to make these values
    descriptive so that administrators will know what they are adding to the site when they activate the feature.
    The feature ’ s scope determines where the feature can be activated within SharePoint. Please Note – Certain components, such as site columns, content types, Master pages, and Page Layouts, are installed at the site collection level and made available to all
    sites within the collection. These components require that the scope for the feature be set to “ Site. ”
    3. Next, add a new item to the project (Right – click project name ➪ Add ➪ New Item) and select the Empty Element template from the Add New Item dialog box.
    The Empty Element template is an XML fi le where you can enter CAML Field definitions.
    Following is what you will add in your elements.xml file –
    < Elements xmlns="http://schemas.microsoft.com/sharepoint/" >
    < Field ID="{76C140E1-D827-433B-AD38-257F9594B846}"
    Name="CustomCol"
    DisplayName="My Custom Site Column"
    Group="Custom group"
    Type="Text"
    Required="FALSE"/ >
    < Field ID="{5F516D92-969C-4661-81B9-C9210E2A2FDC}"
    Name="Choice Type"
    DisplayName="My Choice Type"
    Group="Custom group"
    Type="Choice"
    Required="FALSE" >
    < CHOICES >
    < CHOICE > Medical < /CHOICE >
    < CHOICE > Dental < /CHOICE >
    < CHOICE > Vision < /CHOICE >
    < CHOICE > Insurance < /CHOICE >
    < /CHOICES >
    < /Field >
    < /Elements >
    4. To deploy the Site Columns defined in the Elements file, right – click the project name in the Visual Studio Solution Explorer, and select Deploy. This will deploy the solution file to the solution store and activate the Feature in the targeted site collection.

  • How to deal with .csproj.user being created/modified by Visual Studio before the project is run?

    So, what is the problem?
    The problem is that Visual Studio considers .csproj.user a dependency of the project being run.
    Let us assume the following:
     - We have a freshly built solution containing a web application project `X` as the Start Up project. 
     - There are Silverlight applications served by the X web application.
     - There is no `X.csproj.user` file initially.
    Now consider the following flow of events:
     1. Open the solution in the Visual Studio
     2. Build.
     3. Run.
     4. A dialog is open to ask whether Silverlight debugging is to be enabled. Enable it.
     5. Stop the debugging session.
     6. Run again.
     7. Stop the debugging session.
     8. Run again.
    Assuming nothing is built at step 2 (because the solution is totally up to date), will there anything be built at steps 3 and 6?
    The answer is affirmative and here is why:
     - The X.csproj.user file is actually created by Visual Studio when the project is requested to run. What happens next is that the
    X.csproj.user file is considered a dependency of the project
    X by the Visual Studio. Being created just now the file is newer than the project binaries and so Visual Studio builds the project
    X. This explains why the project is built at step 3.
     - When we agree to enable Silverlight debugging Visual Studio records this agreement in the
    X.csproj.user file. So the file is modified again, after the project has started running. Restarting the debugging session is going to build the project
    X yet again, after all X.csproj.user is again newer than the binaries built a second ago. This explains why the project is built at step 6.
    Fortunately, nothing is built at step 8.
    Call me petty, but I want to avoid the builds at steps 3 and 6. The problem is that I am not allowed to check in the X.csproj.user file, because that is likely to create a mess with people accidentally checking in their private changes.
    On the other hand, I am unable to move its default content (along with the agreement to enable Silverlight debugging) into the project file
    X.csproj. Well, I can, but it is just being ignored.
    So, here is my question - is it possible to separate the content stored in a
    .csproj.user into two groups:
     - Permanent. These are the things I would love to have in the .csproj file. It will be checked in.
     - Temporary/Private. These are the things private to individual developers. Never checked in.
    Visual Studio already allows this separation for certain properties - see the
    Apply server settings to all users (store in project file) checkbox in the Web properties tab of a Web application project - http://olalalittlen.wordpress.com/2011/07/20/vs-tips-managing-server-settings-in-web-projects-for-multi-developer-scenarios/.
    However, it is insufficient.
    Any other ideas on how to prevent the aforementioned redundant builds are welcome too.

    Hi Mark,
    I think your issue is more about project itself. the saved information in the .csproj.user settings is about the project's information.
    So I suggest you post your issue to the related project forum.
    web forms:http://forums.asp.net/18.aspx/1?Web+Forms
    mvc:http://forums.asp.net/1146.aspx/1?MVC
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When should we must create site pages through visual studio?

    Generally site pages are created through SP designer. But what are business requirement when we MUST create site pages through visual studio rather than designer? I
    mean situation should demand we MUST create site pages through visual studio rather than designer. Need some example .

    Hi Sunil,
    when it contains code behind
    http://blogs.msdn.com/b/kaevans/archive/2010/06/28/creating-a-sharepoint-site-page-with-code-behind-using-visual-studio-2010.aspx
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • How do I receive a student discount from the Apple online store?

    How do I receive a student discount from the Apple online store?

    login to the store from campus and select the education store, select your Uni and away you go.
    I just did it, 64GB wifi on order

  • How to edit content in Visual Studio

    Hello,
    I used Windows App Studio to create an app:
    http://www.windowsphone.com/en-ca/store/app/%E5%A6%99%E6%B3%95%E8%93%AE%E8%8F%AF%E7%B6%93%E8%A7%80%E4%B8%96%E9%9F%B3%E8%8F%A9%E8%96%A9%E6%99%AE%E9%96%80%E5%93%81/388838ac-7fb1-4a6c-9583-634d5199e6c7
    However, there is a word limitation for each page.  Hence, I download Visual Studio Express 2013 for windows.  
    I use Visual Studio to open my Source Code for the app above (the source code is generated when I publish the app), and i try to find my "words" context.  I went through all the folders at Solution Explorer on my right hand side, but i am
    unable to find my content.   I click the "box" that should have contained my text at Main Page. Xaml, and that empty box is called Hubsection.
    I want to make my 2 pages content in my current app into 1 page.  At Windows app studio, they said I have too many words, and i must break it into 2 pages.  
    Please help me if you know what to do.
    Thanks!
    Mucc

    Hi,
    Here is a sample code to send email:
    public static string SendEmail(
    SPWeb spWeb,
    string from,
    string to,
    string cc,
    string bcc,
    string subject,
    string body,
    bool isBodyHtml)
    LogHelper.LogMethodStart(logger, "SPEmailHelper", "SendEmail");
    string emailSummary;
    var messageHeaders = new StringDictionary();
    ValidationHelper.VerifyStringArgument(to, "to");
    ValidationHelper.VerifyStringArgument(from, "from");
    ValidationHelper.VerifyStringArgument(subject, "subject");
    ValidationHelper.VerifyStringArgument(cc, "cc");
    ValidationHelper.VerifyStringArgument(bcc, "bcc");
    messageHeaders.Add("to", to);
    messageHeaders.Add("from", from);
    messageHeaders.Add("subject", subject);
    messageHeaders.Add("cc", cc);
    messageHeaders.Add("bcc", bcc);
    string mimeType = "text/plain";
    if (isBodyHtml)
    mimeType = "text/html";
    messageHeaders.Add("content-type", mimeType);
    bool sendMail = SPUtility.SendEmail(
    spWeb,
    messageHeaders,
    body);
    if (sendMail)
    emailSummary = "<EmailMessage>" +
    "<To>" + to + "</To>" +
    "<From>" + from + "</From>" +
    "<Subject>" +
    SPEncode.HtmlEncode(subject) +
    "</Subject>" +
    "<CC>" + cc + "</CC>" +
    "<BCC>" + bcc + "</BCC>" +
    "<Body>" +
    SPEncode.HtmlEncode(body) +
    "</Body>" +
    "</EmailMesage>";
    else
    throw new SafException("Failed to send email.");
    LogHelper.LogMethodEnd(logger, "SPEmailHelper", "SendEmail");
    return emailSummary;
    Source: https://www.collaboris.com/blogs/collaboris-blog/mark-jones/2012/11/06/code-sample-how-to-programmatically-send-an-email-in-sharepoint#.VN3GG9eqqko
    Please remember to up-vote or mark the reply as answer if you find it helpful.

  • How to create dll in Visual Studio 2008 in Visual C++

    Hello,
    I have insatlled Visual Studio 2008. I have to create DLL in Project
    type Visual C++.
    Which Template i have to select to reate dll, MFC DLL or Class
    Library?.
    I have to call or import this dll in Windows Forms Application. How
    can i do this. Please give details procedure to do this.

    If we look at how  AFX_CLASS_EXPORT and AFX_CLASS_IMPORT  are defined in afxv_dll.h we see the following.
    #define AFX_CLASS_EXPORT __declspec(dllexport)
    #define AFX_CLASS_IMPORT __declspec(dllimport)
    So, when exporting our classes from our DLL we want the class declarations from the DLL to look like this:-
    class __declspec(dllexport) CMyClass : public CObject
    And, when importing our C++ classes into our application we want the class declarations from the DLL to look like this:-
    class __declspec(dllimport) CMyClass : public CObject
    OK, so here's how I do things.
    In the stdafx.h file for the export DLL, include two #defines at the bottom of the file like this:-
    #define _MYLIB_DLLAPI_
    #define _MYLIB_NOAUTOLIB_
    Now, in the main header file for your DLL, say mylib.h (the main 'point of entry' header for your DLL that you will include in you application later), add the following at the top:-
    // The following will ensure that we are exporting our C++ classes when
    // building the DLL and importing the classes when build an application
    // using this DLL.
    #ifdef _MYLIB_DLLAPI_
        #define MYLIB_DLLAPI  __declspec( dllexport )
    #else
        #define MYLIB_DLLAPI  __declspec( dllimport )
    #endif
    // The following will ensure that when building an application (or another
    // DLL) using this DLL, the appropriate .LIB file will automatically be used
    // when linking.
    #ifndef _MYLIB_NOAUTOLIB_
    #ifdef _DEBUG
    #pragma comment(lib, "mylibd.lib")
    #else
    #pragma comment(lib, "mylib.lib")
    #endif
    #endif
    Now, just declare all the C++ classes you want exported from the DLL like this:-
    (Note: Any C++ classes not declared with MYLIB_DLLAPI will not be exported from the DLL)
    class MYLIB_DLLAPI CMyClass : public CObject
    regards,
    Matt John
    complete variety of quilts is availabale here!
     PR: wait...
     I: wait...
     L: wait...
     LD: wait...
     I: wait...
    wait...
     Rank: wait...
     Traffic: wait...
     Price: wait...
     C: wait...

  • How to do regstration of Visual studio express 2008

    Hi I have some supporting Development tools, which run on the 2008 platform. I on my new PC installed the visual studio Express 2008, but after month its blocked by missing registration. When I follow the registration link, the site is closed. SO how can
    I get the visual studio Express 2008 back in operation

    Visual C++ 2008 Express is no longer supported. You really should consider a newer version. Bear in mind that Visual Studio 2013 Community Edition is free, and contains way more features than your version.
    However if you need the 2008 version apparently if you download the ISO version of Visual C++ 2008 Express, you don't need to register. Try these links:
    Just VS 2008 Express
    http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso
    VS 2008 Express SP1
    http://download.microsoft.com/download/E/8/E/E8EEB394-7F42-4963-A2D8-29559B738298/VS2008ExpressWithSP1ENUX1504728.iso

  • How to apply signed patches to Studio 11 under Solaris 10?

    I'm running Solaris 10 6/06 on a Sun W2100z (x86_64) workstation. I have a long history of experience with Solaris, but I'm not terribly familiar with the things that are new or different with 10, including zones and the new patch management tools.
    I want to apply the latest patches to the various components of Studio 11, e.g. 120759-08,
    121018-04, etc. Since all the other patches I've applied (for other OS subsets) have been "signed" patches, I was hoping to stay consisent and apply signed patches to Studio 11 too. I've been foiled at every attempt, though, so I'm looking for some help.
    - if I use /usr/bin/updatemanager to select and attempt to apply the patches, I just get error
    messages saying that the patches could not be applied:
    121016-03 Sun Studio 11_x86: Patch for Sun C_x86 5.8 Compiler            Failed
    Utility used to install the update failed with exit code {0}.
    120762-02 Sun Studio 11_x86: Patch for Performance Analyzer Tools       Failed
    Install of update failed. Utility used to install the update is not able to add packages. Utility used to install the update failed with exit code 5.... and so on.
    - if I try using "smpatch" to add the patch, I get this error:
    $sudo smpatch add -i 120759-08
    add patch 120759-08
    Transition old-style patching.
    Patch 120759-08 failed to install due to a failure produced by pkgadd.
    pkgadd: ERROR: The package <SPROlang> is currently installed on the system in the
    global zone. To install the new instance of this package in the global
    zone only, you must specify the -G option. To install the new instance
    of this package in all zones you must first remove the existing instance
    of this package from the global zone first (via pkgrm) and then install
    the new instance of this package in all zones.
    pkgadd: ERROR: package <SPROlang> cannot be installed on this system/zone- if I try to use "patchadd" directly with the jar file in the current directory, I get this:
    $sudo patchadd 120759-08
    Validating patches...
    Loading patches installed on the system...
    Done!
    Loading patches requested to install.
    Done!
    Checking patches that you specified for installation.
    Done!
    Approved patches will be installed in this order:
    120759-08
    Verifying signed patch <120759-08>...
    Verifying digital signature for signer <es-signature>
    ERROR: Signature verification failed while verifying certificate <subject=Sun Microsystems Inc Root CA, issuer=GTE CyberTrust Root>:<unable to get local issuer certificate>.
    ERROR: Unable to verify signature for signer <es-signature>
    Signature invalid on signed patch <120759-08>.
    Patchadd is terminating.That's three strikes, and I'm out of ideas. Any suggestions for how one goes about applying signed patches for Studio 11? I'll switch to unsigned if I have to, but this seems like it shouldn't be this hard.
    Thanks,
    Tim

    I started a new thread on the updatemanager forum.
    http://forum.sun.com/jive/thread.jspa?threadID=107410
    I found that forum by googling for "updatemanager" and "zones", but
    I couldn't find any recent information on this issue. It seems the
    problem has been known about for a while now.
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to add servernode through visual admin

    Hi
    Can we add new server node through visual admin. I know how to do it with config tool. Can anybody help me to know how to do it with visual admin.
    Regards
    Rizvi

    It would appear that the Config tool is the proper way (and you are already capable in this way): 
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/c8c93f4d903b1ce10000000a114084/frameset.htm
    Section 2.1.2:  http://service.sap.com/~form/sapnet?_SHORTKEY=00200797470000065920&_OBJECT=011000358700000587802006E

  • How to apply persistence through command?

    In indesign6 sdk there is en example WaterFishPrice , my task is to persist the value in text item(text item obtaining value from pallete) .I have to apply  persistence through commands.Pls help in completing the task?

    You'll have to have some patience. I'm not a devleoper, and I don't know that John is, either. Your topic was moved from the general forum where nobody has a clue about your problem, to the SDK forum where people who can help will be found, but traffic is slow here.

  • Visual Studio keeps adding SharePoint features when opening a solution

    Hello everybody. 
    I'm facing a rather naughty problem. In a Windows 2012 environment (hosted inside an Azure virtual machine), with SharePoint installed, I created a VS SharePoint on-premise solution. I added a feature, and started adding lists, libraries, site columns, layout
    pages and such. At one point, every time I added a new list definition, the VS would create me a new feature. Which is not what I wanted, so I manually deleted the new feature and added the list to the first feature. No matter how much I try, VS keeps adding
    features instead of using the one I already got. 
    But that's a minor problem. After a while of adding lists, I did a check in to my TFS and closed the VS. After a couple of days, I open the VS again, and without a warning VS checked out the solution, checked out my only feature, removed the lists from it
    and created one feature for each library. I ended up with feature2.feature, feature3.feature, ..., feature50.feature files!!! Insane!!! I had to manually delete them and re-add them to my first feature. 
    Now I can't turn VS off without having this mess all over again. Why on Earth would somebody program VS to do this? Is there any way to turn this behaviour off?
    Thanks in advance!
    [Edit] Forgot to mention that I'm working with Visual Studio 2013.
    Fernando A. Gómez F.
    fermasmas.wordpress.com
    Galería de ejemplos

    Hi Fernando,
    Thank you for posting in MSND forum.
    Based on your issue, could you please tell me what template sharepoint project you create in VS2013?
    In addition, I find a similar thread about your issue, please refer the Xiaoying’s reply to check this issue.
    http://stackoverflow.com/questions/25857722/visual-studio-unexpectedly-adding-feature-on-load
    Or you could try to download a new sharepoint template in this VS2013 and then create it check if you still get the issue.
    I suggest you could try to create a same sharepoint project template from VS2013 on another machine and then check this issue again.
    If you have any update message, please feel free to let me know.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't sign in to Azure from Visual Studio with the 2.5 version of Azure tools

    I'm getting this message when I try to sign in to Azure from within Visual Studio:
    Sorry, but we're having trouble signing you in
    User account you used to sign in is not supported for this application. Please use a different account to sign in.
    View details
    CorrelationId: b17df2a1-a2ea-4548-a614-0700c06dbb0f
    Timestamp: 2014-11-26 21:48:55Z
    I'm using the same Microsoft account (a regular "Live Id", not an org account) as I use for logging into the Azure Portal.
    Anyone know how I can troubleshoot this?

    Hi,
    Based on your description, you have some issues when sign in azure from within Visual Studio, could you login successfully in IE? if all these fail, please contact with azure support, for this account issue, the support channel is the best choice, here
    is the support channel:
    http://www.windowsazure.com/en-us/support/contact/. If you can login successfully in IE, I suggest you try these options, 1) reopen the visual studio with administrator 2) remove the azure certificates then sign in again 3) if all these can't
    give you some help, please try to re-install the azure SDK or repair visual studio.
    Best Regards,
    Jambor 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Progress GIF Not Animated.

    Apex 4.2 Theme 21 Page Template; Application Defaut I have some pages in my application that take a while to load, so I wanted to display something to show the users while the page was loading. So from my menu I first branch to a page that will just

  • IPod registration through iTunes forces my country to US - should be UK

    I am trying to register my iPod Nano (3G 8GB if relevant) via iTunes but my country always comes up as United States. I log in to my account on the first page and choose 'United Kingdom' from the drop down list (even though I believe this only applie

  • SunFire X2200 and SAS JBOD J4200 - removal of hard disk issue

    Hello, We just purchased one X200 M2 server and a J4200 JBOD storage attached to SAS HBA of the server. The J4200 array works and we can access all the disks properly, create ZFS pools - all works. We have a problem when we try to identify the correc

  • Boot camp installation of windows 8.1

    Hey Gang, Struggling here with using boot camp to load windows 8.1. My machine: Macbook Pro retina, 15 mid-2014 2.8GHz, OS X 10.9.5 867GB Strange I cannot find straight forward directions on the web. Everything apparently works smoothly until windows

  • Wishlist issue in ATG migration to 10.1 version

    Hi all, I am doing ATG migration from 10.0.3 to 10.1 version and I am getting the following exception: **** Error     Seg Jan 14 09:17:49 BRST 2013     1358162269186     /atg/userprofiling/ProfileAdapterRepository     Error parsing the model: atg.rep