How to put a remote portlets server in maintenance mode

Hi,
We are running Plumtree Portal 5.0.4 on Windows 2000 Server SP4. We have a remote portlets server which hosts a lot of portlets' webservices.
We need to put the remote server in maintenance mode.
How can we disable all webservices hosted by this remote server without disabling each webservices manually (which will be painful) ?
Regards,
Qué Son PHAM VAN

I don't want to encourage you to modify your database directly, but it seems to be the only way to do this easily. Try:
update ptwebservices
set enabled = 0, disabledmsg = 'This portlet has been disabled. Blah blah blah.'
where gadgetserverid = 200;
Replace 200 with the ID of your remote server.
HTH,
Chris Bucchere | bdg | [email protected] | http://www.bdg-online.com

Similar Messages

  • How to put Mediation Server on Maintenance Mode for LYNC server 2013

    how to put the LYNC 2013 Mediation server on Maintenance mode???

    Hi,
    Did you solve the issue with the help the people above provided?
    If you mean server draining feature you can also check Topology option on Lync Server Control Panel, on Topology interface, click “Action” and there is an action called “Prevent new sessions for service”.
    Here is a similar case may help you:
    http://social.technet.microsoft.com/Forums/lync/en-US/ef3515a9-54c0-4b7a-ab48-45196764d837/how-to-use-lync-server-draining-feature?forum=ocsplanningdeployment
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • How to put ipod 3rd generation on the disk mode manually?

    how to put ipod 3rd generation on the disk mode manually?

    I am having this problem as well. I've tried dozens of times at this point. I can produce the apple icon but when I release and press play+select it just reverts back to the red x. The red x is the whole reason I'm trying to get this into disk mode. I need to reset it but I can't until it is in disk mode. I've tried the flat surface, one finger etc etc but disk mode still eludes me. Any other thoughts?

  • How to connect to remote sql server database?

    Hallo,
    I am a new member, so please excuse me if my questions are dummy.
    I am using CR2008 SP2 to make reports from sql server 2005 databases.
    Localy there is no connection problem and everything works perfect.
    I would like to establish a connection with a remote sql server 2005,
    but i am not familiar with remote data retriving. which driver should i use? static ip? vpn? server ports?
    Any answer will be really appreciated

    Hello,
    This is more a question for Microsoft to see what and how they support remote connections to databases. As long as you have the connection made CR will not have any problems. You may find it is slow so optimizing your queries is highly recommended. Passing a million records through your web connector is going to take time.....
    I've personally used a VPN connection and then set the ODBC or OLE DB connection info to my test server here at work and it worked fine. But they were small data sets.
    Thank you
    Don

  • In Java,how can I get remote oracle server's system time using a XAOracle datasource

    I want to get remote oracle server's system time,for example,I use a TxDataSource:
    DRIVER className:weblogic.jdbc.oci.xa.XADataSource
    URL:jdbc:weblogic:oracle:lanhaibo
    JNDI Name:
    the following is the code which shows the exception that: sqlexception:the JDBC2.0
    method is not implemented,why? what should I do?:
    Properties prop = new Properties();
    prop.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL,"t3://"+"localhost"+":" + "7001");
    initCtx = new InitialContext(prop);
    DataSource ds = (DataSource)initCtx.lookup(strDataSource);
    Connection conn = ds.getConnection();
    String sqlQuery = "select to_char(sysdate,'yyyy') YYYY,to_char(sysdate, 'MM')
    MM,to_char(sysdate, '" +
    "dd') DD,to_char(sysdate, 'hh24') HH,to_char(sysdate, 'mi') MI,to_char(sysdate,
    '" +
    "ss') SS from dual"
    preparedStatement pstmt = conn.prepareStatement(sqlQury);
    StringBuffer sb = new StringBuffer();
    ResultSet resultset = pstmt.executeQuery();
    if(rs.next()){
    strYear = rs.getString("yyyy");
    strMonth = rs.getString("MM");
    strDay = rs.getString("DD");
    strHour = rs.getString("HH");
    strMinute = rs.getString("MI");
    strSecond = rs.getString("SS");
    sb.append(strYear);
    sb.append("/");
    sb.append(strMonth);
    sb.append("/");
    sb.append(strDay);
    sb.append(" ");
    sb.append(strHour);
    sb.append(":");
    sb.append(strMinute);
    sb.append(":");
    sb.append(strSecond);

    Joden asked:
    "I want to get a remote oracle server's time by XADataSource,
    use:"select sysdate from dual", but return a null value,and give
    the message"sqlexception the jdbc2.0 method is not implemented",
    why?"
    Let me see your code. A simple executeQuery() should do the trick:
    Statement s = c.createStatement();
    ResultSet r = s.executeQuery("select sysdate from dual");
    while (r.next())
    java.sql.Timestamp t = r.getTimestamp(1);
    Guillaume Grussenmeyer wrote:
    Hi.
    I guess you are using weblogic.jdbc.oci.xa.XADataSource as a
    datasource.
    Weblogic JDriver for Oracle "implementation" is really weak as a lot
    of methods are not implemented.
    This is why you get this message.
    You may find the (very impressive) list of non implemented methods at
    http://e-docs.bea.com/wls/docs70/oracle/API_joci.html#1162621 (sorry
    HTML links don't seem to work here).
    Any call to one of this methods will give you these nasty message and
    exception.
    Try to use the "official" Oracle JDBC driver XA Datasource
    (oracle.jdbc.xa.client.OracleXADataSource) instead of Weblogic JDriver
    for Oracle one's.

  • Problems connecting to a remote OPC server in write mode using CWDataSocket control

    Hi.
    I have been struggling with an odd feature when trying to connect to a remote OPC server using CWDataSocket control, though I'm not sure if it's a CWDataSocket related problem. But anyway, the following error occurs: "Active: Can't write data." Error number: "-2147467259". Now, when I connect to a local OPC server
    and write some data and then again connect to the remote server, no errors occure and reading and writing work fine. The same error occurs when I try the same in LabVIEW. What could be the problem?
    No errors occure when I connect to the server with some other OPC client application.
    Thanks in advance.
    - Asko -

    The ConnectTo operation (as are all DataSocket operations) is asynchronous. In order for it to complete, you must process Windows messages after calling it and before calling another operation. Is it possible that you are trying to write data before the connection operation is complete?
    One easy way to test this would be to put the ConnectTo and the Write in separate control callbacks, cause ConnectTo to be called, wait a while, then cause the Write to be called. Alternatively, you could do something like the following:
    dsWrite.ConnectTo txtUrl.Text, cwdsWrite
    While Not ((dsWrite.Status = cwdsConnectionActive) Or (dsWrite.Status = cwdsConnectionIdle))
    DoEvents
    Wend
    If this is the problem, then you'll probably want to go with the
    second option. In a production system, you should include a timeout in the While loop so that if the connection actually cannot be made, you are not stuck in an infinite loop.

  • How to attach database in sql server 2005 restricted mode

    hi i have a database i want once i have attach database in sql server 2005, anyone cannot do detach, script and delete my database except myself. I mean i want to secure my database to avoid unauthorized persons access
    how it is possible in sql server 2005 express management studio

    There are restrictions for normal Logins but a administrator in SQL server can always detach,script and delete your database.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Exch2k13 - to apply spks or CU should I put the server on 'Maintenance Mode'

    Hi,
    Since we have only one server acting as CAS/MBX, should I put it on 'maintenance mode' before apply spk/cu?

    Hi,
    Maintenance mode should be used with Mailbox servers, both standalone mailbox servers and multi-role servers.
    Here is a related blog which can help for your reference.
    Exchange 2013 Maintenance mode
    http://blogs.technet.com/b/nawar/archive/2014/03/30/exchange-2013-maintenance-mode.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Powershell script for put the particular service in to Maintenance mode

    Hi Everyone,
    I have requinquent to schedule the Maintenance mode for service. If anyone help with script to put the service into maintenance mode, then i can schedule the same through Task Scheduler. 
    Thanks in advance.
    Regards
    Karthick

    Hi,
    Please have a look on:
    http://technet.microsoft.com/en-us/library/hh918505(v=sc.20).aspx
    http://blog.coretech.dk/msk/operations-manager-2012-maintenance-mode/
    Cheers
    Christoph Maresch | My blogs: blog.cmaresch.at | XING:
    Christoph Maresch
    | Linkedin:
    Christoph Maresch

  • How to put files in a server subfolder?

    How do you make sure that DW uploads a website into a sub folder. Working in DW CS5.5  I use godaddy and I'm trying to put from DW into a sub folder so that a new website I'm loading doesn't interfere with my primary domain name. It's something you can do with file zilla but I prefer working from DW if I can to accomplish this.
    I would really appreciate help with this.Iwork in CS5.5
    Thank you.

    There are also instances where you are calling for pictures from an "Images" folder (capitol I) and others from an "images" folder (lower case i).
    Your server sees Images as different from images, so it gives a 404 File Not Found error for anything referencing the capitol I "Images" folder. You'll need to correct those as well.
    EDIT: The incorrect references seem to be mainly located in your css. You also have a stray </div> at the end of your page just before the <script>. Remove the <div> below...
    <div id="apDiv1"></div>
    </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • How to connect a remote Oracle Server with its IP

    is it possible to connect Oracle SerVer in VC
    I have used Microsoft ODBC driver for oracle and Oracle odbc driver to test in VC++6.0,
    but SQLDriverConnect, OCI methods failed.

    with VC++ an odbc driver for oracle is also installed with which u can connect to oracle db all u need to know is the database SID or oracle server name
    try doing this it will work hopefully
    regards

  • ConfigMgr Backup puts SCCM Server into Maintenance Mode (SCOM)

    Hi all,
    I have a strange issue.
    We have a SCOM-Server (2012 SP1 - 7.0.9538.1068) which Monitors several servers. We also have an SCCM-Server (2012 R2 - 5.0.7958.100) for Client/Software Deployment. This SCCM-Server is also a SCOM-Gateway...
    Now we have the issue, that i get strange Events in the Operations Manager Eventlog on the SCCM-Server (SCOM-Gateway):
    Source: Health Service
    Event ID: 1217
    Level: Information
    Description: The System Center 2012 - Operations Manager Agent running on Computer "SCCM-Server HOSTNAME" is suspended for the following reason: "ConfigMgr 4.00.7958.0000 - Starting - Backup".
    There are several strange things with this message:
    1. The Version is completely wrong... should probably be 5.00.7958.0000???
    2. We have the SCCM-Backup (in Administration -> Overview -> Site Configuration -> Sites -> Site Maintenance -> Backup Site Server) NOT enabled!!!
    3. The main issue now is, that the SCCM-Server (SCOM-Gateway) everyday changes to mantenance mode (for some hours over night!), and therefore all SCOM-Agents behind the SCOM-Gateway are alerting Heartbeat failures!
    Example Times/Dates when the issue occurs:
    Do you have any clues about this message?
    Thank you for your help.
    Patrik

    Hi,
    Have you checked Smsbkup.log as Torsten said?
    You could also check the status messages for SMS_SITE_BACKUP in the Component Status node in the
    Monitoring workspace.   
    Best Regards,
    Joyce
    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.

  • Connecting to remote oracle server from asp

    Hi All
    How can I access remote oracle server from asp?. I'm using the following connection string.
    " Provider=MS Remote;Remote Provider=MSDAORA;Data Source=XYZ;Remote Server=http://DBServersIP;User Id=id;Password=pw"
    Both the web server and DB server has oracle client. I can tnsping, connect using sql * plus from the webserver.
    But when I try to do simple connection & query , I get the following error.
    " Microsoft ADO/RDS(0x80072EFD)
    Internet Client Error: Cannot Connect to Server.
    All the permission settings are given correctly (after referring Microsoft & Oracle websites)
    Can someone throw some links or help.?
    Your replies much appreciated.
    Thank you
    Arum

    why do you have http://DBServersIP as the remote server?
    Your connection string should look like:
    "Driver={Microsoft ODBC for Oracle};Server=MY_SID;Uid=my_user;Pwd=my_pwd;"
    There are other variations, but none of them should include HTTP anywhere.

  • Invoking remote IIS server from java

    Hi,
    May I know how to invoke the remote IIS server from java?
    Basically I am designing the administrative tool to start and stop IIS server which is running remote machine.
    Thanks!

    You will need to connect to the remote system using some service other than IIS, since starting IIS is one of your requirements. The usual is to connect using Telnet or SSH. I posted code to connect to a Unix box using Telnet. You could use this to connect to a Windows system that was running a Telnet server.

  • How to put the form in Query mode

    Hello
    Please let me know how to put the form or block in Query mode , so that when i run the form it should be in Query mode . I have seen properties of SET_FORM_PROPERTY and SET_BLOCK_PROPERTY but cannot find one
    Thanks

    QUERY mode? Did you mean, that you can only QUERY without changing data.
    This is the QUERY-ONLY-mode, which can be started e.g. call_form
    this is the help for that topic:
    PROCEDURE CALL_FORM
    (formmodule_name VARCHAR2,
    display NUMBER,
    switch_menu NUMBER,
    query_mode NUMBER,
    data_mode NUMBER,
    paramlist_name VARCHAR2);
    query_mode     
    NO_QUERY_ONLY (The default.) Form Builder will run the indicated form in normal mode, allowing the end user to perform inserts, updates, and deletes from within the called form.
    QUERY_ONLY Form Builder will run the indicated form in query-only mode, allowing the end user to query, but not to insert, update, or delete records.

Maybe you are looking for

  • Error while doing MR8M

    Dear Guru's i have a return po and Migo done for the same & credit note also done for the same. but when i go to MR8M tcode to cancel the credit note i am getting the below error, ''Document XXXXXXXXXX XX 2009 already contains cleared items - reversa

  • Same colors appearing different in the same document

    I have a document where I have filled different table cells with the same RGB color. However, they sometimes appear as two different shades, one darker than the other. I checked to be sure it was the same RGB color and it was, but it appears quite di

  • Trying to get ATT Uverse Service

    I live in a small neighborhood on a private street with only 13 homes.  The road that our road branches off from has Uverse service and the homes to either side of our neighborhood entrance currently have Uverse.  For some reason our street does not

  • WebPart: Display the search result in an spgridview with filter and sort

    hi, For explain more in details. I need the search result in a table displaying some meta common in the different library. I've to have the possibility to filter and sort the grid. i'm trying to extend Microsoft.Office.Server.Search.WebControls.CoreR

  • I am not able to subscribe to RSS feeds or bookmark pages

    I was having trouble with my version 3 of Firefox originally. I couldn't open it because it was saying it was still running. I found the correction to that problem (something about deleting a "parent" file) only after I uninstalled and reinstalled Fi