Pawan Salwan

Greenhorn
+ Follow
since Nov 22, 2012
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Pawan Salwan

Hi All,

My requirement is actually i want to do search based on some fields and I want to fetch data from multiple tables say 4 tables Batch_JOB_INSTACNE ,BATCH_JOB_PARAM_BATCH_JOB_EXCEUITION ,BATCH_JOB_SETP_EXECUTION.I want to use INNER JOINS and LEFT OUTER JOIN and i want to do this by using Hibernate Criteria . Can Please anyone help me on this.



Thanks,
Pawan Salwan

N Sahni wrote:There are some tools available:

  • For Windows:
  • WFetch

  • For Linux:
  • use curl



    I have tried curl from command line but i did not get any command that help us to test these condition there are get and post command
    . I also disable the TRACE in the web.xml but when i run the curl command for trace like curl -trace trace.txt this command is still working however it as per consrtaint it should not work may be i was doing something wrong. if you have any idea about this it will be very helpful.


    Regards,
    Pawan Salwan
    11 years ago
    Hi Nilesh,

    Thanks for replying. Yeah this is an option what you mentioned but I want to know do we have any open source tool to test or i can say scan the tomcat to check whether these methods are working after disabling in tomcat's web.xml if you have any idea about that it will be very helpful.
    11 years ago
    I am working on application which allow all HTTP methods now we have requirement of disabling HTTP methods PUT,DELETE,TRACE and allow only POST and GET keeping security in mind. I have googled and got the <security-constraint>
    <web-resource-collection>
    <web-resource-name><strong>restricted methods</strong></web-resource-name>
    <url-pattern><strong>/*</strong></url-pattern>
    <http-method><strong>PUT</strong></http-method>>
    <http-method><strong>DELETE</strong></http-method>
    <http-method><strong>OPTIONS</strong></http-method>
    <http-method><strong>TRACE</strong></http-method>
    </web-resource-collection>
    <auth-constraint />
    </security-constraint>

    above is the code used in web.xml as i am using tomcat. I have put the code in there, i want to know how should i test if its working or not. Pleaseeee help on tracking this issue.
    11 years ago