473,803 Members | 3,306 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GET Message format HTTP

Apologies if the is the wrong NG.

But I have trapped a GET issued by a webpage on a button press and I would
like to issue the GET programatically as-and-when I wish.

I wondered what the text before the get text signifies? I imagine they are
variable names and parameter values.

Is this correct?

Would someone tell me how I can go about decoding them (or give a
reference(s)), so I can find out what I should actually send in the GET?

Here is a sample of format of the instruction I have trapped.

Thanks

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N
ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid =
Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
/fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint,
*/*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: WWW.DUMMY_SITE.COM



Jul 23 '05 #1
7 2617
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...
Apologies if the is the wrong NG.

But I have trapped a GET issued by a webpage on a button press and I would
like to issue the GET programatically as-and-when I wish.

I wondered what the text before the get text signifies? I imagine they are
variable names and parameter values.

Is this correct?

Would someone tell me how I can go about decoding them (or give a
reference(s)), so I can find out what I should actually send in the GET?

Here is a sample of format of the instruction I have trapped.

Thanks

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid = Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
/fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint, */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: WWW.DUMMY_SITE.COM


How did you trap the above?

It looks like that the relevant part is
/fishing/LoadMDA.do?mi=2 339117

Thus you could do:
location.href = "/fishing/LoadMDA.do?mi=2 339117";
whenever you wanted.

I'm not sure what the first several lines are for.
They seem like name/value pairs (some with no value):

AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET

Jul 23 '05 #2

"McKirahan" <Ne**@McKirahan .com> wrote in message
news:WhNyd.2810 10$HA.74380@att bi_s01...
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...
Apologies if the is the wrong NG.

But I have trapped a GET issued by a webpage on a button press and I would like to issue the GET programatically as-and-when I wish.

I wondered what the text before the get text signifies? I imagine they are variable names and parameter values.

Is this correct?

Would someone tell me how I can go about decoding them (or give a
reference(s)), so I can find out what I should actually send in the GET?

Here is a sample of format of the instruction I have trapped.

Thanks

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N

ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid =
Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
/fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword,

application/vnd.ms-powerpoint,
*/*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: WWW.DUMMY_SITE.COM


Hi,

Thanks for your reply,
How did you trap the above?
Using an MFC prog from codeproject.com using a webbrowser control - not in
javascript which I don't know much about unfortunately;(
It looks like that the relevant part is
/fishing/LoadMDA.do?mi=2 339117

Thus you could do:
location.href = "/fishing/LoadMDA.do?mi=2 339117";
whenever you wanted.
Yes I have successfully done this on "normal" GET's ie without the "name
value" pairs you describe.
I'm not sure what the first several lines are for.
They seem like name/value pairs (some with no value):

AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET


But I know what 20930 (var3) and 10 (var 5) and 2 (var 7) 2339117 (var 12)
are, as I am updating the website (database) with these values.

What I am confused about is what relationship the "name-value" pairs as you
have identified have with the GET. Are they just sent "as-is" literally or
will the web page transform them somehow?

If they are "hard-coded" can I then just prefix them to the GET string?

What does the website server (HTTP protocol) recognise tham as being? Are
they also parameters? They should be as, because I said I am updating the
database with these values. I haven't found a description of what they
signify in any HTTP protocol docs I have found.

I know the "?" after the GET identifies parameters, but I repeat it makes
sense if these pairs are also parameters to the GET.

What does the "%7C" represent which appends many of the variables?
I wonder, could it be unicode for something which my trapping has
transformed? They do append all my input data (I know what var 12 is but I
don't actually input it and it has the '%7C' missing).

I could try trial and error, but it is a "live" database and I don't want to
screw up my account details!!!

Thanks again.

Jul 23 '05 #3
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...

"McKirahan" <Ne**@McKirahan .com> wrote in message
news:WhNyd.2810 10$HA.74380@att bi_s01...
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...
Apologies if the is the wrong NG.

But I have trapped a GET issued by a webpage on a button press and I would like to issue the GET programatically as-and-when I wish.

I wondered what the text before the get text signifies? I imagine they are variable names and parameter values.

Is this correct?

Would someone tell me how I can go about decoding them (or give a
reference(s)), so I can find out what I should actually send in the GET?
Here is a sample of format of the instruction I have trapped.

Thanks

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N

ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid =
Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
/fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword,

application/vnd.ms-powerpoint,
*/*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: WWW.DUMMY_SITE.COM


Hi,

Thanks for your reply,
How did you trap the above?


Using an MFC prog from codeproject.com using a webbrowser control - not in
javascript which I don't know much about unfortunately;(
It looks like that the relevant part is
/fishing/LoadMDA.do?mi=2 339117

Thus you could do:
location.href = "/fishing/LoadMDA.do?mi=2 339117";
whenever you wanted.


Yes I have successfully done this on "normal" GET's ie without the "name

value" pairs you describe.
I'm not sure what the first several lines are for.
They seem like name/value pairs (some with no value):

AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET
But I know what 20930 (var3) and 10 (var 5) and 2 (var 7) 2339117 (var 12)
are, as I am updating the website (database) with these values.

What I am confused about is what relationship the "name-value" pairs as

you have identified have with the GET. Are they just sent "as-is" literally or
will the web page transform them somehow?
A "get" passes parameters via the QueryString; that which is appended to a
URL following "?".

Multiple parameters are separated by "&".

Parameters are usually (but not always) name=value pairs.
If they are "hard-coded" can I then just prefix them to the GET string?
You would append them. Perhaps the following will work:

location.href = "/fishing/LoadMDA.do
?mi=2339117
&AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET";

just make it one long string.
What does the website server (HTTP protocol) recognise tham as being? Are
they also parameters? They should be as, because I said I am updating the
database with these values. I haven't found a description of what they
signify in any HTTP protocol docs I have found.

I know the "?" after the GET identifies parameters, but I repeat it makes
sense if these pairs are also parameters to the GET.

What does the "%7C" represent which appends many of the variables?
I wonder, could it be unicode for something which my trapping has
transformed? They do append all my input data (I know what var 12 is but I
don't actually input it and it has the '%7C' missing).
The "%7C" is a hexidecimal represenattion of a character (7 * 16 + 12 = 124
= |)

Type the following in your browser's address bar (IE only?):
javascript:aler t(escape("|") + " = " + unescape("%7C") );
then press Enter.

I could try trial and error, but it is a "live" database and I don't want to screw up my account details!!!
Better to set up a test database, after all you are testing.

Thanks again.

Jul 23 '05 #4

"McKirahan" <Ne**@McKirahan .com> wrote in message
news:LkOyd.8038 48$8_6.715243@a ttbi_s04...
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...

"McKirahan" <Ne**@McKirahan .com> wrote in message
news:WhNyd.2810 10$HA.74380@att bi_s01...
"Dodger" <no*@home.com > wrote in message
news:41******** *************** @news-text.dial.pipex .com...
> Apologies if the is the wrong NG.
>
> But I have trapped a GET issued by a webpage on a button press and I would
> like to issue the GET programatically as-and-when I wish.
>
> I wondered what the text before the get text signifies? I imagine they
are
> variable names and parameter values.
>
> Is this correct?
>
> Would someone tell me how I can go about decoding them (or give a
> reference(s)), so I can find out what I should actually send in the GET? >
> Here is a sample of format of the instruction I have trapped.
>
> Thanks
>
>

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N >

ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid =
> Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
> /fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
> Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
> application/vnd.ms-excel, application/msword,
application/vnd.ms-powerpoint,
> */*
> Accept-Language: en-us
> Accept-Encoding: gzip, deflate
> User-Agent: Mozilla/4.0
> Host: WWW.DUMMY_SITE.COM
>


Hi,

Thanks for your reply,
How did you trap the above?


Using an MFC prog from codeproject.com using a webbrowser control - not in javascript which I don't know much about unfortunately;(
It looks like that the relevant part is
/fishing/LoadMDA.do?mi=2 339117

Thus you could do:
location.href = "/fishing/LoadMDA.do?mi=2 339117";
whenever you wanted.


Yes I have successfully done this on "normal" GET's ie without the "name
value" pairs you describe.
I'm not sure what the first several lines are for.
They seem like name/value pairs (some with no value):

AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET
But I know what 20930 (var3) and 10 (var 5) and 2 (var 7) 2339117 (var

12) are, as I am updating the website (database) with these values.

What I am confused about is what relationship the "name-value" pairs as

you
have identified have with the GET. Are they just sent "as-is" literally or will the web page transform them somehow?


A "get" passes parameters via the QueryString; that which is appended to a
URL following "?".

Multiple parameters are separated by "&".

Parameters are usually (but not always) name=value pairs.
If they are "hard-coded" can I then just prefix them to the GET string?


You would append them. Perhaps the following will work:

location.href = "/fishing/LoadMDA.do
?mi=2339117
&AlphaIDs=
&origin=placeAl pha
&SelectionIDs=2 0930%7C
&BidTypes=B% 7C
&Part=10%7C
&NewPart=
&Effort=2%7C
&NewEffort=
&Modes=
&SubEventIds =
&MktType=O
&ei=2339117
&iid=Standar d
&fa=pb
&iCard=
&placeAlpha_gue ssLayMakeOwe=Ow eGET";


But the GET I have trapped *prepends* rather than appends them.
This is what is confusing me.
Maybe I will just try and send the same hardcoded string and see what
happens.
just make it one long string.
What does the website server (HTTP protocol) recognise tham as being? Are they also parameters? They should be as, because I said I am updating the database with these values. I haven't found a description of what they
signify in any HTTP protocol docs I have found.

I know the "?" after the GET identifies parameters, but I repeat it makes sense if these pairs are also parameters to the GET.

What does the "%7C" represent which appends many of the variables?
I wonder, could it be unicode for something which my trapping has
transformed? They do append all my input data (I know what var 12 is but I don't actually input it and it has the '%7C' missing).
The "%7C" is a hexidecimal represenattion of a character (7 * 16 + 12 =

124 = |)

Type the following in your browser's address bar (IE only?):
javascript:aler t(escape("|") + " = " + unescape("%7C") );
then press Enter.

I could try trial and error, but it is a "live" database and I don't
want to
screw up my account details!!!


Better to set up a test database, after all you are testing.


The live database has nothing to do with me. What would I be testing?
I don't understand the format of the GET I have trapped - that is the
problem.

Thanks

Jul 23 '05 #5
On Fri, 24 Dec 2004 03:50:50 -0000, Dodger <no*@home.com > wrote:
Apologies if the is the wrong NG.
It is, though I couldn't suggest an alternative.

[snip]
AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C
&Part=10%7C&New Part=&Effort=2% 7C&NewEffort=&M odes=&SubEventI ds=
&MktType=O&ei=2 339117&iid=Stan dard&fa=pb&iCar d=
&placeAlpha_gue ssLayMakeOwe=Ow e
I don't think this should be there at all. A GET request starts with the
three octets, "GET". There is nothing before that. From RFC 2616 -
Hypertext Transfer Protocol (HTTP/1.1):

HTTP-message = Request | Response

Request = Request-Line
*(( general-header
| request-header
| entity-header ) CRLF)
CRLF
[ message-body ]

Request-Line = Method SP Request-URI SP HTTP-Version CRLF

Method = "OPTIONS"
| "GET"
| "HEAD"
| "POST"
| "PUT"
| "DELETE"
| "TRACE"
| "CONNECT"
| extension-method

So as you can see, a HTTP request begins with "GET", followed by a URI,
followed by the version information, which is this:
GET /fishing/LoadMDA.do?mi=2 339117 HTTP/1.0


Are you sure you didn't get the tail-end of something else?

[snip]

By the way, will one of you two trim your quotations when you post in the
other sub-thread. About 90% of it is text from previous posts.

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #6

"Michael Winter" <M.******@bluey onder.co.invali d> wrote in message
news:opsjipy7j9 x13kvk@atlantis ...
On Fri, 24 Dec 2004 03:50:50 -0000, Dodger <no*@home.com > wrote:
Apologies if the is the wrong NG.


It is, though I couldn't suggest an alternative.

[snip]
AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C
&Part=10%7C&New Part=&Effort=2% 7C&NewEffort=&M odes=&SubEventI ds=
&MktType=O&ei=2 339117&iid=Stan dard&fa=pb&iCar d=
&placeAlpha_gue ssLayMakeOwe=Ow e


I don't think this should be there at all. A GET request starts with the
three octets, "GET". There is nothing before that. From RFC 2616 -
Hypertext Transfer Protocol (HTTP/1.1):

HTTP-message = Request | Response

Request = Request-Line
*(( general-header
| request-header
| entity-header ) CRLF)
CRLF
[ message-body ]

Request-Line = Method SP Request-URI SP HTTP-Version CRLF

Method = "OPTIONS"
| "GET"
| "HEAD"
| "POST"
| "PUT"
| "DELETE"
| "TRACE"
| "CONNECT"
| extension-method

So as you can see, a HTTP request begins with "GET", followed by a URI,
followed by the version information, which is this:
GET /fishing/LoadMDA.do?mi=2 339117 HTTP/1.0


Are you sure you didn't get the tail-end of something else?


Well there is something funny going on :)

I think I may have been getting confused with the previous POST command that
was issued.
That would make sense wouldn't it? As I am updating the database this should
be done with a POST instead of a GET shouldn't it?

Does the POST data string append the POST header?

Heres *exactly* what I have in my log file

POST /fishing/ManipulationAct ion.do HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint,
*/*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Content-Length: 346
Host: WWW.DUMMY_SITE.COM
Content-Type: application/x-www-form-urlencoded

AlphaIDs=&origi n=placeAlpha&Se lectionIDs=2093 0%7C&BidTypes=B %7C&Part=10%7C& N
ewPart=&Effort= 2%7C&NewEffort= &Modes=&SubEven tIds=&MktType=O &ei=2339117&iid =
Standard&fa=pb& iCard=&placeAlp ha_guessLayMake Owe=OweGET
/fishing/LoadMDA.do?mi=2 339117 HTTP/1.0
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg,
application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint,
*/*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: WWW.DUMMY_SITE.COM

As you can see I thought the update was being done with the GET but perhaps
it was the POST with the formatting of the logging not very clear.

Make sense?

If my above assumptions are true, what should my POST string look like?
I understand how to format the GET, it would be as McKirahan suggested:

ie
http://www.dummy_site.com/fishing/LoadMDA.do?mi=2339117

Should it be (one long string)
http://www.dummy_site. com/fishing/ManipulationAct ion.do?mi=23391 17&AlphaIDs=&or igin=placeAlpha &SelectionIDs=2 0930%7C&BidType s=B%7C&Part=10% 7C&NewPart=&Eff ort=2%7C&NewEff ort=&Modes=&Sub EventIds=&MktTy pe=O&ei=2339117 &iid=Standard&f a=pb&iCard=&pla ceAlpha_guessLa yMakeOwe=OweGET ";

leaving the "%7C"s in place.

I apologise if I want spoon feeding but I am scared to do to much trial and
error as the DB is live with my own personal account details and I dont want
to screw it up.

Thanks - and sorry to you and McKirahan for being stupid ;)



Jul 23 '05 #7
On Fri, 24 Dec 2004 16:49:59 -0000, Dodger <no*@home.com > wrote:

[snip]
I think I may have been getting confused with the previous POST command
that was issued. That would make sense wouldn't it?
Yes. I would have suggested it, but I wasn't completely sure.
As I am updating the database this should be done with a POST instead of
a GET shouldn't it?
Generally, yes.
Does the POST data string append the POST header?
As I understand it, yes.

[snip]
If my above assumptions are true, what should my POST string look like?
How are you making the request? If it's via HTML, you'll have to place the
data in a form and submit it that way. You may be able to use the XML HTTP
Request object (<URL:>), but it's support is lower than standard HTML
forms.

[snip]
Thanks - and sorry to you and McKirahan for being stupid ;)


There's nothing to apologise for.

Good luck,
Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3676
by: James | last post by:
Hello Java NG, I not sure if this is the right NG for this type of question but if not please let me know which is, TIA Any way first off let me say I'm a student and this WAS last weeks lab, turned in, graded and passed so I'm not trying to get someone to do my lab assignments, but after I got this back I was reading about the DecimalFormat and I tried to format my output but I keep getting an error message. can anyone please tell me...
2
1997
by: Jeff L. | last post by:
Maybe I'm missing the obvious solution because I've been looking at this problem for so long, so I figured I'd throw it out and see if anyone can come up with some ideas. :) I'm writing a server application using VB.NET that will be communicating with a device...the format that it uses can't be changed. The format is something like this: Device: <length><message> Server: <ack> (two null bytes, or "zero length")
3
22467
by: Jonny Au | last post by:
Hi everyone, I have a problem about email message format converting. I want to write a program in VB.NET to convert the EML format email message to MSG format, does anyone knows how to do it? If you know it you can send me a message to ckjonny5@hotmail.com Thanks at all. Jonny
1
60541
by: Mark | last post by:
Hi, how would I translate this to c#? char ttext; sprintf(ttext,"%2.2i %-.10s %8.3f",1,"Mark",123.24); 01 Mark<6spaces> 123.240 Thanks
1
6086
by: Andre | last post by:
Hi folks, I'm trying to create a sub that e-mails the results of program output to our accounts receivable manager. I built my CDO code using examples from a couple newsgroups like this one, so I didn't see any examples of how the message body is coded. I wrote the CDO mailer as shown below, the output is all there but the carriage returns don't carry into the e-mail message, the message body appears as one line. Is the sample below...
2
9291
by: Rich | last post by:
Hello, I need to send an automated email message from my application (vb2005) - using system.net.mail. What I need to do to the message is to format the text, like underlining, bolding, changing font colors. I can send the message OK with the default font senttings. But how can I customize the fonts/Text? Thanks, Rich
6
11643
by: Henryk | last post by:
I did a lot of delphi GUI programming recently. In my experience most of the time you just want to throw a standard exception with a descriptive message. Then all calling functions can handle this exception as they like and finally show a message to the user or not. Only in a few occasions I need some special exception types to behave differently depending on the error. So what you basically do is
2
4503
by: =?Utf-8?B?TmF0aGFuIFdpZWdtYW4=?= | last post by:
Hi, I am wondering why the .NET Framework is quite different from Win32 API when it comes to displaying system modal message boxes. Consider the four following types of system modal message boxes (please see associated source code below): 1) Win32 API with context ("btnWin32WithContext_Click") 2) .NET Framework with context ("btnFrameworkWithContext_Click") 3) Win32 API withOUT context ("btnWin32WithOUTContext_Click")
3
3839
by: Steven Allport | last post by:
I am working on processing eml email message using the email module (python 2.5), on files exported from an Outlook PST file, to extract the composite parts of the email. In most instances this works fine, the message is read in using message_from_file, is_multipart returns True and I can process each component and extract message attachments. I am however running into problem with email messages that contain emails forwarded as...
0
9700
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10546
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10292
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9121
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7603
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2970
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.