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 dencom 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: *

  1. Buddyholly83

    Encoding issue using form

    Hi guys and gals! Been scratching my head about this for a week now and still don't have a solution. I am making a form post to a web service using the following: my $userAgent = new LWP::UserAgent; $userAgent -> timeout([10]); $response = $userAgent -> post($uri, [ Username...
  2. Buddyholly83

    SSL certificates knowledge question

    I am connecting to an SSL server, essentially i am using the Crypt::SSLeay module. The module does all the work for me, checks the servers certificate etc. Although i dont need a certificate to access the server I know i can provide one, presumeably so the server can authenticate me? under what...
  3. Buddyholly83

    receiving data from a form

    I am playing about with forms and trying to receive some form data from a form post. Im getting no errors but im getting nothin output. Here is the HTML: <form method="post" action="EsendexAccountEventHandler.pl"> <input type="hidden" name="value1" value="test1"> <input type="hidden"...
  4. Buddyholly83

    Another simple one for you guys :)

    Trying to place occurances of + with ' ' (a space) from a string, and %3a with : from another string like so: $four =~ s/"+"/ /; $five =~ s/"%3a"/:/; This doesn't do anything :( Any ideas?
  5. Buddyholly83

    Array of hashes help required

    Trying to add hashes to array then loop through and print them off. To add each hash to the array i am using: push (@messages, { messageID => $1, originator => $2, recipient => $3, body => $4, receivedAt => $5, type => $6 }); To print the contents i am using: my...
  6. Buddyholly83

    Memory perentheses

    I am parsing a string that looks like: HTTP/1.1 200 OK Cache-Control: private Date: Fri, 12 Aug 2005 08:48:38 GMT Server: Microsoft-IIS/6.0 Content-Length: 333 Content-Type: text/plain; charset=utf-8 Client-Date: Fri, 12 Aug 2005 08:48:36 GMT Client-Peer: 217.158.183.37:80 Client-Response-Num...
  7. Buddyholly83

    Pattern matching

    I am being returned some data that looks like: Set-Cookie: ASP.NET_SessionId=bir2jo45j0jev355wqdp0xed; path=/ X-AspNet-Version: 1.1.4322 X-Powered-By: ASP.NET Result=OK MessageIDs=f89fcc9b-b7ba-44a8-bebe-785302b6f136 The bit i am interested in is the Result and messageIDs lines. I can...
  8. Buddyholly83

    Problem using object fields in a class method

    I have created an instance of SendServiceTest in my Main perl app and then call a method of SendServiceTest on the object like so: my $message = new SendServiceTest ( $username, $password, $account ); $message -> sendMessageTest($uri, $recipient, $originator, $body, $type, $validityPeriod)...
  9. Buddyholly83

    SSL web connection

    Successfully able to perform a form post using my code below. But now i need to connect to a secure webserver, however I am guessing that connecting through SSL isn't as simple as changing http -> https! Can anyone point me in the right direction on how to make an ssl connection, I've installed...
  10. Buddyholly83

    Perl and form post help

    I need to use Form Post interface to integrate SMS functionality into my site. I am accessing an SMS service through another company. All services are accessible using the HTTPS protocol. Can someone please point me in the right direction for what i need to do for this? They give tips on how to...

Part and Inventory Search

Back
Top