Problem with an Out Put Stream Writer

I want to open an URL so I use the following code inside a try bolc
URL recup = new URL("http://www.sun.com");
getAppletContext().showDocument(recup,"_blank");but once I add the following line of code
writer = new OutputStreamWriter(conn.getOutputStream Ican't open the URL mentioened above
that means the following code doesn't work
writer = new OutputStreamWriter(conn.getOutputStreamURL recup = new URL("http://www.sun.com");
getAppletContext().showDocument(recup,"_blank");
conn is a connexion that I establish before
that is just a piece of my code

Your post is not correct,
Ask yourselve the following questions:
1. does accint.dll support POST data or only GET?
2. does accint.dll need a cookie (session)?
3. what do you want to post?
4. does it need authentication
what does this give you, it will read the response if there is any:
import java.io.*;
import java.applet.*;
import java.net.*;
public class test extends Applet implements Runnable {
     public static void main(String[] args) {
          new test();
     public test() {
          new Thread(this).start();
     public void init() {
          System.out.println("this is init");
     public void run() {
          try {
               SendPostRequest();
          } catch (Exception e) {
               e.printStackTrace();
     public void SendPostRequest() {
          URL url = null;
          URLConnection conn = null;
          OutputStream writer = null;
          try {
               // set value for provenance
               StringBuffer b = new StringBuffer();
               b.append(URLEncoder.encode("provenance","UTF-8"));
               b.append("=");
               b.append(URLEncoder.encode("CTLIDT", "UTF-8"));
               // set value for environnement
               b.append("&");
               b.append(URLEncoder.encode("environnement", "UTF-8"));
               b.append("=");
               b.append(URLEncoder.encode("expsv", "UTF-8"));
               // where is your & here, what value are you setting here????
               b.append("=");
               b.append(URLEncoder.encode("0", "UTF-8"));
               // set value for CODLANG
               b.append("&");
               b.append(URLEncoder.encode("CODLANG", "UTF-8"));
               b.append("=");
               b.append(URLEncoder.encode("0", "UTF-8"));
               // set value for password
               b.append("&");
               b.append(URLEncoder.encode("password", "UTF-8"));
               b.append("=");
               b.append(URLEncoder.encode("AAAAA", "UTF-8"));
               // set value for nom
               b.append("&");
               b.append(URLEncoder.encode("nom", "UTF-8"));
               b.append("=");
               b.append(URLEncoder.encode("XYBI5400", "UTF-8"));
               url = new URL(
               "http://portail-sav2000.francetelecom.fr/binaccdi/accint.dll");
               conn = url.openConnection();
               conn.setDoOutput(true);
               conn.setDoInput(true);
               //Send request
               writer = conn.getOutputStream();
               writer.write(b.toString().getBytes("UTF-8"));
               writer.flush();
               writer.close();
               // the probleme is here I can't open the " francetelecom" page in
               // the browser
               //this is independent from the connection above
               // I mentione that no problem happens during the compiltaion and
               // no exception throwed during the execution
               System.out.println(readResponse(conn));
          } catch (Exception e) {
               e.printStackTrace();
     public String readResponse(URLConnection urlc) {
          // it is VERRY importaint to read the entire response
          // if you want to connect to the same server again
          // this is because closing the inputstream does not close the socket
          // and response data from a previous request could be mixed up with the
          // current
          InputStream is;
          byte[] buf = new byte[1024];
          String returnValue = "";
          try {
               is = urlc.getInputStream();
               int len = 0;
               ByteArrayOutputStream bos = new ByteArrayOutputStream();
               while ((len = is.read(buf)) > 0) {
                    bos.write(buf, 0, len);
               // close the inputstream
               is.close();
               returnValue = new String(bos.toByteArray());
          } catch (IOException e) {
               try {
                    // now failing to read the inputstream does not mean the server
                    // did not send
                    // any data, here is how you can read that data, this is needed
                    // for the same
                    // reason mentioned above.
                    e.printStackTrace();
                    System.out
                              .println(((HttpURLConnection) urlc).getResponseCode());
                    InputStream es = ((HttpURLConnection) urlc).getErrorStream();
                    int ret = 0;
                    // read the response body
                    while ((ret = es.read(buf)) > 0) {}
                    // close the errorstream
                    es.close();
               } catch (IOException ex) {
                    // deal with the exception
          return returnValue;
}

Similar Messages

  • Problem with Input out put parametes of IViews in callable objects

    Dear Friends,
    I have designed model which contains 2 IViews
    Apply leave IViews
    Approve leave Iviews
    In both the cases i have exposed the in & out parameters using start & end point.
    Finally deployed in portal successfully
    Guided procedures ->Design Time
    I have created folder
    when i create callable objects using this IViews , i dont see the input & out put parameters exposed in context parameters tab for this IView.
    Any step i missed.
    Regards
    shekar Chandra

    HI Nishi
                struck up with minor problem,
    We have a application designed in VC.It contains
    Create request
    Approve Request(approve or reject buttons)
    IF approved then
    a.Book Request IView
    b.Summary Iview
    If Rejected then
    a.rejected IView.
    When i am designing Process with Sequential block,
    all the actions namely
    create request
    appprove request
    reject
    book
    summary
    are processingone one by as action mentioned in sequential block irrespective of approved or rejected.
    I cannot go for alternative block, since the result state buttons are desinged in IView only namely(Approve/reject).
    How to overcome this probelm any suitable solution?
    regards
    shekar chandra

  • Problem with dispalying out put of report RLLI0400

    i have added one field in the report by copieng the report to zprogram...
    i want see the out of the report ,but i am not getting any out put just giving the message saying that tha document is printed...
    i need to change code in this report?
    i need to change any thing in form DRUCKER_EINSCHALTEN,
    if yes please tell me what changes are needed.....

    Hi Kranthi,
    in sub routine DRUCKER_EINSCHALTEN omit the code NO-DIALOG with NEW_PAGE command. i think it is genreating output into a spool request and suppress the dialog. if you omit this NO-DIALOG it will generate output.
    Regards
    Krishnendu

  • Problem with email out put

    Hi SD gurus,
    I have enabeld emailing fucnitnality for an out put.
    Maintained record for the same.
    When I am creating order it is pulling the out put in to the order.BUt when i am saving the order the out put didnt get succes and it is red color.
    I checked  proceeing log and the error is " Maintain an output device in your user master record "
    I even maintined out put device as per above error message in SU01.
    But sill getting same error in the out put.
    Can somebody help resolve this.
    Thanks in advance,
    Vivek

    Hi,
    Goto VV12 T.Code.
    Select your output type.
    Execute.
    Click on Communication.
    Here maintain the output device as LP01/LOCL or as the entry required for you from F4 help.
    Tick print immediately.
    Save.
    Regards,
    Krishna.

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Problems with TV Out signal after upgrading to iOS 5.1

    Has anyone experienced problems with TV Out signals on their iPad 2 using the Apple HDMI Adapter after upgrading to iOS 5.1?  I am trying to connect to my HDTV after upgrading and cintunally receive an "Unsupported Video Signal" message with a blank/back screen.  Prior to upgrading, I had no connection problems and could view TV Shows, Movies, Music Videos, Keynote, etc...without problems.  I've been unable to find any resolution to this problem, even followed Apple guidance to detach and reattach the HDMI adapter without success.  Seems like a software bug to me and it's a major problem when trying to conduct business or personal activities.  Hopeing Apple has a fix in work already...anyone else have any ideas?  Thx in advance...

    Try a reset. Press & hold the Power and Home buttons together for 10+ seconds, ignoring the red power-off slider, until you see the Apple logo. It is safe to do, there should be no content loss. It is the same as rebooting your computer.
    If that does not work, restore the iPad to the factory settings.

  • Problem with fading out particles in cs5

    I have a problem with fading out particles or anything for that matter in my CS5 after effects!  I set up the key frames right.  O opacity at first and whatever number at next and it fades in fine,  But when I try to do the reverse it will not fade out and only stops the effect if I cut its durration at the red par representing it on the top of the time line. This produces and rough aburpt cut of the effect which will not due.  Please can anyone tell me what I am doing wrong that I can't fade out particles with opacity?

    First question: What OS and what's the build of CS5.5?
    Second question: What effect are you using? There are a bunch of ways to generate particles.
    Last question: if you turn off the effect can you get the layer to fade out? Pressing Alt/Option + t will set a keyframe for opacity on your layer and reveal the keyframe in the time line. Do that, set the value to 0, then move down the timeline a few frames and set the value to 100. This should generate another keyframe. Now move down a few more frames and press Alt/Option + t or change the value for opacity to anything and then back to 100, or copy the previous keyframe and paste to set a 3rd keyframe. Finally move down a few more frames and set the value to 0. You should have 4 keyframes in your tlimeline for opacity. If you want to clean up the layer press Alt/Option + ] to set the out point for the layer.
    Everything should work just fine. Turn on the effect and your layer and the effect should fade out.
    If you want to do something else with the particles, like fade out a particle over the lifetime of the particle we'll need to know which plug-in you're using.

  • Has anybody had a problem with greyed out wifi on i phone 4 gs

    Has anybody had a problem with greyed out wifi setting on iphone 4gs

    Forty four in the last week.
    wifi greyed out

  • Problem with TV out, only audio, no video

    I has just bought a new ipod video 30GB and I also bought a A/V cable
    of apple. But when I connect to my television. Only hear audio from
    television but no video.
    I tried a lot of ways as folows:
    + video setting : changed TV out --> ON
    + I tried restone ipod to factory condition
    + I tried to change the position of 3 connectors (Yellow,Red, Whitle)
    of A/V cable (according to standard, Yellow is video connector).
    + I tried some tips from Discussion Techniques from Apple Forum
    But I still can't see video, just hear audio from Television.
    What's problem?
    I think Ipod only send the audio signal, not video signal.
    Can you help me to solve this problem?
    Thank you very much.

    As well I had the same problem with my i-pod and the one of my wife. The solution was simple:
    config: i-pod 60Gb; i-pod 30Gb
    cable: no name audio/video A/V cable
    TV-out: select ask (not on!!!)
    cable into TV: white on white
    yellow on red
    red on yellow
    There are no problems with bad video quality if volume is high, just working fine
    What may be the problem: I think, the automatic detect (if you put your setting for TV-out on your i-pod to on) is not working. As well as using only headphones there must be an electronic cirquit detection; means with no Apple stuff just not working. As well there are the yellow and red cable changed; means white and yellow have audio; red video.
    Working so for video and diashow on my pod each time I´ve to select TV-Out manually starting video or Dia Show. In that moment both applications are starting in small windows, not in Full Screen mode on the pod.
    The order to connect TV or i-pod doesn´t matter; it´s just the manual setting the i-pod for TV-out.
    I hope, the info can help you.
    i-pod 60Gb   Windows XP Pro  

  • Problem with IN OUT Number, OUT RefCursor for EF Model StoredProcedure call

    When I call a stored procedure using the EF Model and implicit binding via App.config which has three parameters i.e. 'IN Number', 'IN OUT Number' and 'OUT sys_refcursor', the 'IN OUT Number' is not set correctly on return from the procedure.
    The 'IN OUT Number' is for an error code and is set to 12345 on input and is then set to 54321 by stored proceedure for return.
    The correct value is returned when the call is via OracleCommand using implicit binding via App.config but remains unchanged when the call is via EF Model and implicit binding via App.config.
    The ODP documentaion says you cannot have two OUT RefCursors when using EF Model but does not say you cannot have OUT RefCursor and other non-RefCursor OUT parameters.
    The idea behind this type of procedure is to have multiple input parameters to configure and filter the stored procedure and an output result set that consists of an error code and a collection of result rows in a RefCursor.
    I am using 11g R2 database and ODP 11g Release 2 (11.2.0.2.30) and ODAC Entity Framework beta.
    The query uses Scott/tiger schema with parameters department code, error code and list of employees for department.
    code:
    PROCEDURE TEST_PARAMETERS
    DEPT IN NUMBER,
    ERROR_CODE IN OUT NUMBER,
    DEPT_EMPLOYEES OUT sys_refcursor
    AS
    BEGIN
    DBMS_OUTPUT.PUT_LINE('DEPT = [' || DEPT || ']');
    DBMS_OUTPUT.PUT_LINE('ERROR_CODE = [' || ERROR_CODE || ']');
    OPEN DEPT_EMPLOYEES for SELECT empno, ename from emp where deptno = DEPT;
    -- set ERROR_CODE for return
    ERROR_CODE := 54321;
    END TEST_PARAMETERS;
    The App.config for implicit RefCursor binding is as follows ...
    <oracle.dataaccess.client>
    <settings>
    <add name="SCOTT.TEST_PARAMETERS.RefCursor.DEPT_EMPLOYEES"
    value="implicitRefCursor bindinfo='mode=Output'" />
    <add name="SCOTT.TEST_PARAMETERS.RefCursorMetaData.DEPT_EMPLOYEES.Column.0"
    value="implicitRefCursor metadata='ColumnName=EMPNO;
              BaseColumnName=EMPNO;BaseSchemaName=SCOTT;BaseTableName=EMP;
              NATIVE_DATA_TYPE=number;ProviderType=Int32;
              PROVIDER_DB_TYPE=Int32;DataType=System.Int32;
              ColumnSize=4;NumericPrecision=10;
                   NumericScale=3;AllowDBNull=false;IsKey=true'" />
    <add name="SCOTT.TEST_PARAMETERS.RefCursorMetaData.DEPT_EMPLOYEES.Column.1"
    value="implicitRefCursor metadata='ColumnName=ENAME;
              BaseColumnName=ENAME;BaseSchemaName=SCOTT;BaseTableName=EMP;
              NATIVE_DATA_TYPE=varchar2;ProviderType=Varchar2;
              PROVIDER_DB_TYPE=String;DataType=System.String;
              ColumnSize=10;AllowDBNull=true'" />
    </settings>
    </oracle.dataaccess.client>
    When the call is via OracleCommand both outputs are correct i.e. ERROR_CODE gets set to 54321 and the correct emplyees for department 10 are returned
    code:
    private void TestParametersViaOracleCommand()
    try
    string constr = "DATA SOURCE=ORCL;PASSWORD=tiger;PERSIST SECURITY INFO=True;USER ID=SCOTT";
    OracleConnection con = new OracleConnection(constr);
    con.Open();
    OracleCommand cmd = con.CreateCommand();
    OracleDataAdapter adapter = new OracleDataAdapter(cmd);
    DataSet ds = new DataSet();
    cmd = con.CreateCommand();
    cmd.CommandText = "SCOTT.TEST_PARAMETERS";
    cmd.CommandType = CommandType.StoredProcedure;
    cmd.BindByName = true;
    OracleParameter dept = cmd.Parameters.Add("DEPT",
    OracleDbType.Int32,
    ParameterDirection.Input);
    dept.Value = 10;
    OracleParameter errorCode = cmd.Parameters.Add("ERROR_CODE",
    OracleDbType.Int32,
    ParameterDirection.InputOutput);
    errorCode.Value = 12345;
    // RefCursor output parameter implicitly bound via App.Config
    adapter = new OracleDataAdapter(cmd);
    adapter.Fill(ds);
    // should be 54321 and is ...
    Console.WriteLine("after call errorCode.Value = " + errorCode.Value);
    Console.WriteLine("list size = {0}", ds.Tables[0].Rows.Count);
    // only one table
    DataTable deptEmployeesTable = ds.Tables[0];
    for (int ii = 0; ii < deptEmployeesTable.Rows.Count; ++ii)
    DataRow row = deptEmployeesTable.Rows[ii];
    Console.WriteLine("EMPNO: " + row[0] + "; ENAME: " + row[1]);
    catch (Exception ex)
    // Output the message
    Console.WriteLine(ex.Message);
    if (ex.InnerException != null)
    // If any details are available regarding
    // errors in the app.config, print them out
    Console.WriteLine(ex.InnerException.Message);
    if (ex.InnerException.InnerException != null)
    Console.WriteLine(
    ex.InnerException.InnerException.Message);
    output:
    before call errorCode.Value = 12345
    after call errorCode.Value = 54321 (should be 54321!)
    list size = 3
    EMPNO: 7782; ENAME: CLARK
    EMPNO: 7839; ENAME: KING
    EMPNO: 7934; ENAME: MILLER
    However when call is via EF Model the correct employees are returned but the ERROR_CODE parameter is unchanged on return.
    code:
    private void TestParametersViaEFModel()
    var context = new ScottEntities();
    Decimal dept = 10;
    ObjectParameter errorCodeParameter = new ObjectParameter("ERROR_CODE", typeof(decimal));
    errorCodeParameter.Value = 12345;
    Console.WriteLine("before call errorCodeParameter.Value = " + errorCodeParameter.Value);
    // RefCursor output parameter implicitly bound via App.Config
    var queryResult = context.TestParameters(dept, errorCodeParameter);
    // should be 54321 and is ...
    Console.WriteLine("after call errorCodeParameter.Value = " + errorCodeParameter.Value + " (should be 54321!)");
    List<TestParameters_Result> deptEmployeesList = queryResult.ToList();
    Console.WriteLine("list size = {0}", deptEmployeesList.Count);
    for (int ii = 0; ii < deptEmployeesList.Count; ++ii)
    TestParameters_Result result = deptEmployeesList[ii];
    Console.WriteLine("EMPNO: " + result.EMPNO + "; ENAME: " + result.ENAME);
    output:
    after call errorCodeParameter.Value = 12345 (should be 54321!)
    list size = 3
    EMPNO: 7782; ENAME: CLARK
    EMPNO: 7839; ENAME: KING
    EMPNO: 7934; ENAME: MILLER
    errorCodeParameter.Value IS NOT CORRECTLY RETURNED!
    If there is no RefCursor then both outputs are identical i.e. the parameters are being passed in correctly and the problem is not with the 'IN OUT' parameter. Also same thing is true if ERROR_CODE is made an OUT parameter. Also tried changing the position of the parameter in the list but still get same problem i.e. works when OracleCommand but not when EF Model. Also note that the RefCursor results are correct for both types of call i.e. it is just a problem with the value of the 'IN OUT ERROR_CODE' parameter.
    I have also enabled debug stepping from Visual Studio 2010 into Oracle PL/SQL as described in
    "http://st-curriculum.oracle.com/obe/db/hol08/dotnet/debugging/debugging_otn.htm"
    and have verified by inspection that the correct values are being passed into the stored procedure and that the stored procedure is definitely setting the ERROR_CODE to 54321 prior to return.
    Most of our stored procedures have these type of parameters i.e. several IN params to configure the work of the stored procedure, an OUT NUMBER parameter for the Error_Code if any and a RefCursor for the result list.
    Is this a bug or a feature? Am I doing something wrong?

    Just to clarify ....
    If the ERROR_CODE parameter is made an 'OUT' parameter instead of an 'IN OUT' parameter the correct return value is given for the OracleCommand invocation but the WRONG value is still returned for the EF Model invocation i.e. just changing the parameter from 'IN OUT' to just 'OUT' does not fix the problem.

  • Network problems with Apple TV 3 - streaming / home share etc

    My setup:
    iMac (21", mid-2011) running OS X 10.7.3 and iTunes 10.6
    Apple TV 3
    Apple Airport Extreme router
    BT HomeHub 3
    HomeHub is used as a modem (ADSL), wired connection into the Airport Extreme which then provides my wireless network.
    Apple TV set up last Friday (launch day). I have it set to use home-sharing with iTunes, and have tried the YouTube channel. Not tried using the iTunes Store direct.
    Initially had problems with 'streaming' video from iTunes using home-sharing, buffering either took a VERY long time or simply didn't happen at all. After a reset, updating OS X, iTunes, Airport Extreme firmware etc etc it started to work fairly well. Also tried streaming video direct on the YouTube channel (very fast, no buffering delay at all) and using AirPlay from an iPad (again, no problem).
    Tonight, everything appears to be broken. Home sharing from iTunes has taken 2 minutes to buffer 30 seconds of video; YouTube similar; AirPlay from the iPad doesn't appear to be streaming at all.
    Have tried re-starting iTunes; re-starting the Airport Extreme; re-starting the Apple TV. Nothing changing.
    Help?!

    I don't have an answer for this, unfortunately. I've even had my Apple TV replaced (yesterday), and after about an hour of normal operation, it now fails to connect to servers, or connects intermittently and poorly, and it can no longer connect to the iOS Remote app. These are the exact symptoms that prompted the Genius Bar to replace the original unit.
    Either there is a basic flaw in Apple TV, or I'm extremely unlucky. All my other Mac and iOS devices have positively no network problems. Very frustrating.
    WiFi is provided by a late-model AirPort Extreme.

  • Problem with dial out

    I have a SPA2002 adapter which I use with an asterisk server. On the asterisk I have configured call forwarding that can be enabled by dialing *21*number#. The problem is that the linksys adapter won't let me dial *21, it immediately gives a busy tone, I guess because it tries to process it as a service itself. How can I configure the adapter to dial out with *21*? I have tried to alter different parameters of the adapter configuration, but without luck.

    You're mixing up two things.. there's the asterisk as in one of the button on your phone, and then there's the asterisk as in your PBX.
    hwittenb was refering to the button on the phone.. your phone dialplan needs to allow dialling stuff like "*21*" - so if you can post the dialplan on your phone, we can see if it indeed allows that number to be dialled. I'm guessing it doesn't since the call never gets to your PBX.
    There are two essential pieces to tracking down a problem with your VoIP equipment:
    The configuration of every device involved
    SIP protocol traces
    And don't forget: there's no such thing as giving too much information when describing a problem.

  • Problem with 'Fade Out'

    As part of an edit, I am trying to both 'Fade In' and 'Fade Out' of a particular video. The 'Fade In' works fine, but I'm having problems with the 'Fade Out'. For some strange reason, while the video part of it fades out properly, the audio that also fades out is not the correct audio - it is audio from earlier in the video (I'm assuming that - it is a live music video - the part that is fading out is crowd response, but the audio somehow has music in it)
    This is my first time using iMovie '08 - I have used past versions of iMovie over the last few years and have NEVER had this problem. Any suggestions or known fixes? Any feedback much appreciated.

    still confused. I don't get a yellow band when I select a clip - it just kinda gets highlighted.
    Also - when I go to audio FX in the editing field, it really has nothing to do with selecting audio - just a bunch of equalizer options. Not really sure why a basic fade out wouldn't control both the video as well as audio of the clip. It always did in previous versions of iMovie.

  • Problems with user out of OS administrator group

    Hi!
    I have the following problem. I did an installation of several clients that point to a server, several months ago. The clients work with Windows 200 Professional. The installation in each client was made with a Windows user that has administrator privileges. I had no problems with the clients working with this user and they have been working up to now. But, when I try to take the OS user out of the ADMINISTRATOR group and into the groups USER or RESTRICTED USER, nothing works. I can't do anything that involves oracle and I get the following errors:
    - When I try to connect to my application, it says:
    Initialization error
    Could not load "C:\oracle\ora92\bin\oci.dll"
    OracleHomeKey : SOFTWARE\ORACLE\HOME0
    OracleHomeDir: C:\oracle\ora92
    Found: oci.dll
    Using: C:\oracle\ora92\bin\oci.dll
    Loadlibrary (c:\oracle\ora92\bin\oci.dll) returned 0
    - When I try to start the HTTP Server, the following error appears:
    Permision Denied. Could not open document config file c:\oracle\ora92\apache\apache\conf\httpd.conf
    Why?, whats happening?. Is there any special privilege that must be given to my non-administrator user?.
    Does it have to be in the Administrator Group necessarily?.I don't think so, but I don't know the solution. Any ideas?
    Thanks a lot

    It is probably a file system permissions issue. Try granting whichever users or roles need the Oracle client read/execute access on the %ORACLE_HOME% directory and subdirectories.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Possible problems with Check out and Open Component and delayed publishing

    Hi,
    I've experienced some seemingly wrong behaviors of the checkout and open component and also with the delayed publishing feature, I've listed it down :
    1) The all important one:
    We know we've delayed publishing features for content, if we set the Release Date metadata at a future date, the content will not be released immediately, but do we have a delayed publishing features for a website page. Through manage website the user can add / delete a page(section), may do include or exclude from navigation etc.. but can they set a future date when a particular page can be included in or excluded from navigation? This should be a standard feature for a WCM solution and I hope there is some solution for sure.
    2) Can we set a datefield with a calendar feature as a page custom (section) property?
    3) Again the issue with checkout and open component, only the user with admin privilege seems to be able to change the content, normal contributors cannot, cause every time is tries to check in with the old author name, so the user has to have admin privilege to assign a different doc author's name. No trace also who is making the changes.
    4) Also facing a lot of problems while trying to implement when we use this checkout and open component. As we cannot check who is making the change there is to way to set us a step for self review, also user can only approve or reject but cannot edit the doc before passing it to the next step, if the step user is created using tokens then only checking out of the doc takes it pass the step user, but everything is working perfect with contributor data file. No problem whatsoever. Even if we use manual check out and then check in (i mean without using checkout and open component) this is working fine. But the main problem with non-technical users will be they would not like the content server portal at all and they would always prefer ms word over anything else. They would directly like to double-click on the website page, the word doc will pop up and they would make change and save.
    Issue 1 and 4 are killer issues for us, I need your help to find a solution. I have few more issues that i will post later.
    Regards,
    Nirmalya
    vijayr: Are u Vijay Ramanathan? Product Manager, Oracle UCM, u r my mentor sir.

    Hey Shotdawq,
    I was a bit low on bandwidth, so could not visit the forum any sooner.DIS is dynamic integration studio, it works on the webdav protocol.
    you will need to install DIS on the client machines. The POC that i did was integration of SiteStudio with CheckOutAndOpenInNative.
    I am also planning to referenc this functionality from WebSphere, what i have in my mind is to copy the java script from my sitestudio page and paste
    it in the JSP, and then using the CIS or RIDC will execute the serverices. At present i am stuck in some other work, If i get this thing working i will
    update you. In the meanwhile if you have some question for me, feel free to throw them.
    cheers,
    sapan

Maybe you are looking for

  • Pre-purchase: Permissions Question

    In looking through the product details and this forum I can't find mention of how a user signs in to Contribute. I have a client that would like to purchase one license and have it used on one computer by multiple users in the same office, probably w

  • Can i transfer music between 2 iTunes accounts on 1 computer

    Can I transfer music from one itunes account to another on the same computer?

  • Add xml Tags in Indesign CS4 by Apple/Java script

    Hi, All, I'm new to Indesign Scripting, and I'm hoping someone can help me with the following add xml tags in my xml indesign cs4 files. I have IDML (ETMV2) xml Indesign CS4 files. But i have lots of powermath equation without xml tags. So i want how

  • Error when starting managed server Message Too Long

              Hi,           I'm trying to setup clustering with WLS6.1sp2.           I use the jdk include with wls           2 servers in the cluster OS=AIX           1 Adminserver running on Solaris 8           When I start a managed server on one of t

  • Premiere element move from 32 to 64 bit

    Hello All- I am going directly from PE9 to PE13. PE9 was only available in 32 bit, and of course I want to install the 64 bit version of PE13 on my Windows 7 machine. Q: Is the 64 bit version a totally separate installation from the 32 bit, or do I n