How to pass parameter to a search engine using URLConnection

Hello Friends,
I have written a very simple method for prrof of concept.
It does return value from the server but the value it returns is "501 not implemented"
instead of the search results related to the parameter I pass.below is the code
public GoogleSearchMain() {
String urls = "http://www.google.ca/";
try{
URL url = new URL(urls);
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
System.out.println("url opened and ready to be written at.");
//send search message
PrintWriter pout = new PrintWriter(connection.getOutputStream());
pout.println("search?q="+"New York");
pout.close();
BufferedReader in = new BufferedReader(     new InputStreamReader(connection.getInputStream()));
String line="";
while((line=in.readLine())!=null){
System.out.println(line);
}catch(MalformedURLException mfe){
System.out.println("MALFORMED URL : "+mfe.getMessage());
}catch(IOException ioe){
System.out.println("IOEXception : "+ioe.getMessage());
can some one please guide me where I am missing and what?
thanks

Read some of these
http://search.java.sun.com/search/java/index.jsp?and=google+search+url&phr=&qt=&not=&field=&since=&nh=10&col=javaforums&rf=0&Search.x=15&Search.y=7

Similar Messages

  • How to pass parameter between two jsp pages using web link (not form)

    Hi Friends,
    I have two jsp pages and would like to pass a parameter from one JSP page (one.jsp) to another JPS page (two.jsp)
    in one.jsp
    <a href="two.jsp?ant="<%=ant%">"> <%=antName%> </a><br>
    I don't know how to pass value of parameter "ant" to two.jsp from one.jsp.
    Can anyone help this? Thank you in advance</a>

    Looks like you've got it almost right - just an extra unneeded "
    <a href="two.jsp"?ant=<%= ant %>"><%=antName%></a>
    which should render on the page as something like
    My Ant Task
    When you click the link, it should pass that parameter, and you can get it via request.getParameter().

  • How to pass parameter into a source variable of a invoke activity

    I'm an new BPELer, I created a invoke activity to submit Oracle Appplications concurrent program, but I don't know how to pass parameter into source variable.
    BTW, I have created the mapper file (.xsl) file.
    could anyone tell me how to do that?
    Thanks,
    Victor

    Hi.
    How you start application? I think you send message to webservice(BPEL process is webservice too). So construct message with variable and value.
    But I created only processes where input value doesn't matter. I haven't use mapper yet too.

  • How to Pass parameter to Custom Scheduler dynamically

    hi ,
    I am new to OIM.
    Need your help in passing parameters dynamically to Custom Scheduler.
    I have created Custom Scheduler by extending Task Support.
    I have registered the plugin through API , using PlatformService.registerPlugin() method.
    As I need to send the parameter(s) to this CustomScheduler, I have defined them in Metadata (CustomScheduleTask.xml) file as below and got it imported into DB
    through weblogicImportMetadata.sh script by providing the path of the file.
    <scheduledTasks xmlns="http://xmlns.oracle.com/oim/scheduler">
    <task>
    <name>CustomScheduleTask</name>
    <class>org.schedule.custom.task.CustomScheduleTask</class>
    <description>Fetch details of the given user_id</description>
    <retry>5</retry>
    <parameters>
    <string-param required="true" helpText="Login Name">Login Name</string-param>
    </parameters>
    </task>
    </scheduledTasks>
    Iam able to import this plugin as well as register the plugin successfully. Now I have defined a job to which this Custom SchedulerTask is mapped.
    Now in order to run this job(schedule task) I need to provide Login name( or id) which needs to be send as a parameter for the scheduler to get executed.
    But while defining the job with this Schedule Task on OIM console, I was not able to define or pass parameter to this job. hence parameter is null in
    CustomSchedule 's execute method .
    Kindly help me how to pass parameter dynamically while running the scheduler from OIM console so that the execute method would be able to receive it.
    Thank you in Advance.
    Regards,
    Kumar

    Hi,
    When you have created the schedule job for your custom schedule task, you should see your Login Name textfield in the schedule task. If not, then there verify your schedule task xml.
    In your schedule class code, add:
    public void execute(HashMap arg0) {
              final String METHOD_NAME = "execute :: ";
              logger.debug(CLASS_NAME + METHOD_NAME + "Entering Method - execute");
              try {
                   String LoginName = arg0.get("Login Name");
    Regards,
    Sunny

  • How do I change my default search engine from Yahoo to Google

    How do I change my default search engine which appears as a free text band at the top of my default Apple website.  I want to change it from Yahoo to Google.
    Thx

    Safari/Preferences/General.  There is a place there to specify your default search engine.

  • How to pass parameter as http POST in pageContext.setForwardURL

    Hi,
    I need to call a third party application page in my custom OAF page. I need to pass parameter to this third party page using POST method. I am using following command to call that -
    HashMap hm = new HashMap();
    hm.put("FirstName",firstName );
    hm.put("LastName",lastName);
    hm.put("AppSignature", signature);
    pageContext.setForwardURL(hopURL,
    null, // not necessary with KEEP_MENU_CONTEXT
    OAWebBeanConstants.KEEP_MENU_CONTEXT, // no change to menu context
    null, // No need to specify since we're keeping menu context
    hm, // request parameters
    false, // retain the root application module
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES, // display breadcrumbs
    OAException.ERROR);
    I am passing parameter to the page using hash map table. That application is expecting the parameters in POST format and I believe using hash map table the parameters will be passed as GET format.
    We figured that out because one of the parameter we have to send is AppSignature which is 160 characters long. When third party applicatoin received that parameter they got only 151 characters, looks like they are truncated by GET method.
    Any idea how to pass parameter using POST format so that this issue could be fixed.
    Regards
    Hitesh

    Sumit,
    Thanks for your reply. I have resolved this issue by forwarding all parameters in session using pageContext.putSessionValueDirect and redirect to a jsp using pageContext.redirectImmediately.
    in jsp I read the params from session and set in the form , and then redirected to my third party application.
    Regards
    Hitesh

  • How to pass parameter /1BCDWB/DOCPARAMS from webdynpro?

    Hi Experts,
    We create a wdp view and indert an adobe form into it. And this form has an interface based on XML schema.
    Now we want to translate this form into multi-language, and in wdp side, we will display diffenent language version of form for different regions.
    I found that there is a paramater /1BCDWB/DOCPARAMS-LANGU, and it seems can control the language version in processing.
    But I donot know how to pass parameter /1BCDWB/DOCPARAMS from wdp to adobe form.
    Its my 1st to use adobe form and wdp, i really have no way out. Any advice will be Appreciated.
    Thank you.
    Richard

    @sahai: Hey no , I am using very very simple example without any query or complex statement. I just have 2 radio buttons in VIEW1. On clicking the radio button, the naviagtion to view2 is done and the value of selected radio button is passed as a parameter in the plug.
    In the view2 , i just have a caption in my layout where i am displaying the parameter value by setting the attribute.THe warning i get is in view2. Here is the code. Apart from this there is no coding in view2.
    METHOD HANDLEPLUG_IN_V2 .
        DATA:
          NODE_CAPT_MSG                       TYPE REF TO IF_WD_CONTEXT_NODE,
          ELEM_CAPT_MSG                       TYPE REF TO IF_WD_CONTEXT_ELEMENT,
          STRU_CAPT_MSG                       TYPE IF_VIEW2=>ELEMENT_CAPT_MSG ,
          ITEM_MSG                            LIKE STRU_CAPT_MSG-MSG.
    *   navigate from <CONTEXT> to <CAPT_MSG> via lead selection
        NODE_CAPT_MSG = WD_CONTEXT->GET_CHILD_NODE( NAME = `CAPT_MSG` ).
    *   get single attribute
        NODE_CAPT_MSG->SET_ATTRIBUTE(
          EXPORTING
            NAME =  `MSG`
            VALUE = PAR_1 ).
    ENDMETHOD.

  • How to pass parameter to the Query String of the Named Queries'SQL

    Firstly to say sorry,I'm a beginner and my English is very little.
    Now I want to know
    How to pass parameter to the Query String of the Named Queries'SQL in the Map editor.
    Thanks.

    benzi,
    Not sure if this is on target for your question, but see #5 in the link below for some web screencasts that show how to pass an input text form field value to the bind variable of a view object. If you're looking for something different, maybe provide some more details such as what you are trying to accomplish and what technology stack you are using - for example, ADF BC, JSF, etc.
    http://radio.weblogs.com/0118231/stories/2005/06/24/jdeveloperAdfScreencasts.html
    Also see section 5.9 and chapter 18 in the developer's guide.
    thanks

  • How to pass parameter to intro.jsp page ?

    Hi all,
    Anybody please tell me how to pass parameter to intro.jsp page.
    Is there any param name defined in <forward > syntax ?
    I have made following configuration in struts-config.xml file.
    I want to pass parameter to intro.jsp page
    <global-forwards>
              <forward name="invalidsession" path="/intro.jsp" redirect="true" />
    </global-forwards>
    please reply soon.
    Thanking you.

    Hi all,
    I have a similar kind of question..
    Iam trying to pass a string variable from JSP to servlet thro URL..
    Im using tomcat5
    COde:
    String fname=request.getParamter("filename");
    <jsp:forward page="/servlet/coreservlets.filedownload?name=" +fname />
    It is generating a unterminated tag error..Please help..

  • How to pass parameter into transaction iview ?

    Hi experts,
    I want to know "how to pass parameter into transaction iview ".
    Regards,
    Krishna Balaji T

    Hi Krishna,
    Not sure if this can help you.
    1) Passing a parameter to a transaction iview (I saw a resolved suggestion)
    Passing a parameter to a transaction iview
    2) Passing a parameter from the portal to R3 (helpful info for you)
    Passing a parameter from the portal to R3
    3) Create SAP Transaction iView using SAPGUI for Windows (Great Blog and info about TA Iview)
    Create SAP Transaction iView using SAPGUI for Windows
    Please check the following link for Transaction Iviews
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/f9e1ac7da0ee4587d79e8de7584966/frameset.htm
    Just some info: Portal is basically what the end user can see. What he can do, is still maintain in the backend system. If there are parameters setup already for the user in the backend system (in SU01), then those parameters should still valid for the transaction that the parameters are linked to.
    Hope that helps and award points for helpful suggestions.
    Ray

  • How to   Pass Parameter from BIP  to Dashboard  Report

    Hi,
    Parameter from BIP to Dashboard Report
    If I select BIP report paremeter should pass value to dashboard report
    thanks in advance.
    CHEERS ,
    Jel

    Hi Saichand,
    I hav gone through above link its passing values from Dashboard prompt to BIP report only..
    just i need like reverse (if i click on BIP report value then it should pass that value to Dashboard reports) in this this case how to pass parameter from BIP to dashboard report
    Thanks in advance
    Cheers,
    Jel

  • When opening a new tab how can i get the yahoo search engine off of the new tab to where its just a blank tab ?

    When opening a new tab it automatically loads the yahoo search engine in the new tab. It use to just open a blank tab..how do I remove the Yahoo search engine from loading in a new tab ?

    To make it a blank page again go to:
    Tools and then click on add-ons
    Then scroll down and disable "My.Freeze.com Net Assistant"
    This should fix your problem :)

  • Somehow when I do a search from toolbar it redirects to bing. I have been unable to restore it so that it goes to google. How do I remove this unwanted search engine?

    Somehow when I do a search from toolbar it redirects to bing. I have been unable to restore it so that it goes to google. How do I remove this unwanted search engine?

    Hi kjkirtley,
    Your question is not quite clear about where you are doing the searches from, but I will presume you are trying to do searches from Safari (Apple’s web browser) and it is using Bing as the default search engine. You can set the default search engine to Google by going to the Safari menu > Preferences > General > Default Search Engine:
    See this article for further information -
    Safari 7 (Mavericks): Search the web
    http://support.apple.com/kb/PH17150
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • How do I change my default search engine from Google to Start Page?

    I don't like to use Google because there are privacy issues which Google is only too happy to violate and hand over to parties I do not want.
    I want to be able to use StartPage instead of Google when I type something in the URL space and I want StartPage to be my default home page (already is), default small box search (already is) and defalut search engine (which it is not).
    Thanks!

    See:
    *https://support.mozilla.org/kb/Location+bar+search
    Note that starting with Firefox 23 it will no longer be possible to specify the search engine for the location bar via the keyword.URL pref.
    In Firefox 23+ the search engine used in the location bar is the search engine that is selected in the Search Bar.<br />
    You can consider to use a (one letter) keyword search for searching via the location bar.<br />
    You can set a keyword for an installed search engine via Manage Search Engines (click the search engines icon on the search bar).
    *Bug 738818 - consolidate Firefox search preferences
    <i>Please DO NOT comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • How do I change the default search engine in the navigation bar?

    I have tried the about:config solution and it did not work. My search engine used to be Google but it has changed to some random search engine that doesn't even have an official name. there is not option in the drop down menu. And there is no option in the FireFox Options. I am wondering why it is so hard to change something like this. there should be a button for those of us that aren't computer savvy. Am getting irritated that i can't just search something anymore.

    hello please install the search reset addon in order to revert to the default search engine:
    https://addons.mozilla.org/firefox/addon/searchreset/
    also make sure that you don't have any toolbars or 3rd-party programs installed that might overwrite the search behaviour in firefox
    [[Remove a toolbar that has taken over your Firefox search or home page]]

Maybe you are looking for

  • Vendor / Customer Aging Status

    Hi All, Please provide me a solution for this issue. Description : Ageing as on previous date w.r.t  debtors , creditors for example for a vendor ageing on 30.4.11 is Rs. 600000 credit what is the status as on date Say for example the Total amount is

  • Advance Balance and Https pages

    Hello, I have setup load blancing on our web server, using a content rule and services, with Protocol tcp and any port. I find that it will allow Https traffic through when the Advance Balance option is not enabled but i get a "server or DNS error" w

  • Related to payroll and company code

    Dear Guru's I want to know the Company code of a PERNR in the PAYROLL means from where can I get the Company code of a PERNR means from which structure .. Thanks in Advance ' Regards, PAVAN.

  • Problom opening iTunes; .itl file in use?

    Hi, I recently transferred my itunes collection to an external NAS drive, and manually transferred all of the library information files to the same directory.  This worked fine for the past week, although saving library data has been a bit slow. Toda

  • How to enable webmail in Mac OS server 10.9

    Is there any way to enable or configure webmail in Mac OS server 10.9 but without installing Roundcube?