Report Manager - "Show in Web browser" - "Post to web server"

Hi,
My boss has asked me to monitor CPU Utilisation and Load Average on 4 T2000's that have performance issues.
I have created a report using report manager (thanks to the Halcyon guide!) and I'm happy!
But I now want to use the "Post to web server" function to allow the user to read the results.
First up the "Show in browser" option comes up with "Netscape not found". I discovered what I thought was the config
entry for this in /var/opt/SUNWsymon/cfg and changed /usr/bin/netscape to /usr/bin/firefox which does exist on the server.
But I still get "netscape not found". What do I need to change to get this bit working?
Second, when I select "Post to web server", the task appears to complete, but what is the URL or where does the
file get deposited? I could not find this out anywhere, browsing logs or config files for the server.
Thansk for your help so far - our SunMC environment is now paying off and we're getting useful info out of it!
rachel

Hi Rachel,
virag064 wrote:
Second, when I select "Post to web server", the task appears to complete, but what is the URL or where does the
file get deposited? I could not find this out anywhere, browsing logs or config files for the server.http://docs.sun.com/app/docs/doc/819-5423/6n7gov5h9?l=en&a=view
The actual files are on your Server under /var/opt/SUNWsymon/reports (from memory: directory is something like that :) )
[email protected]
http://www.HalcyonInc.com
New !! : http://forums.HalcyonInc.com !!

Similar Messages

  • Is it possible to hide url in web browser when a web report is generated ?

    HI EVERYONE,
    I have to generate web report from my form , when it is generated i need to hide the url in web browser. otherwise the report can be accessed by copying the url.
    Thanks,
    RINCY
    Edited by: Rincy on Aug 28, 2008 10:19 AM

    How do you call your report? If you use run_report_object you won't see an URL. However, with a jobid you can still get the report output. Keep the cache small, or add parameter [ EXPIRATION|http://www.oracle.com/webapps/online-help/reports/10.1.2/state?navSetId=_&navId=3&vtTopicFile=htmlhelp_rwbuild_hs/rwrefex/cmdline/common/cla_expiration.htm&vtTopicId=] to avoid problems.
    Also check out [this whitepaper|http://www.oracle.com/technology/products/forms/pdf/10g/frmwebshowdoc_rep.pdf]
    Or Metalink note 437246.1 Which Possibilities are Available to Prevent Users from Accessing showjobs Page and getjobid in URL?

  • Crystal reports not show in my browser

    i am using vs 2013  sap sp9  reports show in tools crystal reports  but i am run in browser reports not show in browser 

    Hi,
    I am afraid that this issue is related to third-party, and it is not supported in these forums.
    Crystal Reports are supported on
    http://scn.sap.com/community/crystal-reports.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Xmlp report not showing in processmonitor - but posting to repository

    Hello
    I have an xmlp report that's generating pdf output file.
    process running to success no error or warnings. but the pdf output is not showing in the process monitor log trace link.
    but i see a .trc file with a link to the pdf file as shown below.
    https://<domian>/psreports/sfprdev/3655902/ARX32000S.pdf
    xmlp process defn ARX32000 . tools 8.52.07 application 9.1
    i see xml datafile, .aet, .stdout, .trc in the monitor logs but no pdf.
    any ideas
    thanks
    Subhash
    Edited by: Subhash Pothula on Jul 27, 2012 7:02 AM

    Not to worry. XML publisher is, as Oracle would say, "working as designed". XML publisher reports are only accessable through the Report Manager. A link to them is not created in the the View Log/Trace page. I do not know why they did it this way but it is the way XMLP works.

  • Standard report to show last transaction date posted to an asset

    Is there any standard report in asset accounting which shows- to view the last posting of transactions to an asset (if there were up or down movement on the asset values) excluding the depreciation posted.

    Try individual Asset transactions report , you can specify posting date ranges here and display report Asset wise -- S_ALR_87012048 - Asset transactions ,S_ALR_87012050 - Asset Acquisitions ,S_ALR_87012054 - Intracompany Asset Transfers ,S_ALR_87012052 - Asset Retirements
    Also check S_ALR_87012058 - List of Origins of Asset Debits .
    Lastly you can go with the Query SQ01 or SQVI reports.
    Regards
    Mukta

  • Another web browser post.. sorry

    deleted
    Last edited by Misbah (2012-02-14 05:42:32)

    Seriously, FF3 is a lot more stable than FF2, did you try it out before having the stance of not using it?

  • Closing web browser from a Web Dynpro (ABAP) component in it

    Hi,
    I am opening a Web Dynpro component in IE.
    I have a requirement to close the Internet Explorer window on click of a "Close" Button in Web Dynpro (ABAP) component. I am using EXIT Outbound plug of the Main Window to perform the same.
    In the EXIT plug I am setting "CLOSE_WINDOW" parameter to ABAP_TRUE.
    On click of the "Close" button a pop-up dialog box (with "Yes" and "No" buttons) appears asking me whether I really want to close the IE window.
    If I click on "Yes" button of the dialog box, the IE window gets closed without any issues.
    But when I click on "No" button, the IE window shows up a blank screen. I want the control to come back to the calling Web Dynpro component's screen.
    Appreciate any help/guidance in the above issue.
    Thanks,
    Prasanna

    create an action 'YES','NO', 'CANCEL' in required view.
    copy and paste below code in YES action
    method ONACTIONYES .
      data : l_view_cntr type ref to if_wd_view_controller,
    l_win_cntr type ref to if_wd_window_controller,
    l_window type ref to if_wd_window,
    l_parameter_list type wdr_event_parameter_list,
    l_parameter type wdr_event_parameter,
    l_val type ref to data.
    field-symbols <fs> type any.
    l_view_cntr = wd_this->wd_get_api( ).
    l_win_cntr = l_view_cntr->get_embedding_window_ctlr( ).
    l_parameter-name = 'CLOSE_WINDOW'."'CLOSE_WINDOW'.
    create data l_val type c.
    assign l_val->* to <fs>.
    <fs> = 'X'.
    l_parameter-value = l_val.
    insert l_parameter into table l_parameter_list.
    l_win_cntr->if_wd_view_controller~fire_plug(
    exporting plug_name = 'EXIT_PLUG'
    parameters = l_parameter_list ).
    endmethod.
    goto your window
    create plug EXIT in Window of type EXIT and chect interface checkbox
    create a button - for example - "PUSH BUTTON"
    in pushbutton action
    copy and paste this code
    method ONACTIONEXIT_PLG .
    DATA: API TYPE REF TO IF_WD_COMPONENT,
          WINMAN TYPE REF TO IF_WD_WINDOW_MANAGER,
          WIN TYPE REF TO IF_WD_WINDOW,
          TEXT1 TYPE STRING_TABLE,
          ls_text type string,
          V_API TYPE REF TO IF_WD_VIEW_CONTROLLER.
    API = WD_COMP_CONTROLLER->WD_GET_API( ).
    WINMAN = API->GET_WINDOW_MANAGER( ).
    LS_TEXT = 'Do You Want To Close the Window'.
    INSERT LS_tEXT into table text1.
    win = winman->create_popup_to_confirm(
                                           window_title = 'CONFIRM'
                                           text = text1
                                           button_kind = if_wd_window=>co_buttons_yesnocancel
                                           message_type = if_wd_window=>co_msg_type_question
                                           window_position = if_wd_window=>co_center ).
    V_API = WD_THIS->WD_GET_API( ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_YES
            ACTION_NAME = 'YES'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_TRUE ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_NO
            ACTION_NAME = 'NO'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_FALSE ).
    WIN->SUBSCRIBE_TO_BUTTON_EVENT(
            BUTTON = IF_WD_WINDOW=>CO_BUTTON_CANCEL
            ACTION_NAME = 'CANCEL'
            ACTION_VIEW = V_API
            IS_DEFAULT_BUTTON = ABAP_FALSE ).
    WIN->OPEN( ).
    endmethod.

  • SSRS 2012 Report Manager web browser display issues

    Hi Guys
    I'm having a issue with the report manager display in explorer, Firefox and chrome web browsers, it doesn't display correctly, any advice would be greatly appreciated, thanks

    go to your SSRS server and open your reporting server configuration Manager
    Make sure that your Report Manager URL is
    http://machinename:80/Reports and Web Service URL is
    http://machinename:80/Reportserver
    Roger

  • Enterprise Manager can't show web-service in the web-services area

    I'm deploying my application(stateless web-service) it work's well, but Enterprise Manager show that it's not a web-service, it can't show application in the web-services area, this fuсking server have many-many-many bugs and errors (fuсking developers was drunken a lot, imho), documentation's have many errors too, and I hate this server, but I need to use it on my work :-(
    p.s. read documentation's carefully it have many errors.
    p.p.s. From Russia with LOVE! Russian developers are the best from the best!

    Hello,
    Could you be more specific about the version of OracleAS you are using?
    - which exact version ? (10.1.3.x, 10.1.2.x or 9.0/x)
    - which kind of Web Service are you developing? (J2EE 1.4/JAX-RPC or earlier version)
    Also if you find bug in the documentation or product please send let the Oracle Support Service knows.
    Regards
    Tugdual Grall

  • Users Cannot Connect to Report Manager

    Hello all,
    I've done some searching and tried a few things, but nothing has worked.
    I recently started working with SSRS and created two reports.  I deployed them to the server, but when I type in http://servername/reports in a browser, I get the home page, but it says 'Error - Unable to Connect to the Remote Server'
    Here is what is in the log file after the <HEADER> section:
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing ReportBuilderTrustLevel to '0' as specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing MaxScheduleWait to default value of '1' second(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing DatabaseQueryTimeout to default value of '30' second(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing ProcessRecycleOptions to default value of '0' because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing RunningRequestsScavengerCycle to default value of '30' second(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing RunningRequestsDbCycle to default value of '30' second(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing RunningRequestsAge to default value of '30' second(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing CleanupCycleMinutes to default value of '10' minute(s) because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing DailyCleanupMinuteOfDay to default value of '120' minutes since midnight because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing WatsonFlags to default value of '1064' because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing WatsonDumpOnExceptions to default value of 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException' because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to default value of 'System.Data.SqlClient.SqlException,System.Threading.ThreadAbortException' because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing SecureConnectionLevel to default value of '1' because it was not specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing DisplayErrorLink to 'True' as specified in Configuration file.
    w3wp!library!1!7/17/2008-07:45:32:: i INFO: Initializing WebServiceUseFileShareStorage to default value of 'False' because it was not specified in Configuration file.
    w3wp!ui!6!7/17/2008-07:45:47:: e ERROR: Unable to connect to the remote server
    w3wp!ui!6!7/17/2008-07:45:48:: e ERROR: HTTP status code --> 500
    -------Details--------
    System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:80
    at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
    at System.Net.Sockets.Socket.InternalConnect(EndPoint remoteEP)
    at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Int32 timeout, Exception& exception)
    --- End of inner exception stack trace ---
    at Microsoft.SqlServer.ReportingServices2005.RSConnection.GetSecureMethods()
    at Microsoft.ReportingServices.UI.Global.RSWebServiceWrapper.GetSecureMethods()
    at Microsoft.SqlServer.ReportingServices2005.RSConnection.IsSecureMethod(String methodname)
    at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection()
    at Microsoft.ReportingServices.UI.ReportingPage.EnsureHttpsLevel(HttpsLevel level)
    at Microsoft.ReportingServices.UI.ReportingPage.ReportingPage_Init(Object sender, EventArgs args)
    at System.EventHandler.Invoke(Object sender, EventArgs e)
    at System.Web.UI.Control.OnInit(EventArgs e)
    at System.Web.UI.Page.OnInit(EventArgs e)
    at System.Web.UI.Control.InitRecursive(Control namingContainer)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    w3wp!ui!6!7/17/2008-07:45:50:: e ERROR: Exception in ShowErrorPage: System.Threading.ThreadAbortException: Thread was being aborted.
    at System.Threading.Thread.AbortInternal()
    at System.Threading.Thread.Abort(Object stateInfo)
    at System.Web.HttpResponse.End()
    at System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm)
    at Microsoft.ReportingServices.UI.ReportingPage.ShowErrorPage(String errMsg) at at System.Threading.Thread.AbortInternal()
    at System.Threading.Thread.Abort(Object stateInfo)
    at System.Web.HttpResponse.End()
    at System.Web.HttpServerUtility.Transfer(String path, Boolean preserveForm)
    at Microsoft.ReportingServices.UI.ReportingPage.ShowErrorPage(String errMsg)
    Server Setup:
    Windows Server 2003 R2
    SQL Server 2005 (trial version) SP2
    IIS 6
    ASP.Net 2.0.50727
    AVG Antivirus
    The report server is on the same server as SQL Server
    Settings under 'Configure Report Server' in Reporting Services: Configuration:
    Server Status = Check
    Report Server VD = Check
    Report Manager VD = Check
    Windows Service Identity = Check
    Web Service Identity = Check
    Database Setup = Check
    SharePoint Integration = Optional Configuration
    Encryption Keys = Optional Configuration
    Email Settings = Recommended configuration
    Execution Account = Recommended configuration
    Things I've Tried:
    On the server:
    Using Localhost or 127.0.0.1 /reports - 'Internet Explorer cannot display the webpage
    Turning off Windows Firewall - still nothing
    Checked the ReportManager RSWebApplication.config and ReportServer rsreportserver.config files and they seem fine.
    Other than trying to reinstall IIS and ASP components, I would really appreciate any help.
    Thanks very much!
    JB

    Well, I found something that worked for me.
    I found a blog post by Ryan Nielsen and it included these instructions:
    Original Post
    Article Text:
    Reporting Services - Unable to Connect to Remote Server Error After a restart reporting services, you may come up with Unable to Connect to Remote Server Error when navigating to the web access. Typically an issue like this occurs in the RSWebApplication.config. This file is located in the ReportManager Folder (Example: C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager) I checked the <reportserverurl> and <reportservervirtualdirectory> tags were the same as before.
    <ReportServerUrl></ReportServerUrl>
    <ReportServerVirtualDirectory>ReportServer</ReportServerVirtualDirectory>
    <ReportBuilderTrustLevel>FullTrust</ReportBuilderTrustLevel>
    After changing the ReportServerUrl tag to contain both the server URL and the virtual directory, it could then connect to the remote server.
    <ReportServerUrl>http://Server/ReportServer/</ReportServerUrl>
    <ReportServerVirtualDirectory></ReportServerVirtualDirectory>
    <ReportBuilderTrustLevel>FullTrust</ReportBuilderTrustLevel>
    No IP addresses were added or was any IIS settings that I could tell. Leaving the ReportServerUrl tag blank should allow for it to find the server locally.
    End Article Text
    I did this and restarted the Reporting Services service and it now works without a problem.
    I hope this helps someone.
    JB

  • Cost Centre report that shows all Tax Codes

    Hi there,
    We're trying to run a cost centre report that shows the tax codes relating to all expenditure, but Tax Code isn't an option in KSB1.  Is there a way that it can be imported, or another report that we can use?
    We need the tax code in order to be able to report on expenditure and tax paid / not paid for HMRC.
    Thanks,
    Michelle

    Hi,
    Cost reports KSB1 show only CO documents posted on cost centres. You can reconcile CO data with FI only for accounts which are relevant for CO, that is accounts defined as cost elements (normally, these are P&L accounts). If you want to see all CO documents, it's better to use KSB5 transaction as it shows all CO object postings, and not only cost centres. If you have some internal CO postings (manual postings, allocation, etc.), then they won't be shown in FBL3N and you have to consider this also.
    Regards,
    Eli

  • 401.2 Error Accessing Report Manager

    I concede defeat on this one.  I've gone through every configuration option I can think of in order to get this working so I am bowing to those who know more than I do!
    I've got a native installation of SSRS 2008 R2 running on W2K8 R2.  Straightforward installation and configuration with the service running under Network Service.  Local DB Engine which has the ReportServer and ReportServerTempDB deployed on to.
    But when when I try and run Report Manager to add users as system admins I keep hitting the
    401.2: Unauthorized: Logon failed due to server configuration.  To try and overcome this I have done the following:
    Run IE as administrator
    Disabled UAC
    Checked, double-checked and triple-checked Windows authentication configuration for report server.  RSreportserver.config authentication is configured for RSWindowsNTLM, and the web.config files for Report Server and Report Manager authentication is
    set to Windows.
    The server URL (i.e. http://<servername>) is added to the list of Trusted Sites in IE.
    I'm just looking to use NTLM for authentication purposes.  I have configured SSRS countless times without issue, but this one has got me stumped and it seems whatever I do I can't get around this 401.2 error.  Looking in Event Viewer, an ASP.NET
    2.0.50727.0 error is logged whenever I'm running the webpage with the following details:
    Event code: 4007
    Event message: URL authorization failed for the request
    Request URL: http://<my server>/Reports/folders/pages.aspx
    Request path: /Reports/folders/pages.aspx
    User host address: ::1
    User: <My network account>
    Is authenticated: True
    Authentication: NTLM
    Thread account name: <My network account>
    Any thoughts?

    Hi SQLPhil,
    According to your description, you configured SSRS 2008 R2 on Windows Server 2008 R2 and use Network Service as service account. When you tried to access report manager, you got the error message: 401.2: Unauthorized: Logon failed due to server configuration.
    The error message means that you do not have permission to view this directory or page using the Admin credential. The error occurs when the authentication methods that were tried are either disabled, or you are attempting to use NTLM through a proxy server.
    To troubleshoot the problem, please refer to the following steps:
    Make sure ReportServerURL element in rsreportserver.config (default location: C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer)have value that is equal to the Web Service URL.
    Add report manager and web service FQDN to IE trusted sites.
    Click Tools at top right of IE, click Internet Options.
    In Security tab, click Custom Level button.
    Scroll down to the end of the list, and select "Automatic logon with current user and password”.
    Access the report server with FQDN instead of localhost, E.g.
    http://servername/Reports.
    For more information about the error message, please refer to the following KB:
    http://support.microsoft.com/kb/253667
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • App Engine creates XML report but I cannot access it in Report Manager

    Here is my application engine code:
    import PSXP_RPTDEFNMANAGER:*;
    /* XML Publisher report using query data source */
    Local string &sRptDefn = "WAP_XML_JAS2";
    Local string &sLangCd = "ENG";
    Local date &AsOfDate = %Date;
    Local string &sOutFormat = "PDF";
    Local string &sPrcsServerName;
    Local string &sFolder = "XML PUBLISHER";
    Local number &prcsInstId;
    Local PSXP_RPTDEFNMANAGER:ReportDefn &oRptDefn;
    /* get report definition object */
    &oRptDefn = create PSXP_RPTDEFNMANAGER:ReportDefn(&sRptDefn);
    &oRptDefn.Get();
    /*generate report*/
    &oRptDefn.ProcessReport("", &sLangCd, &AsOfDate, &sOutFormat);
    /*publish report */
    &oRptDefn.Publish(&sPrcsServerName, "", &sFolder, &prcsInstId);
    I see my report in Report Manager but it isn't a hyperlink that I can click on to then open the PDF. However if I run my XML report in the XML Scheduler, I see that report in Report Manager and it is a hyperlink.
    Any ideas? Did I miss a line of code i need to be able to access it? When I take the url for the one that works and change the Report ID for the one that doesn't work, I get kicked out of the web (says error has occurred and makes me sign in again).
    Thanks!
    Jennifer

    I was able to get the file to get the hyperlink to appear. I used the following code:
    import PSXP_RPTDEFNMANAGER:*;
    /* XML Publisher sample report using query data source */
    Local PSXP_RPTDEFNMANAGER:ReportDefn &oRptDefn;
    /* create report definition */
    &oRptDefn = create PSXP_RPTDEFNMANAGER:ReportDefn("WAP_XML_JAS2");
    &oRptDefn.Get();
    /* specify output destination when output type is file */
    If %OutDestType = 2 Then /* file */
    &oRptDefn.OutDestination = %FilePath;
    End-If;
    /* process report */
    &oRptDefn.ProcessReport("", WC_WAPXML1_AET.LANGUAGE_CD, %Date, &oRptDefn.GetOutDestFormatString(%OutDestFormat));
    /* send output to destination */
    If %OutDestType = 6 Then /* Web */
    &oRptDefn.Publish("", "", "", WC_WAPXML1_AET.PROCESS_INSTANCE);
    Else
    If %OutDestType = 3 Then /* Printer */
    &oRptDefn.PrintOutput(%FilePath);
    End-If;
    End-If;
    Of course I had to have the following SQL statement in the first step to populate the state record:
    %Select(WC_WAPXML1_AET.OPRID, WC_WAPXML1_AET.RUN_CNTL_ID, WC_WAPXML1_AET.LANGUAGE_CD)
    SELECT OPRID
    , RUN_CNTL_ID
    , LANGUAGE_CD
    FROM %Table(PRCSRUNCNTL)
    WHERE OPRID = %OperatorId
    AND RUN_CNTL_ID = %RunControl
    Now I am able to get the report in report manager if it is run to the web, or as a file if that option is chosen on the run control.

  • Web browser connection to oracle

    How do you set up users in the client env't when connecting thru a web browser ste into oracle server? Do you create individual users account or is there a generic user account
    (because there can be more than 10000 users)?
    - Also How do you setup and configure cman?
    -

    I used this previously at a client as the Insert SQL query driver dropdown does not have the Merant driver listed (as it does in the created database connection box):
    JDBC Driver: Other
    JDBC Driver entry: weblogic.jdbc.sqlserver.SQLServerDriver
    JDBC Connection String: jdbc:weblogic:sqlserver://{server}:{port};databaseName={DB Name}
    Hope this helps, Iain

  • Cookies and JFrame Web Browser

    Hello,
    Currently I'm trying to analyze of making a java web browser. I have found several versions of code that enable JFrame of Java to be a web browser, some even go as far as having a back anf forth feature and history. The only thing I cannot find is how to save and use cookies. While I found some things that allow code to save cookies, I need some help in implementing into the web browser. The web browser currently works but if I try something that require a cookie, like logging into gmail, it will tell that I need to have cookies enable (likely to be capable to take cookies and then use them).
    Does anyone know a way to do that? Or know what direction to look?

    Anyone?

Maybe you are looking for