Getting client printer list on Web Forms

I need to get a list of client printers using web forms to
insert into database columns. I used to use ORA_FFI to get the
print dialog on client server but it doesn't work on web forms.
I have contacted Oracle support who say it can't be done but I
suspect that it may need some sort of Java bean. Has anyone got
any ideas on the subject (maybe a solution to the problem)
Thanks
Phil
null

You might get better responses in the first place if you don't join the who can post the shortest requirement contest which seems to be active for quite some time now (don't know who the winner is and when the contest is finished though).
In addition to dbms_application_info you might want to look at sys_context :
http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions165.htm#i1038176

Similar Messages

  • Client IP address on Web Forms

    Hi Friends,
    I tried to get IP Address of Client by using
    SYS_CONTEXT('USERENV','IP_ADDRESS') in a database function but the problem it always brings the Forms Server IP Address instead of Client Ip Address on Web Forms. I'm just wondering is there any way to deal this problem?
    Thanks
    Rao Guduru

    You will probably have to use a PJC and execute ipconfig. You can also read the registry, but the location may vary.
    See
    http://www.governmentsecurity.org/articles/GettingIPdatafromnumeroussources.php
    http://www.codeproject.com/cs/internet/obafindingipinformation.asp
    Message was edited by:
    Mark Roberts

  • Client printer lists contain numerous duplicate printers

    Since upgrading our Mac OS X Server software to v10.4 (now updated to v10.4.4) the printer lists on client computers in our student computer labs (running Mac OS X 10.3.9) contain multiple duplicate copies of the available printers.
    There are so many duplicates on some computers that the printer list takes a couple of minutes to open. One printer in particular, a HP Laserjet 1320, seems to appear duplicated more than the other printers but they all seem to be affected to some degree.
    I have tried deleting all the duplicates but the problem just recurs. Has anyone else suffered this problem or found a fix for it - it is becoming very annoying for many of our users when they attempt to print.

    Hi Phil,
    Check that printer sharing is not enabled on some of the clients, check this link also
    http://discussions.apple.com/thread.jspa?threadID=343010&tstart=0
    Regards.
    Kevin

  • How to print a clear web form

    I use Oracle Forms6i to develop forms application, the forms server is installed in Solaris and the forms are displayed in web. My question is that I could print the forms in the Forms Runtime but I can't print them in web. Please tell me how I can do it.
    Thanks!

    Thanks for your help.
    But i need only to know the transaction to print the payment advice at user level.
    I have executed the payment run but i don't know if the procedure is correct.
    I don't find a method to print the payment advice in F110.
    Regards

  • Get client ip address from Web Service hosted on OAS 10.1.2

    Hi,
    Can anyone advice how to get the client IP from a web service (java) hosted on Oracle Application Server 10.1.2.
    The below code works if the web service is hosted on Tomcat.
    MessageContext msgCtxt = MessageContext.getCurrentMessageContext();
    String IP = (String)msgCtxt.getProperty("REMOTE_ADDR");
    This code is causes built errors on the OAS 10.1.2 since it needs Axis and many other Jars. I tried to insert the jars needed but unfortunately when i was able to compile it returned a java.lang.NullPointerException.
    Is there a way to get the IP address of the client that calls this web service ?
    Or is there a way to read the SOAP request maybe i can retrieve the client IP from it.
    Thanks for your support,
    regards

    http://forums.sun.com/thread.jspa?threadID=5371892&messageID=10636223
    Thank you!

  • How to get client Ip address from web service

    Hello folks,
    I am quite new to web service and developing a web service using netbeans6.0 IDE, where i have to know which client called/used the service, After googling i got code snippet like below
    inject a WebServiceContext instance into your WebService class, and use it in each WebMethod to get the current request's MessageContext Map. Get the SERVLET_REQUEST item from that, cast as an HttpServletRequest. From that HttpServletRequest, you can invoke getRemoteAddr() to get the client's IP.
    @WebService
    public class MyService{
    @Resource
    WebServiceContext wsCtxt;
    @WebMethod
    public void myWebMethod(){
    MessageContext msgCtxt = wsCtxt.getMessageContext();
    HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
    String clientIP = req.getRemoteAddr();
    }But it throws error in my PC like
    Service invocation threw an exception with message : null; Refer to the server log for more details
    Exceptions details : java.lang.reflect.InvocationTargetExceptionIs there any way that says client pc ip address using netbeans6.0 Or what went wrong in my code?
    Largely Thanks in advance.
    SRI.

    I am afraid,
    javax.servlet.ServletException: java.lang.reflect.InvocationTargetException
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doPost(WebServiceTesterServlet.java:340)
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.invoke(WebServiceTesterServlet.java:121)
    at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:270)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:339)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:261)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
    Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doPost(WebServiceTesterServlet.java:311) ... 35 more Caused by: javax.xml.ws.soap.SOAPFaultException: java.lang.NullPointerException at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:187) at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:117) at $Proxy102.processMessage999(Unknown Source) ... 40 more Caused by: java.lang.NullPointerException at org.shar.Handle.processMessage999(Handle.java:120) at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:361) ... 2 more

  • How can I get a Printed list of 'all' of my playlists and the songs that are in each list

    I want to get a printout of 'ALL' of my playlists and the songs that are in each one.  All at once.

    And you are aware of the possible options for listing the months and having an optional export value for each month.
    For listing the months, you can use a number, a 3 character string, or the full name.
    For the export value, the full name, the 3 character value, the 1-2 number, or the 0-11 JavaScript value.
    I would look at deciding how you want to populate the drop down box and build a one page form with just this field. You can then insert that page into a PDF and copy the field as needed and then delete the inserted page. Or you could create an FDF file to create the drop down box.

  • How to get available fields list from web service

    hi,
    i'm using webservices to create ,update and deleting a alead.
    what i want is i want all the id of available fields in my account ?
    how acn i get those id's ?
    regards,
    praneeth

    hi,
    thank u for reply.
    i would like to create a servlet to insert alead to OCRM,
    but for that the user selects the fields he want to insert and provides corresponding values to those selected fields.
    so that i need to display all the fields available in my OCRM account.
    regards,
    Praneeth

  • Web Form in Task List and Security

    Hi,
    I have a couple of specific questions regarding Task List; below is a simplified example of my questions
    1. Say, I have a 2 web forms (X,Y) that are part of a Task List 1. Group A has been given access to both web forms X and Y. Group A also has access to Task List 1. Group B has been given access to only web form X. Group B also has access to Task List 1. Now, everything is good for users belonging to Group A. However, users belonging Group B has a specific issue. They still see the "Web form Y" in the Task List Selection on the left. However they cant open the web form Y on the right side which is good.
    My question is, is there a way to prevent users from even seeing this "Web Form Y" in the selection list? The problem is they shouldnt even see that particular web form as a choice and moreover this web form that they havent been given access to becomes part of the Task List completion status, forcing them to click on "Complete" for an empty web form.
    Is there some setting that could prevent unassigned web forms based on security from showing up in the Task List for various groups (similar to security restricted members not showing up in web forms)? Or is creating several different Task List the only work around?
    2. I have started a WorkFlow via FILE->WORKFLOW->MANAGE PROCESS and defined required Scenario and Version members. This seems to work just fine for my created Task Lists with Web Forms. Is there another intermitent process to connect the WORKFLOW with the created Task Lists? Or does Hyperion Planning automatically assume the Task List belong to available WorkFlow?
    Another question I have is in the Task List creation menu, when creating an individual Task, there are several options for "Task Type", one of which is WorkFlow. What is the difference between this WorkFlow option and the WorkFlow under the File menu? Is is that the WorkFlow created as Task becomes part of a Task List? Is that the only difference, ie make WorkFlow creation part of Task List versus not part of a Task List?
    Appreciate all your inputs
    Thanks

    Hi,
    1. Probably you may try "Manage Security filters", but im not sure. If it doesnt work then no way other than creating two tasklists.
    2. FYI, workflow will not promote either tasklist nor the webform. it only promotes the "DATA". u shud be careful creating forms for different level users ex: A basic user entry form cant be created for Next level user say manager. he l want to see only his entity level data not the level 0 in our terms.
    3. File->Workflow : will be used to start the workflow by the administerator.
    Tasklist Type-> workflow : Will be used by the "users" to promote their subsequent data entered or loaded at their level
    Regards

  • Generating Planning Web form List

    Hi Friends,
    How can we generate list of web-forms that are available in a Planning application. One of the planning application in which I work has quiet a large number of forms. It is not possible for me to prepare a manual list. I have heard that by using some backend table query we can generate this type of list(but not sure about it). Or is there any other way for this!!! Can anyone please help me out on this......
    Output is acceptable in any form--- query output, text, xml etc.

    You could run the following against the planning application relational db
    SELECT pobj.object_name as FormName
    FROM HSP_FORM pform, HSP_OBJECT pobj
    WHERE pform.form_id = pobj.object_id
    order by 1
    or select object_name as FormName from HSP_OBJECT where object_id = 7 order by 1
    or if you wanted a more detailed report on all forms then just run it from the reporting section within planning.
    or export all the forms from command line and then still in command line list the files but write the output to a txt file..
    or... maybe I should stop now.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How do assign mutiple client Macs my new Printer List? What do I copy over?

    The only thing that changed is our IP addresses. We moved. Same Printers & Same Macs, just new IP addresses. I want ARD to delete every clients printer list and apply my new Printer List that I created on my Admin ARD Mac. All my printers were 'Printer Browser' created under the IP Printer tab, using protocol LPD. I really don't want to login to each client Mac and do each one individually. What do I copy from local to my 46 clients?? Desparate :-P
    G5 Quad 2.5   Mac OS X (10.4.10)   ARD v2.2

    There is a document that talks about how you can configure printers with Apple Remote Desktop. It is based on older versions of Apple Remote Desktop, but the concepts, I'm told (I've not done this) still hold true:
    How to Setup 300 Printers in Just Under 3 Minutes
    http://www.acc.southernct.edu/files/SetPrintersInMacOSX.pdf

  • Interesting difference in Menus between 6i (client-server) and 10g (web)

    I just noticed an interesting difference between Forms 6i (client-server) and 10g (web forms). Perhaps you know a work around.
    We have an oracle form with a customized menu attached. The main body of the application displays nothing so we shrunk the application window down to the tiny window possible just leaving the 3 or 4 drop down menu visible. So it was basically this little floating toolbar where users could pull down a menu and select an oracle form to open.
    The difference is that in 10g Web Forms when the pull down menu is accessed, the list of selectable items is contained within the FORMS_MDI_WINDOW (or the IE window). So if the list is long then the drop down list shows a small arrow at the top and bottom that forces you to scroll thru the remaining items in the menu.
    Whereas in 6i, when the menu was access the contents of the menu would show in full. Even if it meant expanding the menu beyond the FORMS_MDI_WINDOW.
    Does anyone know if I'm stuck with this functionality? If I'm stuck it will mean I need to make my little menu application full screen so that users can see all the items in a menu without having to scroll thru choices using these little arrows.
    Any help or insights would be greatly appreciated!

    This is a consequence of the client being Java. When you run a Java application in a browser it cannot draw outside the browser window area. It's fully contained within the browser in every sense. That is by design.
    There is no way to get around this that I know of.

  • I have imported a PDF form (created in adobe acrobat XI pro) into FormsCentral.  I now want to convert this document into a web form so I can embed it into my website.  HOW DO I DO THIS?

    I took a word document I had created and added fields to it in Adobe Acrobat XI Pro.  I then imported the PDF in Forms Central and now I am stuck.  All I am able to do with it in FormsCentral is add a submit button.  It will not allow me to edit the document in FormsCentral.  What I ultimately need to do is get this converted to a web form so that I can embed it into our company website.  Additionally, once it's converted, I need to add an option for the user to attach their resume with the file before submitting.  I have looked all over the web and I cannot find an answer as to whether or not I can convert PDFs to web forms in FormsCentral.  This will ultimately determine whether or not the company decides to purchase these programs after the trial version has ended in a few days.

    I tried that first, but FormsCentral does not have the capability to create tables.  The form I need to create is more advanced than what FormsCentral allows.  Do you know if there is a way to create or somehow import a table when creating a web based form on FormsCentral?

  • Re : Print program to PDF form

    Hello Gurus,
       Can any one help me out in getting the print program to related form.
       Is there any table which stores the form and related program.
    Thanks,
    Feroz.

    Hi
    This is related to SAP Scripts/Smartforms only
    You can check the Table <b>TNAPR</b> table
    most of the SD and MM modules forms/programs are stored here.
    also from <b>NACE</b> tcode you will know
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Create a Recovering/Changing Password web form and send email notification

    Hi all
    I am looking for a web page or application that will allow an user to change his/her database password. I am thinking about those web forms where end users enter the current password and the new password, hit submit and the new password gets activated. Then the web form send an email notification
    The database is an Oracle 10G database.
    Is there any template similar to this one http://www.asp.net/learn/security/tutorial-13-vb.aspx for an Oracle database?
    thanks
    J

    Write a stored procedure that uses native dynamic SQL and just pass in the new password.

Maybe you are looking for