How to use BundleTransformer in Console Application?

Hi, I have a scss file (style.scss) and I want to transformer it to CSS using BundleTransformer.
How to do it in a Console Application? I'm looking for example code or something like that :)

Hi Shlomi,
In my opinion, this thread is related to ASP.NET forum. So please post thread on that forum for more effective response. Thank you for understanding. Please refer to the following link.
http://forums.asp.net/.
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.

Similar Messages

  • How to use "Find my iPhone" application ?

    How to use "Find my iPhone" application ?

    Find My Phone would have had to be activated/turned on before your phone was lost/stolen.. There is no way to do that now, thus no way to use such to locate your phone. Had you done so, you would login to iCloud.com from any computer & see if you could locate your phone.

  • EREC - How to use link generated by application group?

    How to use link generated by application group?

    Hello Vishal,
    You provide the link eg. in a list and candidates just have to click on that if they want to apply.
    Regards
    Nicole

  • How to use SES in my application?

    Hi, everybody:
    My manager plan to use SES in our application which maybe resolve our requirements. So he ask me to take a test. But now I'm in trouble.
    First, our application have more than about 500 tables, and one third of them need to be searched.shall I create each table source for them?
    Second, In the administrator's guide -- Web Services API -- search operations -- doOracleSearch Message , the parameter of groups, it says: Limit the search result to the documents from specified source groups. The default is for all groups if not set explicitly. So my code is following like this:
    OracleSearchResult searchResult = stub.doOracleSearch(req.getParameter("searchTerm"),new Integer(1), new Integer(10), Boolean.TRUE,Boolean.TRUE,null, "en", "en", Boolean.TRUE, null, null,null);
    I want get the default value, So I write null. But the result isn't all of the hits, just come from one of the table source groups. why?
    Third, Global Settings -- Translate Source Group Name, I translated my source group, I checked the search result element(oracle.search.query.webservice.client.ResultElement), the group's name and display name were same with written in English, but the infoSourcePath was translated. Where was my mistake?
    Fourth, I defined a private search attribute for a source from Global settings -- Search Attributes.
    And in the Home -- Sources , I choose a column with this attribute. When I search this hit use doOracleSearch, I get this attribute name, display name, type ,but how can I get this column value which mapped with this attribute?
    Can anyone help me?
    Thanks a lot!

    In answer to your first question, no - you probably don't want to create a table source for each table. Instead, try to create a view which combines as many as possible of these tables (perhaps with UNIONs) then create a "table" source on that.
    Not sure of the answers to your other questions, hopefully someone else will be able to answer them.
    - Roger

  • Restoring database using C sharp console application(SQl server 2008 R2)

    Hi All,
    I want to take backup and restore database from one server to another through C sharp Console Application.
    My Backup is working fine but restoring is not working and throwing below error:
    An unhandled exception of type 'Microsoft.SqlServer.Management.Smo.FailedOperationException' occurred in Microsoft.SqlServer.SmoExtended.dll
    Database name is fine while restoring.
    Please give me some ideas in resolving this.
    Thanks in advance.
    blrSvsTech

    Hi Olaf,
    I used Replace database option.
    My code is something like this.
      public void Restoredb(string serverName, string useraame, string password)
                ServerConnection conn;
                if (useraame == " ") // for Windows Authentication
                    SqlConnection sqlCon = new SqlConnection(@"Data Source=" + serverName + @";Integrated Security=True;");
                    conn = new ServerConnection(sqlCon);
                else // for Server Authentication
                    conn = new ServerConnection(serverName, useraame, password);
                Server srv = new Server(conn);
                Database database = srv.Databases["db_Miller"];
                string dbPath = Path.Combine(database.PrimaryFilePath, "db_Miller.mdf");
                string logPath = Path.Combine(database.PrimaryFilePath, "db_Miller.ldf");
                Restore restore = new Restore();
                BackupDeviceItem deviceItem = new BackupDeviceItem(path, DeviceType.File);
                restore.Devices.Add(deviceItem);
                restore.Action = RestoreActionType.Database;
                restore.ReplaceDatabase = true;
                restore.NoRecovery = true;
                restore.SqlRestore(srv);  ------------- Getting error in this line.
                database = srv.Databases["db_Miller"];
                database.SetOnline();
                srv.Refresh();
                database.Refresh(); 
    Thanks in advance.
    blrSvsTech
    Hi blrSvsTech,
    You haven’t specified the restore destination database, please try the following codes:
    public void Restoredb(string serverName, string useraame, string password)
    ServerConnection conn;
    if (useraame == " ") // for Windows Authentication
    SqlConnection sqlCon = new SqlConnection(@"Data Source=" + serverName + @";Integrated Security=True;");
    conn = new ServerConnection(sqlCon);
    else // for Server Authentication
    conn = new ServerConnection(serverName, useraame, password);
    Server srv = new Server(conn);
    Database database = srv.Databases["db_Miller"];
    string dbPath = Path.Combine(database.PrimaryFilePath, "db_Miller.mdf");
    string logPath = Path.Combine(database.PrimaryFilePath, "db_Miller.ldf");
    Restore restore = new Restore();
    BackupDeviceItem deviceItem = new BackupDeviceItem(path, DeviceType.File);
    restore.Devices.Add(deviceItem);
    restore.Action = RestoreActionType.Database;
    restore.ReplaceDatabase = true;
    restore.NoRecovery = true;
    restore.database = srv.Databases["db_Miller"];
    restore.SqlRestore(srv); ------------- Getting error in this line.
    database = srv.Databases["db_Miller"];
    database.SetOnline();
    srv.Refresh();
    database.Refresh();
    If the issue occurs again, please post all the error message here for analysis.
    For more detail information, you can refer to he following link:
    Restore.SqlRestore Method
    http://technet.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.restore.sqlrestore.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1
    Best Regards,
    Allen Li
    Allen Li
    TechNet Community Support

  • How to use prepared statement by Application Module on ADF?

    Hello
    i am using a prepared statement on the view side of my project,
    this is my code, i'm not sure about using this code.
    AppModuleGFTImpl am = (AppModuleGFTImpl) Configuration.createRootApplicationModule(amDef,config);
    try {
    ps =am.getDBTransaction().createPreparedStatement("Select * from XXXXXX where kullanici_id=? and sifre=?",0);
    ps.setString(1, kullanici);
    ps.setString(2, sifre);
    rs = ps.executeQuery();
    if (rs.next()) {
    girebilir = true;
    } else {
    girebilir = false;
    ps.close();
    rs.close();
    //am.getDBTransaction().closeTransaction(); ? I'm not Sure
    //Configuration.releaseRootApplicationModule(am, true); ? I'm not Sure
    Is it True? How we use this code on the project view side? Must we close Transaction, or release application Module.
    thanks for interest.
    sorry my english.

    Hello, for the SP you can use something like this in your application module
      private static final String BULKSTAMMENN =
        "begin IVA_OWNER.IVA_UI_ALGEMEEN_PCK.USM_SNELLE_INVOER_GUI( P_RLE_ID => :1, P_AANTAL => :2, P_OJR_JAAR => :3, P_RAS_ID => :4, P_TOELICHTING => :5, P_SUCCES => :6 ); end;";
    public void bulkStamen ( int rasId, int telerId, int jaar, int aantal, String toelichting ) {
        CallableStatement bulkStamenSP = null;
        try {
          bulkStamenSP = getDBTransaction().createCallableStatement( BULKSTAMMENN, 0 );
          bulkStamenSP.setInt( 1, telerId );
          bulkStamenSP.setInt( 2, aantal );
          bulkStamenSP.setInt( 3, jaar );
          bulkStamenSP.setInt( 4, rasId );
          bulkStamenSP.setString( 5, toelichting );
          bulkStamenSP.registerOutParameter( 6, Types.VARCHAR );
          bulkStamenSP.executeUpdate();
        } catch ( Exception e ) {
          log.warning( "Aanroep naar " + BULKSTAMMENN + " gefaald, " + e.getMessage() );
        } finally {
          if ( bulkStamenSP != null ) {
            try {
              bulkStamenSP.close();
            } catch ( Exception e ) {
              log.warning( e.getMessage() );
        log.info( "Stammen bulk uitgevoerd voor " + rasId + " " + telerId + " " + jaar + " " + aantal + " " +
                  toelichting );
      }You can then drag this method onto your page or right into your task flow if your using JDev 11.
    Also you can access it from a backing bean although the methods above are preferred
    -Anton

  • How to use media in another application?

    Say I wish to use some of my video clips in After Effects. How do I import them into AE? The FCPX Library, of course, cannot be opened by the AE import dialog.

    Managed media should really only be ever used by someone working by themselves with their own material that doesn't need to be shared or used in any other application or by anybody else. Frankly I don't recommend managed media for any production, but there's nothing inherently wrong in it unless the library bundle gets to simply be too large.
    External media is really simple to use. When you make a new library, you select the library in FCP and in the inspector you'll see the library properties.
    The defaults for Media and Cache is In Library. Click the Modify Settings button and then create a folder for the media, assign that folder to the cache as well. Done. When you import media from a camera, it gets imported into that folder and goes into a folder called Original Media. When I have graphics files I want to use in the production I simply put them in that folder, and then when I import the graphics I use the leave in place function. Everything for the production in in one location and backed up. Think of the folder as the Capture Scratch location. The library itself stays small. Multiple libraries, multiple users on a network can access the same folder. The media inside it is available to any application.

  • How to use more than one application server during initial load?

    Hi,
    we plan to use more than one application server in CRM during initial download in order to increase the number of parallel requests and to decrease the time for the initial load. Is there a way to allocate requests to more than one server? Is is possible via multiple rfc connections for consumer CRM in CRMRFCPAR?
    Thanks.
    Alexander Schiffer

    Hi Naresh,
    thanks for your answer. It has solved my problem. SMLG is the transaction that I was looking for.
    Two more OSS notes that helped me to guide our basis into the right direction:
    OSS 593058 - New RFC load balancing procedure
    OSS 1413986 - SMLG: Possibility to select a favorite type for Ext.RFCs
    Thanks again.
    Alexander Schiffer

  • How to use GUI_DOWNLOAD inside BSP Application event

    Hi All,
    I am facing one issue while using GUI_DOWNLOAD inside BSP Application. When the processing goes at GUI_DOWNLOAD it gives me unknown error where as the same code is working when used in report program. My requirement is to save password into excel file at my local machine. I am using FM MS_EXCEL_OLE_STANDARD_DAT to save password in excel file but this function module fail when it reach at GUI_DOWNLOAD . Can you please help me out.
    Thanks and Regards
    Pradeep Kr. Rai

    Dear Pradeep,
    Find the below link which explains a simple data download to excel from a table view.
    www.sapt echnical.com/Tutorials/BSP/Excel/Index.htm
    Try to avoid the way your using in the BSP application and it is abdicable to use the standard methods / class available like "cl_bsp_utility"
    Hope this will be helpful.
    Regards,
    Gokul.N
    Edited by: Gokul on Oct 8, 2009 9:57 AM

  • How to use Tools Error Console

    I was recently trying to troubleshoot a problem of access a secure bank site [SSL problem] and trying to use the error console to figure out what was wrong. It makes little sense to a common end user of Java such as myself.
    What does one do with the information in the catagories and what are the Code and Evaluate buttons use? What are you supposed to enter into the 'address' box or whatever it is??
    Is the error console just for web page designers or what?

    Dianna,
    The Error Console isn't intended for the average user. It is mainly used by webpage and program developers for troubleshooting their work. I wish Mozilla would just remove it from Firefox and offer it as an extension for the few number of users who really need it; like Mozilla did with the DOM Inspector a couple of years ago.

  • How to use TabBar in viewbase application

    Hi,
    i have an application which is an viewbase application. now i have to add a tabbar at the bottom.
    problem is this, that all tutorials i found on net are on navigation base application. so can i implement tabbar in viewbase application. If yes then How???
    Muhammad Usman Aleem

    To use a tab bar without UITabBarController, you'll need to implement some of the controller functionality in your own code:
    1) In IB, add a tab bar to your content view and add as many tab items as you want;
    2) Ctrl-drag from the tab bar to the view controller (e.g. File's Owner), to connect the delegate outlet of the tab bar to the controller;
    3) Select each tab bar item and set its Tag number in the Attributes Inspector: 1, 2, 3, ...
    4) in Xcode, open the @interface file for the controller class and adopt the UITabBarDelegate Protocol:
    @interface BarTestViewController : UIViewController <UITabBarDelegate> {
    @end
    5) In the @implementation for the controller class add this delegate method:
    - (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
    NSLog(@"didSelectItem: %d", item.tag);
    6) Test the app to make sure the selection of each tab item is correctly logged in the Console. E.g.:
    [Session started at 2009-07-31 01:11:18 -0700.]
    2009-07-31 01:11:22.770 BarTest[22339:20b] didSelectItem: 1
    2009-07-31 01:11:25.930 BarTest[22339:20b] didSelectItem: 2
    2009-07-31 01:11:27.274 BarTest[22339:20b] didSelectItem: 3
    Once your tab bar is working, you'll need to add more xibs and the code to switch the view based on the tab item selected.
    Make a new view controller subclass for each tab. Also add one more View XIB file (New File->iPhone OS->User Interfaces) for each tab. Change the Class of each File's Owner to the corresponding subclass and connect each view to the File's Owner view outlet. Also size each view to account for the bar (you can use Simulated Metrics in the attribute inspector to do this).
    To the @interface of the top view controller add an IBOutlet for the tab bar along with ivars for each of the new view controllers. Also add a view controller ivar named currentViewController which you can use to keep track of the currently selected controller:
    @property (nonatomic, retain) IBOutlet UITabBar *myTabBar; // <-- connect to the tab bar in IB
    @property (nonatomic, retain) UIViewController *tab1ViewController;
    @property (nonatomic, retain) UIViewController *tab2ViewController;
    @property (nonatomic, assign) UIViewController *currentViewController;
    When you switch views, use insertSubview:belowSubview: to keep the tab bar visible. E.g. this code could be in a switch statement in tabBar:didSelectItem::
    case 2:
    if (tab2ViewController == nil) {
    self.tab2ViewController =
    [[Tab2ViewController alloc] initWithNibName:Tab2View bundle:nil];
    [self.view insertSubview:tab2ViewController.view belowSubview:myTabBar];
    if (currentViewController != nil)
    [currentViewController.view removeFromSuperview];
    currentViewController = tab2ViewController;
    break;
    The above should get you started in the right direction. Is there enough here so you can code the rest by yourself?
    - Ray

  • How to use quartz in web applications

    Hi people,
    Can anyone please help me out how i can use quartz scheduler in web applications ? I want to utilize quartz to update databases periodically and automatically. Please help me its urgent ...:(

    Hi
    I have a requirement to implement Quartz in a we application.Technologies using as JSF, spring, hibernate and server is JBOSS. Here i am unable to decide how to implement quartz using these technologies.
    What is the methodology i have to use to implement quartz along with these technologies.

  • How to use proxy for all application in XFCE?

    Hi all,
    Is there any way I can setup a proxy and then all applications over XFCE can use it, just like the Internet Option in Windows?
    I tried "export PROXY=..." in command line and setup proxy for Firefox, but those setting is not for overall system.
    If unfortunately there is no way for global setting, at least please tell me how to setup proxy for svn command.
    Thank you.

    Sign in with whatever Apple ID desired on the device in iMessage setup.
    This has no affect on the Apple ID used for store purchases or iCloud.

  • How to use Entrust with java application on unix platform

    Hi all,
    i have question regarding the use of Entrust with java application on unix
    1)I want to use Entrust for encryption/decryption of the file in my core java application on unix platform.
    What should be requiremnet for the same and how it is implemented?.
    2) I want to Use Entrust for Authentication purpose in my java based web application on unix platform.
    What are requirements for Entrust Authentication and how it is implemented ?

    any one has solution?

  • How to use log4j in our application

    Hi All,
    I have bit of confused while using the log4j in our java application.
    Please give me the sample code how do we logging our applications?
    Thanks in advance..........

    please give any suggestions........http://logging.apache.org/log4j/docs/documentation.html <- please read.

Maybe you are looking for