Security violation from using underscores template

When using the template-function of the well-known underscore.js library I get an error:
Adobe AIR runtime security violation for JavaScript code in the application security sandbox (Function constructor).
In the browser this works fine. I don't see any security problems from using templates !?

I made some more tests: This code
var compiled = _.template("hello: <%= name %>");
air.trace(compiled({name : 'moe'}));
works when executed in  $(document).ready (jQuery), but
it fails in the air.InvokeEvent.INVOKE-eventlistener, which
is always triggered after document-ready.
Seems that everything is fine until the AIR-part of the app
is up.

Similar Messages

  • Security Violation when using -link to sun APIs

    I'm interested in a work around for this irritating (but non-critical) bug:
    When I create application docs that -link to the sun APIs, moving from my Javadoc pages to the sun API pages causes a browser security violation:
    Line: 13
    Error: Access is denied.
    The offending function is:
    function asd()
    parent.document.title="Object (Java 2 Platform SE v1.4.0)";
    You see, from my application, the 'parent' domain isn't java.sun.com.
    Only programmers see this in any significant way (with a debug dialog box popping up.) Others just see 'done with errors on page.'
    Can this get fixed? How? When?
    Thanks,
    F. Randall Farmer
    State Software, Inc.

    This is a known bug:
    http://developer.java.sun.com/developer/bugParade/bugs/4645058.html
    We hope to fix this for 1.4.2, but cannot guarantee it.
    The purpose of this Javascript is when using frames, it puts the
    name of the class in the window title. This enables you to
    not only see the name of the class when the window is open,
    but also see the name of the class when the window is
    minimized and appears on the Windows task bar.
    In the example shown, "Object" is the name of the class.
    The bug might be due to the fact that the <SCRIPT>
    element is neither in the <HEAD> nor in the <BODY>,
    but between them.
    -Doug Kramer
    Javadoc team

  • For some reason pages won't let me save a document from using a template?

    the save button doesnt even show only save as. does anyone know how to solve this please?

    What save button are we talking about? There is none.
    A template is always Save As… otherwise you would overwrite the template.
    A template is a template, it is the start of another document but set up as a good starting point.
    Peter

  • 'SNMP Security access violation' from Leopard

    Hi all,
    We're noticing on Leopard (not Tiger) that when a user tries to add a printer and lets the "Default" printer type browse the network, our switches log the following error +"SNMP Security access violation from <IP adress>+".
    This is going to be a security problem for us when we implement a new system that uses SNMP.
    This didn't occur in Tiger, and even happens if we disable Boujour and SNMP on the Leopard clients.
    Can anyone please advise what is happening and how I might be able to stop these SNMP traps being sent when browsing for a printer??
    Thanks in advance.

    Hi Jon,
    This information may be useful to you:
    http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627124348873889228353475&threadId=398409
    Regards,
    Peter.

  • Security Violation Error while running schedule task from OIM.

    Hi All,
    I am getting this error while running a custom java schedule task from OIM:
    *Thor.API.Exceptions.tcAPIException [EJB:010160] Security Violation: User '<anonymous>' has insufficient permission to access EJB:*
    type=<ejb>,application=Xellerate,module=xlDataObjectBeans.jar,ejb=tcReconciliationoperations,method=createDeleteReconciliationEvent
    at Thor.API.Operations.tcReconciliationOperationsClient.createDeleteReconciliationEvent(UnKnown Source).
    I got this error as soon as my code start creating Delete Reconciliation Event.
    Note: I have already protected the JNDI Namespace.
    Please provide some pointers.
    Regards,
    Sunny

    Hi Rajiv,
    Check this:
    package com.centrica.iam.scheduletask;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileFilter;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.HashMap;
    import java.util.Hashtable;
    import java.util.Iterator;
    import java.util.Set;
    import oracle.iam.connectors.common.ConnectorLogger;
    import com.thortech.xl.dataaccess.tcDataSet;
    import com.thortech.xl.dataaccess.tcDataSetException;
    import com.thortech.xl.dataobj.PreparedStatementUtil;
    import com.thortech.xl.orb.dataaccess.tcDataAccessException;
    import com.thortech.xl.scheduler.tasks.SchedulerBaseTask;
    import Thor.API.tcResultSet;
    import Thor.API.Exceptions.tcAPIException;
    import Thor.API.Exceptions.tcInvalidValueException;
    import Thor.API.Operations.tcLookupOperationsIntf;
    import Thor.API.Operations.tcReconciliationOperationsIntf;
    import Thor.API.Operations.tcSchedulerOperationsIntf;
    public class CustomFlatFile extends SchedulerBaseTask {
         private static tcSchedulerOperationsIntf schedulerIntf;
         private static tcLookupOperationsIntf lookupIntf;
         private static tcReconciliationOperationsIntf reconIntf;
         String sObjectName;
         String LookupName;
         String LookupName2;
         String FileDirectory;
         String FileName;
         String File;
         String delimeter;
         String isDeleteTrue;
         HashMap<String, String> attrMap = new HashMap();
         HashMap<String, String> delMap = new HashMap();
         HashMap<String, String> finalMap = new HashMap();
         ArrayList list = new ArrayList();
         public boolean isReconStopped;
         public CustomFlatFile()
              isReconStopped = false;
         public void init()
              LookupName = getAttribute("Attribute Lookup Name");
              FileDirectory = getAttribute("Directory Path");
              FileName = getAttribute("File Name");
              delimeter = getAttribute("Delimeter");
              sObjectName = getAttribute("Resource Object Name");
              isDeleteTrue = getAttribute("Is Delete Allowed");
         public void execute(){
              try {
                   System.out.println("Start Exceute");
                   //Initiate lookupIntf
                   lookupIntf = (tcLookupOperationsIntf)getUtility("Thor.API.Operations.tcLookupOperationsIntf");
                   reconIntf=(tcReconciliationOperationsIntf)getUtility("Thor.API.Operations.tcReconciliationOperationsIntf");
                   catch (tcAPIException tcapiexception){
                        tcapiexception.printStackTrace();
                        //logger.error(classname, s, tcapiexception.toString());
                        //logger.setStackTrace(tcapiexception, classname, s, tcapiexception.getMessage());
                   catch (Exception excep){
                        excep.printStackTrace();
                        //logger.error(classname, s, excep.toString());
                        //logger.setStackTrace(excep, classname, s, excep.getMessage());
                   attrMap = readLookup(LookupName);
                   System.out.println(attrMap.toString());
                   readFile();
                   if (isDeleteTrue.equalsIgnoreCase("true"))
                        performDelete();
                   System.out.println("Finish Execute");
         public void performDelete()
              System.out.println("Start Perform delete");
              int k = list.size();
              System.out.println("list size " + list.size());
              try
                   Thread.sleep(15000);
         /*     Hashtable ahashtable[] = new Hashtable[k];
              Hashtable hashtable = new Hashtable();
              for (int i=0;i<k;i++)
                   hashtable.put("User Id", list.get(i));
                   ahashtable[i] = hashtable;
                   System.out.println(list.get(i));
              Set set = reconIntf.provideDeletionDetectionData(sObjectName, ahashtable);
              System.out.println("Set--" + set.toString());
              tcResultSet tcresultset = reconIntf.getMissingAccounts(sObjectName, set);
              System.out.println("tcresultset - " + tcresultset.getRowCount());
              if (!(tcresultset.isEmpty()))
                   long l[] = reconIntf.deleteDetectedAccounts(tcresultset);
                   for (int i1=0;i1<l.length;i1++)
                        System.out.println("delete recon key " + l[i1]);
              //Get the existing list of Managed users
                   tcDataSet tcdataset = new tcDataSet();
                   tcDataSet tcdataset1 = new tcDataSet();
                   String query = "select orf.orf_fieldname,prf.prf_columnname, sdk.sdk_name from orf, sdk, pkg, tos, prf, obj " +
                             "where pkg.obj_key = obj.obj_key and pkg.pkg_key = tos.pkg_key and tos.sdk_key is not null " +
                             "and tos.sdk_key=sdk.sdk_key and tos.tos_key=prf.tos_key and prf.prf_iskey='1' and prf.orf_key=orf.orf_key " +
                             "and orf.orf_parent_orf_key is null and obj.obj_name='" + sObjectName + "'";
                   tcdataset.setQuery(getDataBase(), query);
                   tcdataset.executeQuery();
                   String FFName = tcdataset.getString("prf_columnname");
                   String FName = tcdataset.getString("sdk_name");
                   String ROFName = tcdataset.getString("orf_fieldname");
                   System.out.println("form- " + FName + " Field- " + FFName);
                   query = "select " + FFName + " from " + FName + " udtable, oiu a, ost b " +
                             "where udtable.orc_key=a.orc_key and a.ost_key=b.ost_key and b.ost_status!='Revoked'";
                   System.out.println(query);
                   tcdataset1.setQuery(getDataBase(), query);
                   tcdataset1.executeQuery();
                   int i = tcdataset1.getRowCount();
                   ArrayList list1 = new ArrayList();
                   String s1 = null;
                   System.out.println("N. of rows--" + i);
                   for (int j=0;j<i;j++)
                        tcdataset1.goToRow(j);
                        s1 = tcdataset1.getString(0);
                        System.out.println("s1---" + s1);
                        if (!(list.contains(s1)))
                             list1.add(s1);
                             System.out.println("under if--" + s1);
                   //Getting the existing list of unmanaged users
                   query = "select distinct (b.rcd_value) from rce a, rcd b, orf c, obj d where a.rce_key=b.rce_key and " +
                             "b.orf_key=c.orf_key and c.orf_fieldname='" + ROFName + "' and a.rce_status!='Event Linked' " +
                                       "and a.obj_key = d.obj_key and d.obj_name='" + sObjectName + "'";
                   tcdataset1.setQuery(getDataBase(), query);
                   tcdataset1.executeQuery();
                   i = tcdataset1.getRowCount();
                   System.out.println("No. Of Unmanaged Users " + i);
                   for (int j=0;j<i;j++)
                        tcdataset1.goToRow(j);
                        s1 = tcdataset1.getString(0);
                        System.out.println("s1---" + s1);
                        if (!(list.contains(s1)))
                             list1.add(s1);
                             System.out.println("under if--" + s1);
                   int k1 = list1.size();
                   System.out.println("list1 size--" + k1);
                   for (int j1=0;j1<k1;j1++)
                        delMap.clear();
                        delMap.put(ROFName, (String)list1.get(j1));
                        System.out.println(delMap.toString());
                        long l = reconIntf.createDeleteReconciliationEvent(sObjectName, delMap);
                        System.out.println("delete recon key--- " + l);
              catch (Exception exception)
                   exception.printStackTrace();
         public void readFile(){
              String s = "readFile()";
              //logger.setMethodStartLog(classname, s);
              HashMap map = new HashMap();
              try {
              File = getFile();
              BufferedReader reader = new BufferedReader(new FileReader(new
                        File(File)));
              String line = "";
              int k = attrMap.size();
              String value[] = new String[k];
              String Header[]= new String[k];
              if (delimeter.equalsIgnoreCase("|"))
                   delimeter = "\\" + delimeter;
                   line = reader.readLine();
                   Header = line.split(delimeter);
                   while((line = reader.readLine()) != null)
                        value = line.split(delimeter);
                        k = value.length;
                        for (int i = 0;i<k;i++){
                             finalMap.put(attrMap.get(Header), value[i]);
                        System.out.println(finalMap.toString());
                        System.out.println("Start Ignoring Event");
                        if (!(reconIntf.ignoreEvent(sObjectName, finalMap)))
                             System.out.println("Not Ignored");
                        long l1 = reconIntf.createReconciliationEvent(sObjectName, finalMap, true);
                        System.out.println("Recon Key--" + l1);
                        else
                             System.out.println("ignore event ---" + finalMap.toString());
                        list.add(finalMap.get("User Id"));
                        System.out.println(list.size() + "add--" +finalMap.get("User Id") );
                        finalMap.clear();
              catch (Exception exception)
                   exception.printStackTrace();
         public boolean stop(){
              String s = "stop()";
              //logger.setMethodStartLog(classname, s);
              //logger.info(classname, s, "Stopping Reconciliation........");
              isReconStopped = true;
              //logger.setMethodFinishLog(classname, s);
              return true;
         FileFilter fileFilter = new FileFilter()
         public boolean accept(File file)
         String sFilePath = file.getName();
         if( sFilePath.startsWith(FileName) )
         return true;
         else
         return false;
         public String getFile() throws FileNotFoundException, Exception{
              String s = "getFile()";
              //logger.setMethodStartLog(classname, s);
              String s1;
              File dir =     new File(FileDirectory);
              File[] files = dir.listFiles(fileFilter);
              if (files.length ==0)
                   throw new FileNotFoundException();
              if (files.length>1)
                   throw new Exception("Multiple Matches found for this file name");
              s1 = files[0].toString();
              //logger.setMethodFinishLog(classname, s);
              return s1;
         public HashMap readLookup(String s1){
              String s = "readLookup()";
              //logger.setMethodStartLog(classname, s);
              HashMap map = new HashMap();
              try {
              tcResultSet tc1=     lookupIntf.getLookupValues(s1);
              int i = tc1.getRowCount();
              for (int j = 0;j<i;j++){
                   tc1.goToRow(j);
                   map.put(tc1.getStringValue("Lookup Definition.Lookup Code Information.Code Key"), tc1.getStringValue("Lookup Definition.Lookup Code Information.Decode"));
              catch (tcAPIException tcapiexception){
                   tcapiexception.printStackTrace();
                   //logger.error(classname, s, tcapiexception.toString());
                   //logger.setStackTrace(tcapiexception, classname, s, tcapiexception.getMessage());
              catch (Exception excep){
                   excep.printStackTrace();
                   //logger.error(classname, s, excep.toString());
                   //logger.setStackTrace(excep, classname, s, excep.getMessage());
              return map;

  • How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    How can i remove secure files from the trash? I tried click away the secure notification in info, but still i cann't remove them. Is there a buttoncombination to use?

    If you are unable to empty the trash, try holding the Option key while selecting Empty Trash.
    Otherwise, some steps in the following link may help you.
    http://support.apple.com/kb/ht1526

  • RMS Installation using Retail Templates from RA

    Hi,
    I have pre-installed RA 13.2.3, and now I need to install RMS 13.2.3 in the same server (64 bit environment). So, I'm thinking of installing RMS in a different database instance in the same Oracle Software. Can I use the same Retail Template from RA to create a database instance for RMS ? The template includes the following files:
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.ctl
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.dbc
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.dfb
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release_variables.txt
    I tried using the template files from RMS, but the database instance installation fails. It goes on fine with template from RA, but I face problems with required patches installation during RMS Schema Creation phase. Can I or can't I use Retail Database Creation Templates from RA to create RMS database instance ?

    Thanks ErikYkema,
    Yes, RA means Retail Analytics. Installation Guide says "if you have these files already present, then you can continue with those". It would suggest that for database installation of all Retail Family, the same template would work if they have the same file names. I wouldn't have risked using the same template, but using the template from RMS throws me error, while the one with RA runs smoothly. So, I wanted to confirm. Thanks for your reply :)

  • I am using Quicken 2007 (16.1.4) and had no problems before upgrading to OS 10.10 Yosemite.  When attempting to download security updates from my financial institutions (UBS and Fidelity), I get the following error OL-290.  Any fixes?

    I am using Quicken 2007 (16.1.4) and had no problems before upgrading to OS 10.10 Yosemite.  When attempting to download security updates from my financial institutions (UBS and Fidelity), I get the following error:  Quicken could not connect to the server.  Please try again later.  [OL-290]  I understand this is because of a mismatch between SSL certificates at the financial institutions and Apple's SSL certificate included with OS 10.10 Yosemite.  Any fixes to this issue?

    I have the same problem but Q for Mac 2015 does not meet my needs. Is there a fix for this problem?

  • What would keep a file with text in templates from updating all the site pages using that template?

    I am using the trial version of DW and I have a file in Templates with a defined banner with moving text in it. I have subsequent pages for the entire site and the template file is part of each of those. when I want change some part of the file in template and then I save, each page is also changed. Or at least it did. I tried Windows and Apple with the same result. I am at a loss. I tried modify but that did not work either. I am missing something obvious.

    Did you check the code in your template.dwt file for errors?
    http://validator.w3.org/
    Did you save over or rename your original Template.dwt file?
    Did you move your Template.dwt file from it's Templates folder?
    Nancy O.

  • I am currently working with the icontact site for a daily devotional my husband and I send out efery day. Firefox is prohibiting me from using pictures I have in the picture library 9f that secure webside. Please advise

    I have been working with the icontact mass emailing company for over 2 1/2 years. Just tonight, FireFox is preventing me from using many of my own pictures I have saved in the icontact library. also it is preventing me from uploading any new pictures. Please advise. This is very frutstrating.

    -> Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    -> [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    -> Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    -> [[Troubleshooting extensions and themes]]
    Check and tell if its working.
    '''Plugins Updates'''
    -> Your Flash plugin is quite older. You need to update it.
    * Adobe Flash Player 11.0.1.152 (3.59 MB)
    * http://get.adobe.com/flashplayer/
    -> Your Java plugin is quite older. You need to update it.
    * Java Version 6 Update 29
    * http://java.com/en/download/index.jsp
    * [[Using the Java plugin with Firefox]]
    -> Update All your Firefox Plugins
    * https://www-dev.allizom.org/en-US/plugincheck/
    * http://www.mozilla.com/en-US/plugincheck/
    '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • [svn] 2818: Fix up the remaining uses of stage that might cause a security violation.

    Revision: 2818
    Author: [email protected]
    Date: 2008-08-12 12:01:36 -0700 (Tue, 12 Aug 2008)
    Log Message:
    Fix up the remaining uses of stage that might cause a security violation.
    QE: YES
    Doc:
    Checkintests: YES
    Reviewer: Alex
    Bugs:
    mx/controls/DataGrid.as
    mx/controls/List.as
    Listen to mouse down on sandbox root instead of systemManager. Fix remove listener code.
    mx/controls/sliderClasses/SliderThumb.as
    Listen to mouse down on sandbox root instead of systemManager. Remove stage listener for MOUSE_MOVE since
    systemManager will add a stage listener automatically if the caller has access to the stage.
    mx/preloaders/DownloadProgressBar.as
    Use the DownloaderProgressBar's stageWidth/stageHeight properties instead of directly accessing the stage.
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/List.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/sliderClasses/Slide rThumb.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/preloaders/DownloadProgressB ar.as

    Revision: 2818
    Author: [email protected]
    Date: 2008-08-12 12:01:36 -0700 (Tue, 12 Aug 2008)
    Log Message:
    Fix up the remaining uses of stage that might cause a security violation.
    QE: YES
    Doc:
    Checkintests: YES
    Reviewer: Alex
    Bugs:
    mx/controls/DataGrid.as
    mx/controls/List.as
    Listen to mouse down on sandbox root instead of systemManager. Fix remove listener code.
    mx/controls/sliderClasses/SliderThumb.as
    Listen to mouse down on sandbox root instead of systemManager. Remove stage listener for MOUSE_MOVE since
    systemManager will add a stage listener automatically if the caller has access to the stage.
    mx/preloaders/DownloadProgressBar.as
    Use the DownloaderProgressBar's stageWidth/stageHeight properties instead of directly accessing the stage.
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/List.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/controls/sliderClasses/Slide rThumb.as
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/preloaders/DownloadProgressB ar.as

  • Migrating database from windows to linux using dbca templates

    Hi every one,
    Is it possible to migrate Oracle10g database from Windows to Linux by using DBCA templates?????????????
    If yes please guide me, as i tried it and am getting error while creating database on linux using DBCA templates of Windows server.
    Warm regards,
    Veeresh.S
    (Oracle DBA)

    With DBCA you can create a new database, delete a database, create ASM, and manage templates.
    There's no option of migrating a database from one platform to the other. If you want to migrate your database from Windows to Linux you have 2 ways of doing it:
    1 using IMP/EXP Export you db on windows and Import it on Linux.
    2 Use across platform transportable tablespace if you db is already on 10g.
    Regards,
    Tony

  • Use web template to open a report from a menu

    Hi all,
    I have created one web template where I have a role menu that shows all reports that are available to the user. When the user clicks on one of these reports, the report displays in a new window. So far everything is working fine.
    But, I have also created another web template and I want the report that is displayed in a new window to use this template. How do I do this? I have been looking at the settings for the Role menu, but can't find anywhere to put the template name...
    Anyone have any ideas?
    Thanks and regards,
    Tove-Mette

    Hello,
    yes you can use the publish function, but only to add new entries.
    In Transaction pfcg (not in WAD or BEx) in SAP GUI and then select your role at the tab "Menu" you can add/remove/maintain/organize your menu.
    just click on a menu entry and take sth.like edit.
    Then you will see a link if you didn#t find the string &template_id= the system will take the standard template (Tranaction spro), and you can easily add or change this parameter.
    Hope that helps, please ask if you need further explanation.
    Regards
    Marcus

  • Collaborate WLPI 1.2C Remote Exception Security violation

    Hi all,We are having Collborate and WLPI 1.2c on weblogic 5.1. When we try to start workflow from using 'business message event' its giving following error. Can anybody know the settings required to eliminate the error. ThanksKiran "Fri Jul 13 15:29:39 EDT 2001:<I> <WLC> <Hub> INFO: Created conversation 056_add_po_006:1.0:ThrdPty-add-po_http://172.17.128.48:7001/ThrdPtyERPEnabler_0_995064026872Fri Jul 13 15:29:39 EDT 2001:<I> <WLC> <Hub> INFO: Enlisted trading partner ThrdPty-ERP in conversation 056_add_po_006:1.0:ThrdPty-add-po_http://172.17.128.48:7001/ThrdPtyERPEnabler_0_995064026872Fri Jul 13 15:29:42 EDT 2001:<I> <WLC> <Hub> INFO: Enlisted trading partner DM-ERP in conversation 056_add_po_006:1.0:ThrdPty-add-po_http://172.17.128.48:7001/ThrdPtyERPEnabler_0_995064026872Fri Jul 13 15:29:44 EDT 2001:<E> <WLC> <WLPI> ERROR: Cannot start WLPI instanceof template demo_po in organization DM: java.rmi.RemoteException: Security violation: insufficient permission to access method "

    How did you configure the security for the EJB, findAllUsers method. Did you use an annotation like @RolesAllowed.
    In this case you have to make sure the role(s) the user has, is also defined in the RolesAllowed annotation.
    technical session - http://middlewaremagic.com/weblogic/?p=7831

  • How to forward security credentials from one web service to another

    Here is what I am trying to do... I have a standalone client that invokes a message-level secured web service (WEBSERVICE A) on a Weblogic 9.1 server (SERVER A) with a username and a password, and this web service (WEBSERVICE A) uses the same username and password from the client, and invokes another message-level secured web service (WEBSERVICE B) deployed on a different WebLogic 9.1 server (SERVER B).
    Does WebLogic 9.X automatically asserts the same client credentials when the WEBSERVICE A invokes WEBSERVICE B on a different server? If it doesn't, what is the best way to do that? Thanks.

    You can save the site (spweb) as a template, and then use the template to create a new site in another web application. 
    When you save the site, it's saved to the solutions gallery. You can download the saved site from the solutions gallery, and then use it to create the new site collection. 
    If the site is a publishing site, you'll need to de-activate the publishing features first.
    You can save the site as a template via the sites settings page, or via SharePoint designer.
    Have a look here: http://office.microsoft.com/en-us/sharepoint-designer-help/save-a-sharepoint-site-as-a-template-HA101782501.aspx
    Regards, Matthew
    MCPD | MCITP
    My Blog
    View
    Matthew Yarlett's profile
    See my webpart on the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

Maybe you are looking for

  • Song skipping

    Hi I'm a PC and I would like to DOWNGRADE my nano 2nd gen and 3rd gen to software version 1.0.1 0r 1.0.2 I have had nothing but song skipping since installing 1.0.3 I have had ipod mini,ipod nano 2nd gen and never had a problem. This skipping song pr

  • What's the deal with Drop-Frame / Non-Drop-Frame Timecode?

    I'm having trouble with 30fps Drop-Frame and 30fps Non-Drop-Frame timecode formats! I thought 29.97fps means 30fps Drop-Frame, but now I'm all confused. I'm working with DSLR footage filmed with a frame rate of 29.97. For example, this one clip is li

  • Adobe LiveCycle Designer availabe in German?

    Hello! I´m from Germany and I need a solution for the following Problem (?): I just installed the german version of Acrobat 7.0 proffessional on my Computer in my language (German). When I started Adobe LiveCyle Designer to create a new formular, the

  • Drop-down list dont work at all

    I have one table in adobe form. I would like to add drop-down list into one column cell. I have another import parameter table which i try to bind to that cell. Bind is like this: $record.LT_PROJECTS.DATA[*].AUFNR where LT_PROJECTS.DATA is that table

  • Deleted app and their backup via i tune.

    Hey friends i m backup one app via i tool. In this some private photo. SO now i install this aap to my phone. So their photo is avilabel in this app