Недавний контент ds1718

  1. D

    C# to call external program via cmd.exe and pass arguments

    Got it... string source = @"" + project.Variables["Image_OrigPath"].Value + ""; string destination = @"" + project.Variables["Image_LocalFullPath"].Value + ""; string size = project.Variables["Image_Resize"].Value; System.Diagnostics.Process.Start("C:\\IM\\convert.exe", "-resize " + size + "...
  2. D

    C# to call external program via cmd.exe and pass arguments

    I am trying to grab an image from my network and resize and rename with image magic. When I use the following commands it works. convert.exe -resize 588x420 \\ut02\pics-dotnet\images\DealerCMO\Cash_For_Cars\Cash_For_Cars\Images\cl_upload\YV1AS982491100676\1.jpg...
  3. D

    Wrong USER Agent during SSL hand shake

    Don't forget to tell people in order to do this, you have to set zenno to 1 thread per instance. It takes up alot more memory to run the same number of threads
  4. D

    Wrong USER Agent during SSL hand shake

    In Fiddler after each POST ( from zenno) there is a Tunnel to call. this contains default UA not the assigned one
  5. D

    Wrong USER Agent during SSL hand shake

    no change it template This is from 1 series don within under 1 second, with 20 or so cal back and forth each call created by zenno = UA assigned Each call created by SSL tunnel = default UA Zenno is not handling the UA properly or ALL communications
  6. D

    Wrong USER Agent during SSL hand shake

    Lets see if I can explain this right I am posting ads on an HTTPS site I am using fiddler to capture all the traffic and headers to test a problem I am having. I have found the the session creates some connect - keep alive session randomly, these send the machines default User agent and...
  7. D

    Profile Processing New Options

    on Profile processing Please add the following items #1 Allow setting the color depth just like screen resolution Screen Size and Color Depth 1024x768x16 Liek this, it always displays my RDP session coloring scale. would like to be able to set this easier
  8. D

    Load Profile Issues

    I am testing the loading of profile Settings to Zenno have found a few bugs These setting appear to have no affect on Browser date collection availHeight Returns the height of the screen (excluding the Windows Taskbar) availWidth Returns the width of the screen (excluding the...
  9. D

    Cookie handeling in HTTP and POst, then to assing to browser

    I tried this. and it does not open in a browser. I am trying to actually open the next page in the browser with the cookies I have from the HTTP get and post. I want to pass the cookies to the user profile, and be able to sue them. so when I open the page I am on, the cookie says OK, and...
  10. D

    Allow scroll left and right in Version 5 Poster

    like this Here is an example of a scroll bar location
  11. D

    Cookie handeling in HTTP and POst, then to assing to browser

    OK, got the upload button working, now how to pass the cookie back to the browser? Cookie: cl_b=6KIfG8sq4xGq2wQ61CbRsgUq+bM; cl_img=list; cl_session=t9WsmP2akHhNQRGHDgyRDymip78yWzEK2Br1yink2c2ZqYUUhheTnkHJFCbblPXF that is the cookie (s) that I would like to move to the user profile, and...
  12. D

    Cookie handeling in HTTP and POst, then to assing to browser

    what I am trying to do in moving to the browser, is get the Cookie ( I already have it stored) then open the current page in Browser. The issue comes in to fully opn the current page with the current cookie. Been trying with C# to assign the cookie using System.Net.Cookie(cl_session...
  13. D

    Cookie handeling in HTTP and POst, then to assing to browser

    I have been trying to upload the images in the http post, but I am not familiar with how to do it, passing full file path to the images does not work
  14. D

    Cookie handeling in HTTP and POst, then to assing to browser

    craigslist.org
  15. D

    Cookie handeling in HTTP and POst, then to assing to browser

    Hi Guys, I have a site I am doing several steps in HTTP then post to fill out forms All goes well until there is an image upload button. I don't know how to pass the image upload in post, so I was trying swap back to the browser. Now I am having a hard time passing the cookie that I...