User Profile

Collapse

Profile Sidebar

Collapse
hussain123
hussain123
Last Activity: Sep 17 '08, 01:03 PM
Joined: Jan 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hussain123
    started a topic Persistent store problem in weblogic
    in Java

    Persistent store problem in weblogic

    Hi,
    We have an issue wherein we have an persistent store and are caching the url's visited.Now the problem is when the first url is cached then any subsequent request even though to some other url points again to the same cached url.On googling I found out that it has something to do with the settings in the weblogic.xml, but I can't find the correct weblogic.xml wherein this setting could be made.

    Weblogic version:- 9.1...
    See more | Go to post

  • What error message u r getting?
    U can see the error message under Tools -->Error Console

    -Hussain
    See more | Go to post

    Leave a comment:


  • Use this for the year part

    Code:
    var current_year = d.getUTCFullYear();

    - Hussain
    See more | Go to post

    Leave a comment:


  • Absolutely not required.
    I just copied-pasted the url param into the Form's action tag without looking into the copied stuff. :D
    See more | Go to post

    Leave a comment:


  • Try this code,it should work.


    Code:
         <cfoutput>
    
          <cfform name="form" id="form" action="index.cfm?fuseaction=#XFA.test#&log=#attributes.lo  g#&AcctId=#attributes.AcctId#&rn=#attributes.rn#" method="post">
    
          <table>
    
              <tr>
    
                  <td>
    ...
    See more | Go to post

    Leave a comment:


  • hussain123
    replied to submit from on click from hyper link
    I think you have specified the cfm path in the href attribute of the link.
    Remove that!!! Then it should work.

    Hussain...
    See more | Go to post

    Leave a comment:


  • hussain123
    started a topic Issue in invoking procedure

    Issue in invoking procedure

    Hi All,
    I am invoking a procedure which takes 2 IN parameters and both are dates which are passed as string.In the procedure I am using those 2 IN parameters to query the db and fetch record between those two dates.
    In java I m doin something like:-

    Code:
    String s_dt= "14/03/2006 09:30:30";
    String e_dt= "15/04/2008 09:30:30";
    String query = "begin ? := pkg.temp_proc(?, ?); end;";
    ...
    See more | Go to post

  • Put your selected option in a session variable and when the page reloads check for it's value and accordingly make your options selected.
    See more | Go to post

    Leave a comment:


  • hussain123
    started a topic Problem invoking procedure from java code
    in Java

    Problem invoking procedure from java code

    Hi All,
    I am invoking a procedure which takes 2 IN parameters and both are dates which are passed as string.In the procedure I am using those 2 IN parameters to query the db and fetch record between those two dates.
    In java I m doin something like:-

    Code:
    String s_dt= "14/03/2006 09:30:30";
    String e_dt= "15/04/2008 09:30:30";
    String query = "begin ? := pkg.temp_proc(?, ?); end;";
    ...
    See more | Go to post

  • hussain123
    replied to Suppressing exception raised in Groovy
    in Java
    Hi
    This is the line for which it is displaying the exception on the screen and then going into the catch block.

    Code:
    	consConn.eachRow(consSql)
    The above code is in the try block where it is throwing the exception and displaying on the screen before going into the catch block.


    Regards,
    Hussain
    See more | Go to post

    Leave a comment:


  • hussain123
    started a topic Suppressing exception raised in Groovy
    in Java

    Suppressing exception raised in Groovy

    First of all I am sorry to post this question here since I don't know where to post the question related to Groovy.Since it is much similar to JAVA i am posting it here.
    I am trying to connect to a database in GROOVY and if it fails then it should display an appropriate message on the screen.The entire code I have put it in a try-catch block.When the connection to the db fails my control goes to the catch block and in that catch block I am...
    See more | Go to post

  • Window.opener giving "Permission Denied" error

    We have a main window (call it Parent). Clicking on a link in the main window will open up another IE window (Child) using the loadInFrame() method.
    In the Child window, i load another IE window (which loads an applet. Call this SubChild). This is for the first time. Now if i go ahead and click on the link in the Parent window, the Child and the Subchild windows are refreshed. None of the windows are closed.

    Now if i refresh...
    See more | Go to post

  • hussain123
    replied to Session variables not working in PHP 5.0.4
    in PHP
    [code=php]
    <?
    //first page
    session_start() ;
    session_registe r('variable');

    $HTTP_SESSION_V ARS['variable']= value;
    ?>
    <html>
    <body>
    <a href="page2.php ">Page2</a>
    </body>
    </html>
    [/code]

    [code=php]
    <?
    //page 2
    $newvariable = $HTTP_SESSION_V ARS['variable'];

    ...
    See more | Go to post
    Last edited by Atli; Nov 16 '07, 09:57 AM. Reason: Added [code] tags.

    Leave a comment:


  • hussain123
    started a topic Session variables not working in PHP 5.0.4
    in PHP

    Session variables not working in PHP 5.0.4

    Hi All,
    I have a web site which was hosted on m/c A and PHP version there was 4.4.3
    Now I have moved my website to m/c B and the PHP version is 5.0.4
    But now the problem is that the on the m/c B my session variables(HTTP session variables) used in the PHP code are not maintained across all the pages which is creating problem on my website.
    I have put the exact code in m/c B which was there in m/c A and was working perfectly....
    See more | Go to post

  • hussain123
    replied to Error while executing query from VB.Net
    in .NET
    Thanks!!!!!!!!! !!

    Hussain.
    See more | Go to post

    Leave a comment:


  • hussain123
    started a topic Error while executing query from VB.Net
    in .NET

    Error while executing query from VB.Net

    Hi All,
    I am trying to execute a query from my VB.Net application but it throwing an error as "Syntax error in update statement".
    The query is:-
    Dim UpdQuery As String = "Update tblDefectData set DefectDesc= '" & rtbDefectDesc.T ext & "' ,Module= '" & cbModule.Text & "' where DefectId= " & txtDefectId.Tex t

    DB is MS-Access.
    What is wrong with this...
    See more | Go to post

  • hussain123
    replied to Getting ORA-01003 error
    Then why is the cursor/query-plan getting invalidated here?
    See more | Go to post

    Leave a comment:


  • hussain123
    replied to Getting ORA-01003 error
    When I execute the query from the SQL Prompt it works fine since I hard-code the values in the where condition.Where as from Coldfusion the values in the where clause are taken as per the user selection.
    Is this something to do with Oracle still trying to access the older cursor??
    See more | Go to post

    Leave a comment:


  • hussain123
    started a topic Getting ORA-01003 error

    Getting ORA-01003 error

    Hi All,
    I am getting an ORA-01003 error when I execute a query from Coldfusion.I found on net that this error is thrown when the cursor which stores the query data gets invalidated.The table which I am referring to was changed(Some constriants were added to it) and hence I suppose I was getting this error.Then I restarted Oracle and the error went away.But after 2-3 days the error has again started popping-up.
    I am fairly confident...
    See more | Go to post

  • Don't we have some HTML tags to download data into excel like the way we have to upload files?
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...