Passing data through address bar

hi all,
I am implementing a forum application on the java studio creator, and Iam having a problem in getting data from the address from page to page.
The problem is that i have a table containes records of table "data IDs" when you click on the data Id it will take you to another page and show you the data complete. Iam passing Data Id in the address bar, how could i get it in the other page.
Best Regards.

Hi,
Please go through the tutorial named "Sharing Data Between Two Pages". This is available at:
http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
Hope this helps
Cheers
Giri

Similar Messages

  • "secured by passing data through LWAPP tunnels."

    Hi,
    The WLC v4.1 Config Guide says,
    "all Layer 2 wired communications between
    controllers and lightweight access points are secured by passing data through LWAPP tunnels."
    Is it correct that this is only true for the LWAPP Control channel which is encrypted - the LWAPP Data channel is in clear text which WireShark has no problem parsing, right?
    Regards, MH

    Only LWAPP control message payloads are encrypted. As you've stated however LWAPP data payaloads are not encrypted as the wired network is assumed to be relatively secure (compared to wireless).
    Additional Reference Appendix B in this document:
    http://www.cisco.com/en/US/netsol/ns340/ns394/ns348/networking_solutions_white_paper0900aecd805e0862.shtml

  • Passing data through TCP/IP

    Hello ! My challenge is this: I have a vi that i have to use as a server and a vi as a client. In the server vi, i want to modify multiple parameters of one graph and these modifications should reflect on the client vi. How can i transmit, through TCP/IP, the modified graph to the client vi/application ? I would appreciate very much a link or a example vi that can show me exactly how such an opperation can be achieved. Thank you!

    You can make the string you pass include any data.  Here is a simple example using an XML string.
    <Graph>
    <Value>1,2,3,4,5,6</Value>
    <Visible>True<\Visible>
    </Graph>
    Send this string on the server side taking a reference to a graph and build a simple vi to generate a string containing  the data you want to send.
    At the client side you parse this string an a loop as set the appropriate property node as the tag dictates.
    I cant think of a precanned solution for this but my morning coffee has not kicked in yet.
    Paul 
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Problem in passing date through hyperlink reports in Linux version(CRS2008)

    Hi,
    How to pass value of a date paramater through hyperlink(open doc) from main report to target report(clicking on hyperlink )
    thanks in ADVANCE

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Passing data through parameters or return?

    Here are too samples:
    void doStuff (String s)
    void String doStuff()
    }they both pass a String to the caller, but I found they are totally different. Can anyone give me some idea about it?

    Let me take a whack at this. I think the original poster got hamstrung because his example data type was
    immutable (String). Consider the simple mutable type java.awt.Rectangle which has public int fields x, y,
    width and height. Now consider two or three way to write a method that supplies the caller with rectangle
    data:
    public Rectangle getBounds1() {
        int x = calculation...
        int y = calculation...
        int w = calculation...
        int h = calculation...
        return new Rectangle(x, y, w, h);
    public void getBounds2(Rectangle r) {
        int x = calculation...
        int y = calculation...
        int w = calculation...
        int h = calculation...
        r.setBounds(x, y, w, h);
    public Rectangle getBounds3(Rectangle r) {
        int x = calculation...
        int y = calculation...
        int w = calculation...
        int h = calculation...
        if (r == null)
            r = new Rectangle(x, y, w, h);
        else   
            r.setBounds(x, y, w, h);
        return r;
    }There are examples of these variations in the API, for example java.awt.Component has getBounds
    methods that are version 1 and 3 here. My rule of thumb is to keep it simple: go with getBounds1. The
    other two allow you to avoid constructing temporary rectangles, but construction is cheap these days.

  • Passing data through connect().

    Hi, I found this example of a lobby in my flash media server book. But there's a little issue...
              var nc:NetConnection;
              var rtmpNow:String;
              var userName:String;
              var users_so:SharedObject;
              var connectName:DataProvider;
              nc=new NetConnection();
              rtmpNow="rtmp://localhost/userlist/roomlist";
              nc.addEventListener (NetStatusEvent.NET_STATUS,checkConnect);
              button.addEventListener (MouseEvent.CLICK,addName);
              connectName=new DataProvider();
              function addName (e:MouseEvent)
                   nc.connect (rtmpNow,textInput.text);
              function listPlace (e:SyncEvent)
                   list.dataProvider=connectName;
                   list.removeAll ();
                   for (var uName:String in users_so.data)
                   {//no uName found.
                         if (users_so.data[uName] != null)
                              connectName.addItem ({label:users_so.data[uName]});
              private function checkConnect (e:NetStatusEvent)
                   if (e.info.code == "NetConnection.Connect.Success")
                         button.label="Connected";
                         users_so=SharedObject.getRemote("users_so",nc.uri,false);
                         users_so.addEventListener (SyncEvent.SYNC,listPlace);
                         users_so.connect (nc);
    When I press "connect", the name in textInput.text normally will be passed and added to the list under the button. But the list stays empty and textInput.text isn't passed. Does anyone know a solution?
    Really thanks,
    Thomas

    Hi,
    The list is displayed empty because, you are populating the list with the value of the shared object's properties. Since you have not set any property in the code its displaying empty.
    Regards,
    Manish.

  • Passing data through webservices.

    Hi All,
    I have two doubts.
    1. Can we call a webservice without calling creating an ABAP Proxy?
    2. If yes how can i pass my internal table through webservice.
    any code snippet or wiki link regarding this will be very helpful.
    TIA
    Vikash Singh

    Hi Vikash,
    Go through the below link, it has a simple example which will help you,
    just search for "Calling a web service in ABAP that validates an email id" and click on the link of saptechnicaldotcom
    or try this
    http://help.sap.com/saphelp_nw70ehp2/helpdata/EN/1f/93163f9959a808e10000000a114084/content.htm
    Also, for transforming your internal table into XML, you can use the below piece of code
    CALL TRANSFORMATION ID  
       SOURCE root = ITAB
       RESULT XML xml_string.
    And you can pass the XML_STRING as input to the "CREATE_BY_URL_METHOD".
    But the XML_STRING will need to be in the format that the service can understand, you might have to modify it accordingly.
    Regards,
    Chen
    Edited by: Chen K V on Apr 26, 2011 1:04 PM
    Edited by: Chen K V on Apr 26, 2011 1:07 PM

  • Error when passing data through Business connector

    Dear all,
    we are getting below exception in BC trace while connecting to the remote url through SAP BC. Please guide us how to solve this problem.
    java.lang.RuntimeException: iaik.security.ssl.SSLCertificateException: Peer certificate rejected by TrustDecider
         at com.wm.pkg.sap.rfc.ListenerCallHandler.handleRequest(ListenerCallHandler.java:516)
         at com.sap.conn.idoc.jco.DefaultJCoIDocServerWorker$IDocDispatcher.handleRequest(DefaultJCoIDocServerWorker.java:72)
         at com.sap.conn.jco.rt.DefaultServerWorker.dispatchRequest(DefaultServerWorker.java:141)
         at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcServer.dispatchRequest(MiddlewareJavaRfc.java:2621)
         at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcServer.listen(MiddlewareJavaRfc.java:1919)
         at com.sap.conn.jco.rt.DefaultServerWorker.dispatch(DefaultServerWorker.java:258)
         at com.sap.conn.jco.rt.DefaultServerWorker.loop(DefaultServerWorker.java:320)
         at com.sap.conn.jco.rt.DefaultServerWorker.run(DefaultServerWorker.java:219)
         at com.wm.util.TimeWrappingProvider$TimeMesuredTask.run(TimeWrappingProvider.java:40)
         at com.wm.pkg.sap.rfc.ListenerThread.run(ListenerThread.java:70)
    Caused by: iaik.security.ssl.SSLCertificateException: iaik.security.ssl.SSLCertificateException: Peer certificate rejected by TrustDecider
         at com.wm.app.b2b.client.Context.invoke(Context.java:1290)
         at com.wm.app.b2b.client.Context.invoke(Context.java:1106)
         at com.wm.app.b2b.client.Context.connect(Context.java:764)
         at com.wm.app.b2b.client.Context.connect(Context.java:706)
         at wm.server.remote.checkConnection(remote.java:888)
         at wm.server.remote.checkConnection(remote.java:861)
         at wm.server.remote.invoke(remote.java:397)
         at sun.reflect.GeneratedMethodAccessor37.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:310)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:699)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:496)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:468)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:574)
            at com.wm.app.b2b.server.Service.doInvoke(Service.java:499)
         at pub.JSBC_remote.invoke(JSBC_remote.java:34)
         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:585)
         at com.wm.app.b2b.server.JavaService.baseInvoke(JavaService.java:310)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:699)
         at com.wm.app.b2b.server.BaseService.invoke(BaseService.java:147)
         at com.wm.lang.flow.FlowInvoke.invoke(FlowInvoke.java:279)
         at com.wm.lang.flow.FlowState.invokeNode(FlowState.java:556)
         at com.wm.lang.flow.FlowState.step(FlowState.java:427)
         at com.wm.lang.flow.FlowState.invoke(FlowState.java:397)
         at com.wm.app.b2b.server.FlowSvcImpl.baseInvoke(FlowSvcImpl.java:972)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:699)
         at com.wm.app.b2b.server.ServiceManager.invoke(ServiceManager.java:481)
         at com.wm.app.b2b.server.Service.doInvoke(Service.java:590)
         at com.wm.pkg.sap.rfc.ListenerCallHandler.handleRequest(ListenerCallHandler.java:454)
         ... 9 more
    Thanks and Regards,

    Dear sandeep,
    Thank you very much for your fast response.
    We have alredy downloaded certificate given by the other party and configured in BC.We are able to get the response from a from third party from url separtely from internet explorer.while executing by using service we are getting the above exception.
    Please give us some inputs on this issue.
    Thanks and  Regards,
    Edited by: chandra madapati on Dec 30, 2008 1:28 PM

  • WRE54G V2 connects with network, appears to work, but won't allow devices to pass data through

    This is the number one problem I've had with the WRE since I got it several months ago.....
    I originally set it up exactly in line with the instructions.....I turned off my WEP to prevent security issues at the start....
    My WRE starts up, red lights, then blue lights, then solid blue lights....All appears perfect....
    That is, until I attempt to use my PDA (HP 27XX) running Windows Mobile 5.....It just won't connect via the WRE......I have to unplug the WRE, then the PDA will connect, no problem, although with a weak signal......
    My laptop running a DLink wireless card will connect via the WRE, so I know it works!.....
    I have 3 PDA's....all HP, a 24XX, and 2 27XX models....all 3 won't connect through the WRE.....
    My Zune also won't connect via the WRE.....not sure why?....
    Any ideas?.....

    O.k.....I set it up as instructed.....No Go.....not even the Laptop would connect through it this time around.....
    The WRE appears in the "site survey", but nothing will connect to it or through it.....it acts like a VERY EFFECTIVE jammer!.....
    I'm surprised the "underground" hasn't discovered just how easy it is to use this as a network jammer.....
    Since I've owned mine, I'm guessing it's only worked 10 to 15% of the entire time....and NEVER with a PDA or ZUNE.......
    Please don't give up on me though, I really do appreciate and need tips and advice getting this thing to work......

  • No website is opening through firefox address bar how to solve this

    I think because of some virus or some configuration problem. The url which I type in the address bar is not opening. However I can search through google toolbar and google website. I get links when I click them website is opening but not opening through address bar also the suggestions are not loading in address bar. I tried uninstalling and reinstalling firefox but same problem. Also after opening website the url of website is not visible in address bar

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4.0+ SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    '''''If it is good in the Firefox SafeMode''''', your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    ''When you figure out what is causing that, please let us know. It might help other user's who have that problem.''

  • WHen I try searching by typing in address bar, I found yahoo as my default search engine which I want to be changed to google.

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/816389]''
    There are 3 different options for searching in Mozilla
    # Open Google.com and start searching
    # Enter your search string in Search bar
    # Enter you text in address bar and press space bar and then press enter.
    Now when I try to search through address bar then I found yahoo as my default search engine which I want to be changed to Google.com
    Please tell me the way of changing this.

    This issue can be caused by an extension.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • How to pass data from one  UIBB to anothere UIBB in OIF/GAF - FPM

    Dear all,
    as of now i am using FPM only for displaying data  from different components.
    now i would like to pass the data from one UIBB to another by calling second UIBB on action of a button. (instead of using standard path in GAF scenario)
    how could i achieve this.  is there any difference mechanism's for UIBB's of single component and UIBB's from different different components.
    it would be great if some one can explain or help me reg this issue on both OIF and GAF FPM's.
    Thanks in Advance.
    Best Regards,
    Kranthi kumar Palle.

    I've actually combined these two approaches to data sharing - I've passed a class reference in the shared data component. This is nice (in my opinion) because it is very obvious where the data is coming from and who it is shared with. It also means that there is not a huge overhead in passing data through the shared context, because you are just replicating a reference to a class instance.
    And -  you don't have to deal with singleton classes :-). So if you want/need to extend your implementation at a later date (for example embedding multiple instances of the same "app" in the one window - or suspending and resuming to another instance of the same app you can then do this. (NB - suspend resume to launch another FPM app does not work because of this (amongst other things)).
    NB a shared data component need not be faceless! I certainly have "shared data" UIBBs that also have UI components - possibly not best practice - but it certainly can be done.
    Cheers,
    Chris

  • How can i send Comments field data through IDOC HRMD_A06-E1P0035?

    Dear all,
    We need to post the legacy system data for infotype IT0035 using IDOC - HRMD_A06-E1P0035 to the SAP R/3 system.In this segment (E1P0035) there no field for the 'comments' to send the data. Pls let us know, is there any way to pass data through E1P0035 segment for the 'comments' field of IT0035?
    Thanks in advance.
    Ram Rayapudi

    Hi Ram,
    Comment fields in infotypes are not stored in the infotype-tables itself, but in PCL1-Cluster TX.
    In Standard-SAP there is no way to pass this via ALE. Even the infotype-table-field ITXEX, which say that there is any textfield present, is clear in ALE.
    If you really need to transfer this data, you have to do ALE-amplifications.
    Regards,
    Herbert

  • Can no longer enter data in the address bar {url Bar}, it correctly follows data from google search bar. It was a 1 month old installation so not a lot of complications

    I was not adding anything to Firefox. I Refused tool bars embedded in several application installs on this new computer. Was working fine. Then had a problem with Google search, restored default values and re-tooled Firefox. At this point all worked fine. Then my url, address bar changed color to the same color as the program shell, a grey brown as opposed to the white it was before. With the change in color it no longer allows me to change the data showing in the bar. I can not delete or add data. I used to add a url and navigate to the domain. Now I can not

    Greetings,
    TY for the reply, the information was enlightening to be sure. I never knew safe mode was an option with Firefox. I have so many tasks running that I didn't want to shut things down. What I did is turn off some of the last plug-ins I installed. That did not fix the problem at least in the first look. What happened next was very interesting none the less. I had a moment of mouse spastic wrist syndrome and accidentally moved a tab in such a way that it opened in a new window. The URL bar was white and editable. So I moved all my tabs to the new window and everything works as it should. I have restarted Firefox this morning and it came back with the bar editable and I am speechless to understand what I may have done to correct the problem if anything ??

  • In my MacBook Pro, finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see top bar(Apple, Date, Wifi). Even in safari address bar not accepting

    In my MacBook Pro(10.7.5), finder is crashing after logging in. It is showing crash report with Relaunch option, when i click on Relaunch option finder is working properly but i am unable to see Top bar(Apple logo, Date and Wifi etc... bar). Even in safari address bar, TextEdit not accepting any text means when type something not showing up and also i am unable operate any thing from keyboard. Plz help me…..

    One thing that you can try is installing a 'fresh' version of OS X Lion. Boot into your Recovery partition (holding down the command and R keys whilst booting) and elect to install OS X from the Recovery screen. You need not erase your hard drive and you should not lose any of your data.
    Oh, and just as a precaution, I would use Disk Utility, once you're in Recovery mode, to verify your hard drive before trying to install the OS again.
    Clinton

Maybe you are looking for

  • Generate an error message in UIX

    Dear sirs... how can i use ActionErrors in the UIX page to view a custom error message? thanks for any help.

  • Exchange 2013 Users cannot access Public folder in Exchange 2007 SP3

    Dears, i am working in Upgrading Exchange 2007 to Exchange 2013 CU7,, I came to know with CU7 we have new way for coexistence with legacy Public Folder  https://technet.microsoft.com/en-us/library/dn690134(v=exchg.150).aspx i did the steps exactly as

  • Where can I get a replacement Leopard disc to reinstall

    Hello, I have a 2008 24"iMac, and I'd like to reset it to factory settings to give it away...where can I find this disc? I seem to have misplaced mine...thanks!

  • Can I do consumption posting directly in EWM for 201 mvt of ERP?

    Hi All Can I do consumption posting in EWM system such that I will trigger consumption posting in ERP for a cost center with 201 movement type? I have checked the transaction '/SCWM/ADGI' but, it does not have any such option in the drop down for 'GI

  • Autofs not working

    Hi, I tried auto mounting my USB key drive and USB camera to automount but not sure where I am missing. Here is my approac. I followed  this wiki! http://wiki.archlinux.org/index.php/AutoFS_HowTo my rc.conf reads DAEMONS=(syslog-ng network netfs cron