Advertisement
Advertisement
| 02.07.2008 at 01:40AM PST, ID: 23143873 |
|
[x]
Attachment Details
|
||
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 02.07.2008 at 05:18AM PST, ID: 20840426 |
| 02.07.2008 at 05:38AM PST, ID: 20840567 |
| 02.07.2008 at 08:42AM PST, ID: 20842338 |
| 02.07.2008 at 09:33AM PST, ID: 20842884 |
| 02.07.2008 at 09:44AM PST, ID: 20842989 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "GET", "00.000.000.00:1111", False
xml.Send
%>
|
| 02.07.2008 at 11:36AM PST, ID: 20844209 |
| 02.07.2008 at 11:37AM PST, ID: 20844221 |
| 02.07.2008 at 02:13PM PST, ID: 20845880 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "POST", "00.000.000.00:1111?Type=alert&Title=anything&URL=demo.asp", False
xml.Send
Content-Location: http://www.soltek.com
Content-Length: 100
x-up-upnotifyp-version: upnotifyp/3.0
x-up-subno: 123456789_yuc3.vont.com
x-up-ntfn-ttl: 0
x-up-ntfn-channel: push
Content-Type: application/x-up-alert;charset=US-ASCII
Set xml = Nothing
%>
%>
|
| 02.08.2008 at 12:42AM PST, ID: 20848670 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: |
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "POST", "00.000.000.00:1111", False
xml.setRequestHeader('Content-Type',
'application/x-www-form-urlencoded');
xml.Send "Type=alert&Title=anything&URL=demo.asp" 'Params sent as POST
Content-Location: http://www.soltek.com
Content-Length: 100
x-up-upnotifyp-version: upnotifyp/3.0
x-up-subno: 123456789_yuc3.vont.com
x-up-ntfn-ttl: 0
x-up-ntfn-channel: push
Content-Type: application/x-up-alert;charset=US-ASCII
Set xml = Nothing
%>
|
| 02.08.2008 at 12:45AM PST, ID: 20848682 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: |
<%
Response.Buffer = True
Dim objXMLHTTP, xml
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
xml.Open "POST", "00.000.000.00:1111", False
xml.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
xml.Send "Type=alert&Title=anything&URL=demo.asp" 'Params sent as POST
Content-Location: http://www.soltek.com
Content-Length: 100
x-up-upnotifyp-version: upnotifyp/3.0
x-up-subno: 123456789_yuc3.vont.com
x-up-ntfn-ttl: 0
x-up-ntfn-channel: push
Content-Type: application/x-up-alert;charset=US-ASCII
Set xml = Nothing
%>
|
| 02.08.2008 at 03:57AM PST, ID: 20849357 |
| 02.08.2008 at 12:44PM PST, ID: 20853893 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: |
<%
Dim objXMLHTTP, URL, params
URL = "http://00.000.000.00:1111"
URL = "http://localhost/Test/EE/Post2.asp"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "POST", URL & "?q=s", False
objXMLHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded;charset=US-ASCII"
objXMLHTTP.setRequestHeader "Content-Location", "http://www.soltek.com"
params = "x-up-ntfn-channel=push&x-up-ntfn-ttl=0&x-up-subno=123456789_yuc3.vont.com"
params = params & "&x-up-upnotifyp-version=upnotifyp/3.0"
objXMLHTTP.Send params
Response.Write objXMLHTTP.responseText
%>
|
| 02.08.2008 at 12:46PM PST, ID: 20853912 |
| 02.08.2008 at 12:59PM PST, ID: 20854075 |
| 02.08.2008 at 11:46PM PST, ID: 20856555 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%><%
' THIS IS POST TESTER!
Response.Write "<h2>Querystring:</h2>"
Response.Write "<p>" & Request.QueryString & "</p>"
Response.Write "<h2>Post:</h2>"
Response.Write "<p>" & Request.Form & "</p>"
Response.Write "<h2>Headers:</h2>"
Response.Write "<p>Querystring: " & Request.ServerVariables("QUERY_STRING") & "</p>"
Response.Write "<p>Request-Method: " & Request.ServerVariables("REQUEST_METHOD") & "</p>"
Response.Write "<h2>Raw headers: </h2>"
Response.Write "<p>" & Replace(Request.ServerVariables("ALL_RAW"), vbNewLine, "<br />") & "</p>"
%>
|
| 02.09.2008 at 04:01AM PST, ID: 20856994 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
<%
Dim objXMLHTTP, URL, params
URL = "http://00.000.000.00:1111"
URL = "http://localhost/Test/EE/Post2.asp"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "POST", URL , False
objXMLHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded;charset=US-ASCII"
objXMLHTTP.setRequestHeader "Content-Location", "http://www.soltek.com"
params = "x-up-ntfn-channel=push&x-up-ntfn-ttl=0&x-up-subno=123456789_yuc3.vont.com"
params = params & "&x-up-upnotifyp-version=upnotifyp/3.0"
objXMLHTTP.Send params
%>
|
| 02.09.2008 at 05:35AM PST, ID: 20857183 |
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: |
<%
Dim objXMLHTTP, URL, params
URL = "http://00.000.000.00:1111"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "POST", URL, False
objXMLHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded;charset=US-ASCII"
objXMLHTTP.setRequestHeader "Content-Location", "http://www.soltek.com"
params = "x-up-ntfn-channel=push&x-up-ntfn-ttl=0&x-up-subno=123456789_yuc3.vont.com"
params = params & "&x-up-upnotifyp-version=upnotifyp/3.0"
objXMLHTTP.Send params
Set objXMLHTTP = Nothing
%>
|