Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SnapJack
  • Order by date
  1. SnapJack

    Loud Beep When I Press The ENTER Key

    hold on man looks like most of the code got truncated.. so give me your email address and i will send it to u with all the dependent files too...
  2. SnapJack

    Loud Beep When I Press The ENTER Key

    sorry about that huge piece of code.. to simulate the problem..copy the above code and save it as an html file now click on the missing image which says Toggle control...Surface and Reservoir Sections. an error pops up..if a confirmation box appears Yes/No then press no (this error does not...
  3. SnapJack

    Loud Beep When I Press The ENTER Key

    <!--METADATA TYPE=&quot;ASP_DEBUG_INFO&quot; 55918,212,49948 --> <html xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot; xmlns:msxsl=&quot;urn:schemas-microsoft-com:xslt&quot; xmlns:cv=&quot;Covansys-namespace&quot;> <head> <META http-equiv=&quot;Content-Type&quot; content=&quot;text/html...
  4. SnapJack

    Loud Beep When I Press The ENTER Key

    Hi, I have a page with three submit options.When I enter data and press enter to submit the page the validation(done in javascript) for the first button gets triggered.If the validation is ok then the page submits with a loud continous beep going for 3-4 seconds and if the validation fails then...
  5. SnapJack

    ServerXmlhttp with SSL &amp; Client Certifcates For authentication

    Hi, I have to post an xml using ServerXMlHttp (MSXML 4.0) in the secure mode. The recieving system requires a client certificate to authenticate the post. Please let me know(in detail) how this can be done.Preferably with a sample code. Please dont point me to any msdn links ...I have gone...
  6. SnapJack

    Deployment Error Weblogic 6.1

    yes, i did it was a classpath problem....
  7. SnapJack

    Group By on a Union

    Hi, I have a problem in sql server 2000. Take the example below and please let me know how i could group by and order by ponumber and company (Select ponumber,Company from tableA) union (Select ponumber,Company from tableB) Please help asap as this urgent.
  8. SnapJack

    I want to query microsoft active di

    I want to query microsoft active directory to retrieve all users whose last name are between (let us say) x and y. How do I do it in Visual Basic? Please help. This is urgent.
  9. SnapJack

    Deployment error.

    Ok I did some more investigation. I am using weblogic 6.1 Let me explain the problem in a better manner. I have a servlet called ControllerServlet which calls the OrderSessionBean using the normal jndi lookup. Now this session bean in turn calls the OrderEntityBean. Ok note that the...
  10. SnapJack

    Deployment Error Weblogic 6.1

    Hi I am using Weblogic 6.1 and I am getting this error when I deploy . Please help. Unable to deploy EJB: OrderEntity from order.jar: java.lang.NullPointerException at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.setMDField(ClientDri venBeanInfoImpl.java:666) at...
  11. SnapJack

    Deployment error.

    Hi I am using Weblogic 6.1 and I am getting this error when I deploy . Please help. Unable to deploy EJB: OrderEntity from order.jar: java.lang.NullPointerException at weblogic.ejb20.deployer.ClientDrivenBeanInfoImpl.setMDField(ClientDri venBeanInfoImpl.java:666) at...
  12. SnapJack

    Unable to access cdrom

    Hi. Well i am a newbie to linux.I managed to install red hat linux 7.1.Initally i had problems with this but then managed to install with the no DMA option. Now the problem comes up wen i try to access my cdrom. My machine hangs and i am forced to restart my machine. I refered to the excore...
  13. SnapJack

    JSP-&gt;XML-&gt;Servlet

    I fully agree with wushutwist .... needless to say it would be really unnecessary to go about the way you are trying to do it..
  14. SnapJack

    Jsp Cache

    Ok i guess that aint gonna be the solution... i dont know much about Resin ... but as for weblogic...everytime i make changes to the jsp.. it is re-compiled and then loaded... guess that does not happen with resin... maybe the server keeps the old copy of the code until u re-start the server...
  15. SnapJack

    Jsp Cache

    i just went through some details about the resin webserver.. i found that &quot;Sessions should be disabled for caching.&quot; Now in your case u want to avoid caching.. so u can as well enable sessions in your program to avoid the problem.. try and let me know..
  16. SnapJack

    Jsp Cache

    or you could try to add this piece of code into your html.. <html> <head> <meta http-equiv=&quot;Expires&quot; CONTENT=&quot;0&quot;> <meta http-equiv=&quot;Cache-Control&quot; CONTENT=&quot;no-cache&quot;> <meta http-equiv=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;> </head> let me...
  17. SnapJack

    Jsp Cache

    maybe you could try this... just add this piece of code to your jsp file diplaying the xml file and let me know if it works.. <% response.setHeader(&quot;Cache-Control&quot;,&quot;no-cache&quot;); response.setHeader(&quot;Pragma&quot;,&quot;no-cache&quot;); //prevents caching at the proxy...
  18. SnapJack

    How to find my IP by programation?

    import java.net.*; public class MYIP { public static void main(String args[]) { System.out.println(InetAddress.getLocalHost()); } } Regards SnapJAck
  19. SnapJack

    How to empty a file

    import java.io.*; public class FW { public static void main(String args[]) { FileWriter out=null; try { out = new FileWriter(&quot;c:/test.txt&quot;); out.write(&quot;blah blah blah&quot;); out.flush(); out.close(); //doing something.. // // // //now emptying...
  20. SnapJack

    Sorting a Vector

    ok thanks guys....

Part and Inventory Search

Back
Top