How to set servlet properties in JDeveloper 3.1?

Hello,
I am using JDeveloper 3.1 and try to develop some servlets, however, when I cannot locate any servlet.properties file to configure my serlvet (basically some init param). For other web server, I know that there are either a servlet.properties file or a admin port for developer to do this? Do anyone know how to do this in JDeveloper?

Hello Ting,
I also failed to locate the servlet.properties file for JDeveloper when I try to configure our testing platform, we finally resort to use JWS to test our servlets instead. It seems that JDeveloper is just too immature and incapable of performing this run time servlet configration, or could the JDev Team shed some light on this issue?
Cheers,
Dav.
null

Similar Messages

  • How to set the properties

    If I want to use java ORB to visit Visibroker ORB , how to set the Properties for init ?? can you help me ?
    thanks !

    System.setProperty("org.omg.CORBA.ORBClass","com.inprise.vbroker.orb.ORB");
    System.setProperty("org.omg.CORBA.ORBSingletonClass","com.inprise.vbroker.orb.ORB");You can get some examples here:
    http://maris.site.lv/ejb.html
    best regards,
    Maris Orbidans

  • How to set CORS properties for BLOB Storage using node?

    Hi - I just got started with Azure using a Node-based web site and mobile services.
    I am following various documentation in order to provide an API for users to upload images via a time-restricted SAS for the BLOB Storage.
    In order to upload my image, I need to set the CORS configuration for the BLOB Storage. Unfortunately this cannot be done via the management portal.
    I'm unclear as to how to accomplish this. I'm considering using the startup.js file in my mobile service to make a post request to the BLOB Storage REST API:
    http://msdn.microsoft.com/en-us/library/windowsazure/hh452235.aspx
    Are there appropriate methods in the Node SDK to make this easier, especially the signing part?
    What is the recommended way for setting CORS properties for the BLOB Storage via Node?
    Thanks for your help
    Stefan

    Unfortunately Node SDK does not support CORS functionality yet. Your option would be to write code which consumes the REST API for setting CORS. Not sure if it helps but there's a free tool out there written by my company which you can use to set CORS
    on your storage account. More information about this tool can be found here:
    http://blog.cynapta.com/2013/12/cynapta-azure-cors-helper-free-tool-to-manage-cors-rules-for-windows-azure-blob-storage/
    Hope this helps.

  • Labels pointing to pie slices with lines (or how 2 set chart properties in code behind)

    I want to be able to create lines outside of my pie chart with labels and have those lines drawn to connect to the pie chart.  I saw that this can be done in code behind in the following thread:
    MSDN thread on lines to pie slices
    But my problem is I never declared an instance of my chart when I am using my code behind.  My code that makes the reports visible is basically (but not completely) the following:
    ReportDataSet.Tables.Add(ReportDataTable)
    ReportViewer.Visible = True
    Dim ReportDataSource As ReportDataSource = New ReportDataSource("ReportDataSource", ReportDataSet.Tables(0))
    ReportViewer.LocalReport.ReportPath = ReportToDisplay.RDLCFileName
    ReportViewer.LocalReport.DataSources.Clear()
    ReportViewer.LocalReport.DataSources.Add(ReportDataSource)
    ReportDataSource.Name = ReportToDisplay.DataSetName
    ReportViewer.DataBind()
    ReportViewer.LocalReport.Refresh()
    ReportViewer.ShowReportBody = True
    ReportViewer.Width = RVWidth
    ReportViewer.Height = RVHeight
    So how do I set chart properties for my report given the above code?  As long as I can set my chart properties with the above code, I should be able to get this to work given the above thread and the link to the Label-Outside-of-Pie and Line-Color properties
    (or whatever) info on Microsoft's info page

    Hello,
    Based on your description, you want to design a
    pie chart with outside lables and pie line inside a .rdlc report. If so, you can add the Chart report item into the report after open a client report definition (.rdlc) file in graphical design mode. And then Set the
    PieLabelStyle property and PieLineColor property. Please refer to the following screen shot:
    The link your post above it about the
    Chart Web server control. As pre my undersntand, you cannot reference a Web server control inside .rdlc file.
    If you have any question about using Chart Web server control, you can post a question on
    Chart Controls for .NET Framework forum.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • How to set ALV properties?

    Hi,
    I have some difficulties with an ALV grid report.
    The program is too difficult for using the alv refresh method then we use the submit method to the program.
    Using the submmit method users will lost their layout (filters,...). I found a FM REUSE_ALV_GRID_LAYOUT_INFO_GET which return all the properties of an ALV.
    All this informations are sent in memory using export to memory. The informations are well returned.
    I create the event END_OF_LIST in which I call the FM REUSE_ALV_GRID_LAYOUT_INFO_SET after importing the ALV properties. But no change on the ALV have been done... (no filter...)
    Must i use an other event or an other FM?
    Help!
    Thanks.
    END_OF_LIST:
       CLEAR    :  ws_layout,
                   wt_fieldcat,
                   wt_sort,
                   wt_filter,
                   ws_grid_scroll,
                   ws_variant,
                   wt_marked_columns,
                   wt_filtered_entries,
                   wt_fieldcat_backend,
                   ws_print.
       REFRESH  :  wt_fieldcat,
                   wt_sort,
                   wt_filter,
                   wt_marked_columns,
                   wt_filtered_entries,
                   wt_fieldcat_backend.
       IMPORT ws_layout = ws_layout FROM MEMORY ID 'ZLAYOUT'.
       CHECK sy-subrc EQ 0.
       IMPORT wt_fieldcat = wt_fieldcat FROM MEMORY ID 'ZFIELDCAT'.
         FROM MEMORY ID 'ZFILTERED_ENTRIES'.
       IMPORT wt_fieldcat_backend = wt_fieldcat_backend
         FROM MEMORY ID 'ZFIELDCAT_BACKEND'.
       CLEAR  gs_layout.
       gs_layout  =  ws_layout.
       CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_SET'
         EXPORTING
           is_layout      = gs_layout
           it_fieldcat    = wt_fieldcat
           it_sort        = wt_sort
           it_filter      = wt_filter
           is_grid_scroll = ws_grid_scroll
           is_print       = ws_print.

    Hi,
    the post you indicates to me is the good way to refresh an ALV but this not my case. We can not use the good way that is the problem.
    The way you put me in is not so wrong!
    I try to use an event with a sy-ucomm and refresh the ALV with the rs_selfield-refresh = 'X' and its worksssssssss.
    The the question now how to refresh an ALV by this way:
    EVENT sy-ucomm.
    form f_command_alv using fip_ucomm
                               fip_selfield type kkblo_selfield.
       case fip_ucomm.
         when 'ZREFRESH'.
           perform f_refresh.
         when 'TEST'.
           perform f_set_alv using rs_selfield.
       endcase.
    EVENT ENDOF_LIST:_
    form end_of_list.
        PERFORM f_set_alv.
    endform.                    "end_of_list
    The difficulty is how to set rs_selfield-refresh to X in the second case or another way to refresh!
    David31
    Edited by: David31 on Apr 3, 2009 11:33 AM

  • Help Please: how to set JDBC properties for data encryption in BC4J

    Hello,
    I am trying to implement JDBC Thin Driver Support for Data Encryption and Integrity.
    With java.sql.Connection and java.util.Properties, one would do something like the following code:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Properties props = new Properties();
    int level = AnoServices.REQUIRED;
    props.put("oracle.net.encryption_client", Service.getLevelString(level));
    props.put("oracle.net.encryption_types_client", "( RC4_40 )");
    props.put("oracle.net.crypto_checksum_client",Service.getLevelString(level));
    props.put("oracle.net.crypto_checksum_types_client", "( MD5 )");
    Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:main", props);
    But, how can we do this with BC4J objects? Can we set this properties via EnvInfoProvider class? Please help. Thank you very much in advance.
    Zhirong

    Hi,
    Try adding the code in the PBO part of your custom program used for the custom screen which you have created and added inside the BADI.
    Regards,
    Harish

  • How to set image properties ?

    Dear All,
    I need your help to set image properties like (Title , Subject , Comments .... )
    thanks

    NVidia writes the DDS file format plugin, you need to talk to them about it.

  • How to set Custom Properties in PDF

    Hi,
    We are using BIP embedded in EBS R12.
    For post-processing of PDF files, we need to embed information in PDF files which can be read by a script.
    There is Customer Properties section in every PDF file (File > Properties > Custom (tab)) where information may be stored in Name-Value pair where in Name will be a predefined information while value should coming from XML data file.
    I could not find any help/guide which demonstrates how to insert custome properties in PDF file generated from RTF template in EBS. Is this capability available in BIP?
    Please share your thoughts on this.
    br.

    You may be able to make changes to the web.xml for Infoview to handle that.
    For infoview questions you will need to create a forum post in the [Enterprise Admin forum|BI Platform;
    Edited by: Jason Everly on Aug 16, 2010 10:01 AM

  • How to set wsa:Action in Jdeveloper?

    Hello,
    I am using JDeveloper 11g/SOA Suite 11g. I am creating a BPEL process that calls a remote web service. In the request that I am generating, the SOAP Action header and the wsa:Action value are not the same. Does anyone know how to explicitly set the value for wsa:Action tag in the WS Addressing header?

    see :
    http://weblogs.asp.net/gsusx/archive/2006/06/01/WS_2D00_Addressing-interoperability-between-Oracle-BPEL-Process-Manager-and-Microsoft-Windows-Communication-Foundation.aspx
    http://dlimiter.wordpress.com/2009/11/16/manipulating-ws-addressing-headers-in-oracle-bpel/
    on how to populate the ws-addressing elements yourself
    basically you need to add the ws-addressing xsd, create a new variable of it, populate the elements and add it to your partnerlink

  • How to set Displayed Properties?

    I want to set different Displayed Properties for folder and documents in my layout.How can I archieve that?
    Best Regards!

    Hello,
    Depending on your requirement, you will have to change your Collection Renderer and Resource Renderer.
    http://help.sap.com/saphelp_nw04/helpdata/en/79/a1d23e6b2c3d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/87/41389793deac4f92696f38378e56fb/frameset.htm
    It seems we have posted at the same time, for your requirement, Resource Renderer should do this.
    But if you want to hide some properties which are exisiting on folders! then even Resource Renderer cannot solve this.
    As you have one Resource Renderer per <b>flavor</b>, you will set same Visible Properties for both Folder and File. If the property does not exist on Folder/File, it just shows empty property. But you cannot hide exisiting properties depending on if the resource is File/Folder.
    Here only a custom implemented Resource Renderer can solve your problem.
    Hope this helps...
    Greertings,
    Praveen Gudapati
    p.s. Points are always welcome for helpful answers
    Message was edited by:
            Praveen Gudapati

  • How to set Target URL in Jdeveloper 10.1.3

    There is an error when i build a portlet with Jdeveloper coz Target URL is wrong
    So i want to set Target URL again to referenced to localhost
    ( I set in hosts file:
    *192.168.1.2 namdinh.com*
    but when I build my portlet, Target URL still is http://192.168.1.2:8988..... )
    Please show me what i must do in this case :(
    Thanks so much!

    Hi,
    Go to Tools > Embedded OC4J Server Preferences... > Global > Startup.
    Look for the options in "Host Name or IP Address Used to Refer to Embedded OC4J".
    William

  • Creating a PDF-file with CONVERT_OTF. How to set the properties?

    Gents, Ladies,
    I have an ABAP that uses CONVERT_OTF and creates a pdf-file. This works fine but now the security properties of the pdf-file need to be set to not-modifiable (See File, Document Security in Acrobat's Reader).
    Can any of you help me to set any of the properties of the pdf-file?
    Best regards,
    Tim van Steenbergen.

    Hi tim,
    sorry, it's not possible (see Steff's posting)
    http://www.abapforum.com/forum/viewtopic.php?t=318&highlight=pdf
    grx
    Andreas

  • How to set the properties of plots in XY graph via VI Scripting

    Hi,
    Is there any way out to change the properties of XY graph plots through VI Scripting? 
    From main VI, I create an XY graph in another VI through VI scripting. I now want to change the Plot legend names, and their styles etc. I notice that these properties can be set up in the new VI (See screen shot Graph Property Node in NEW VI.jpg). However, I couldn't see these properties by calling the property node of XY graph reference in main VI (see screen shot ).
    Thanks for the due response.
    Regards
    HB
    Solved!
    Go to Solution.
    Attachments:
    Graph Property Node in NEW VI.jpg ‏1527 KB
    Graph properties in main VI.jpg ‏959 KB

    Hello HB,
    I see plot.names when I scroll down a bit further. No scripting required.
    Hope this helps.
    Uli
    Attachments:
    plot.names.png ‏74 KB

  • How to set screen properties for Customer fields in PO(Enhanced using BADI)

    Hi All,
    I have added one custom tab with seven fields in the PO item level using the BADI 'ME_GUI_PO_CUST  and ME_PROCESS_PO_CUST'.
    Now i want to change the screen property dynamically. According to some calculation i need to change the customer fields in display mode and change mode. when ever it is in change mode i need to set the fields as mandatory.
    How can i implement this logic using this BADI. Please help in solving this issue.
    Best regards,
    Kannan. B

    Hi,
    Try adding the code in the PBO part of your custom program used for the custom screen which you have created and added inside the BADI.
    Regards,
    Harish

  • How to set debug mode in jdeveloper for SOA Suite

    Hello,
    Is possible to use jdeveloper, soa suite and debug mode? I can debug my web application with oc4j embendded server. But when i want to deploy on oracle application server and debug, doesnt work.
    How can i fix that?
    I saw that tutorials for jdeveloper and weblogic server, but not for oracle server.

    see :
    http://weblogs.asp.net/gsusx/archive/2006/06/01/WS_2D00_Addressing-interoperability-between-Oracle-BPEL-Process-Manager-and-Microsoft-Windows-Communication-Foundation.aspx
    http://dlimiter.wordpress.com/2009/11/16/manipulating-ws-addressing-headers-in-oracle-bpel/
    on how to populate the ws-addressing elements yourself
    basically you need to add the ws-addressing xsd, create a new variable of it, populate the elements and add it to your partnerlink

Maybe you are looking for