show posts in archive page based on selected catagory

You can use following code for category name

 'The_Category_Name', 'posts_per_page' => -1 ) );

// The Loop
while ( have_posts() ) : the_post();
    echo '</li>';
    the_title();
    echo '</li>';
    endwhile;

// Reset Query
wp_reset_query();

?>

Here replace The_Category_Name by name of your category