[JBoss JIRA] (JBIDE-13888) openshift-java-client: make sure useragent is sent
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13888?page=com.atlassian.jira.plugi... ]
Andre Dietisheim edited comment on JBIDE-13888 at 3/31/13 4:28 PM:
-------------------------------------------------------------------
In the openshift-java-client it currently looks like as if the useragent is not sent:
{code:title=RestServiceProperties}
public String getUseragent(String id) {
String version = getVersion();
String useragentPattern = getUseragentPattern();
if (!StringUtils.isEmpty(id)
&& !StringUtils.isEmpty(version)
&& !StringUtils.isEmpty(useragentPattern)) {
String userAgent = MessageFormat.format(getUseragentPattern(), getVersion(), id);
}
return null;
}
{code}
this method always returns *null*, thus the useragent should always be null.
It turned out that bill decoste unfortunately introduced this issue here: https://github.com/adietish/openshift-java-client/commit/b64d63fc50fc3911...
The http client will obviously not send the user agent since it would not set it if it's null:
{code:title=UrlConnectionHttpClient}
private void setUserAgent(HttpURLConnection connection) {
String userAgent = this.userAgent;
if (!StringUtils.isEmpty(authKey)) {
userAgent = USERAGENT_FOR_KEYAUTH;
}
if (userAgent != null){
connection.setRequestProperty(PROPERTY_USER_AGENT, userAgent);
}
}
{code}
was (Author: adietish):
In the openshift-java-client it currently looks like as if the useragent is not sent:
{code:title=RestServiceProperties}
public String getUseragent(String id) {
String version = getVersion();
String useragentPattern = getUseragentPattern();
if (!StringUtils.isEmpty(id)
&& !StringUtils.isEmpty(version)
&& !StringUtils.isEmpty(useragentPattern)) {
String userAgent = MessageFormat.format(getUseragentPattern(), getVersion(), id);
}
return null;
}
{code}
this method always returns *null*, thus the useragent should always be null.
The http client will obviously not send the user agent since it would not set it if it's null:
{code:title=UrlConnectionHttpClient}
private void setUserAgent(HttpURLConnection connection) {
String userAgent = this.userAgent;
if (!StringUtils.isEmpty(authKey)) {
userAgent = USERAGENT_FOR_KEYAUTH;
}
if (userAgent != null){
connection.setRequestProperty(PROPERTY_USER_AGENT, userAgent);
}
}
{code}
> openshift-java-client: make sure useragent is sent
> --------------------------------------------------
>
> Key: JBIDE-13888
> URL: https://issues.jboss.org/browse/JBIDE-13888
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha2
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 8 months
[JBoss JIRA] (JBIDE-13888) openshift-java-client: make sure useragent is sent
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13888?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-13888:
------------------------------------------
There is also very weird code in the UrlConnectionHttpClientBuilder which holds user-agent building logic. IMHO this logic should be in the rest service, not in the builder since the user-agent should get built correctly even if you create the client directly or use the builder:
{code:title=UrlConnectionHttpClientBuilder}
public IHttpClient client() {
if (authKey != null && authKey.trim().length() > 0) {
if (userAgent == null) {
userAgent = "OpenShift";
} else if (!userAgent.startsWith("OpenShift")) {
userAgent = "OpenShift-" + userAgent;
}
}
return new UrlConnectionHttpClient(username, password, userAgent,
sslChecks, requestMediaType, acceptedMediaType, version,
authKey, authIV);
}
{code}
> openshift-java-client: make sure useragent is sent
> --------------------------------------------------
>
> Key: JBIDE-13888
> URL: https://issues.jboss.org/browse/JBIDE-13888
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha2
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 8 months
[JBoss JIRA] (JBIDE-13888) openshift-java-client: make sure useragent is sent
by Andre Dietisheim (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13888?page=com.atlassian.jira.plugi... ]
Andre Dietisheim commented on JBIDE-13888:
------------------------------------------
In the openshift-java-client it currently looks like as if the useragent is not sent:
{code:title=RestServiceProperties}
public String getUseragent(String id) {
String version = getVersion();
String useragentPattern = getUseragentPattern();
if (!StringUtils.isEmpty(id)
&& !StringUtils.isEmpty(version)
&& !StringUtils.isEmpty(useragentPattern)) {
String userAgent = MessageFormat.format(getUseragentPattern(), getVersion(), id);
}
return null;
}
{code}
this method always returns *null*, thus the useragent should always be null.
The http client will obviously not send the user agent since it would not set it if it's null:
{code:title=UrlConnectionHttpClient}
private void setUserAgent(HttpURLConnection connection) {
String userAgent = this.userAgent;
if (!StringUtils.isEmpty(authKey)) {
userAgent = USERAGENT_FOR_KEYAUTH;
}
if (userAgent != null){
connection.setRequestProperty(PROPERTY_USER_AGENT, userAgent);
}
}
{code}
> openshift-java-client: make sure useragent is sent
> --------------------------------------------------
>
> Key: JBIDE-13888
> URL: https://issues.jboss.org/browse/JBIDE-13888
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: openshift
> Affects Versions: 4.1.0.Alpha2
> Reporter: Andre Dietisheim
> Assignee: Andre Dietisheim
> Fix For: 4.1.0.Alpha2
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 8 months
[JBoss JIRA] (JBIDE-13887) BrowserSim: Native code crash while opening some web pages
by Yahor Radtsevich (JIRA)
Yahor Radtsevich created JBIDE-13887:
----------------------------------------
Summary: BrowserSim: Native code crash while opening some web pages
Key: JBIDE-13887
URL: https://issues.jboss.org/browse/JBIDE-13887
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Visual Page Editor core
Affects Versions: 4.0.0.Final
Environment: Windows 7 64-bit
Reporter: Yahor Radtsevich
Assignee: Konstantin Marmalyukov
Priority: Critical
Fix For: 4.1.0.Alpha2
Open http://www.html5rocks.com/en/tutorials/webdatabase/todo/ in BrowserSim.
BrowserSim closes with the following native error:
{code:title=Console Output}
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x5dec02d7, pid=4356, tid=6572
#
# JRE version: 6.0_35-b10
# Java VM: Java HotSpot(TM) Client VM (20.10-b01 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [WebKit.dll+0x2702d7]
#
# An error report file with more information is saved as:
# D:\Doc\JBoss\git\jbosstools-vpe\plugins\org.jboss.tools.vpe.browsersim\hs_err_pid4356.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
{code}
{code:title=hs_err_pid4356.log}
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x5dec02d7, pid=4356, tid=6572
#
# JRE version: 6.0_35-b10
# Java VM: Java HotSpot(TM) Client VM (20.10-b01 mixed mode, sharing windows-x86 )
# Problematic frame:
# C [WebKit.dll+0x2702d7]
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0x02249800): JavaThread "main" [_thread_in_native, id=6572, stack(0x02170000,0x021c0000)]
siginfo: ExceptionCode=0xc0000005, reading address 0x00000018
Registers:
EAX=0x00000000, EBX=0x00000000, ECX=0x7ee2e000, EDX=0x00000000
ESP=0x021bf8b0, EBP=0x021bf8f8, ESI=0x7ee2e000, EDI=0x00000000
EIP=0x5dec02d7, EFLAGS=0x00210246
Top of Stack: (sp=0x021bf8b0)
0x021bf8b0: 7ee2e000 00000101 7ee2e000 00c98d26
0x021bf8c0: 00000164 00000080 0000013b 00000000
0x021bf8d0: 00000000 00000164 0000013b 00000000
0x021bf8e0: 00000005 00000164 0000013b 00000000
0x021bf8f0: 00000005 00000164 7ee8ed80 5debfdf6
0x021bf900: 00000000 5e394bf8 00000164 00e2e000
0x021bf910: 5de4db83 00000101 7ee8eda4 7ee8ed80
0x021bf920: 021bf994 021bf9d0 0000013b 00000137
Instructions: (pc=0x5dec02d7)
0x5dec02b7: 89 44 24 18 8d 44 24 18 89 4c 24 24 50 8b ce 89
0x5dec02c7: 7c 24 20 89 5c 24 24 ff d2 8b ce e8 89 fa ff ff
0x5dec02d7: 8a 50 18 8a da c0 eb 02 80 e3 01 80 ca 04 84 db
0x5dec02e7: 88 50 18 75 0b 6a 00 6a 01 8b c8 e8 59 9b ea ff
Register to memory mapping:
EAX=0x00000000 is an unknown value
EBX=0x00000000 is an unknown value
ECX=0x7ee2e000 is an unknown value
EDX=0x00000000 is an unknown value
ESP=0x021bf8b0 is pointing into the stack for thread: 0x02249800
EBP=0x021bf8f8 is pointing into the stack for thread: 0x02249800
ESI=0x7ee2e000 is an unknown value
EDI=0x00000000 is an unknown value
Stack: [0x02170000,0x021c0000], sp=0x021bf8b0, free space=318k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [WebKit.dll+0x2702d7] WKOpenPanelResultListenerGetTypeID+0xbd537
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j org.eclipse.swt.internal.win32.OS.DispatchMessageW(Lorg/eclipse/swt/internal/win32/MSG;)I+0
j org.eclipse.swt.internal.win32.OS.DispatchMessage(Lorg/eclipse/swt/internal/win32/MSG;)I+7
j org.eclipse.swt.widgets.Display.readAndDispatch()Z+64
j org.jboss.tools.vpe.browsersim.ui.BrowserSim.main([Ljava/lang/String;)V+175
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x023f3c00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=6492, stack(0x04900000,0x04950000)]
0x023d9c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=6916, stack(0x04870000,0x048c0000)]
0x023d8c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=6208, stack(0x047e0000,0x04830000)]
0x023d5800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1636, stack(0x04750000,0x047a0000)]
0x023cb000 JavaThread "Finalizer" daemon [_thread_blocked, id=6296, stack(0x046c0000,0x04710000)]
0x023c9400 JavaThread "Reference Handler" daemon [_thread_blocked, id=7864, stack(0x04630000,0x04680000)]
=>0x02249800 JavaThread "main" [_thread_in_native, id=6572, stack(0x02170000,0x021c0000)]
Other Threads:
0x0238d800 VMThread [stack: 0x045a0000,0x045f0000] [id=6248]
0x023fcc00 WatcherThread [stack: 0x04990000,0x049e0000] [id=7820]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
def new generation total 4928K, used 3594K [0x241a0000, 0x246f0000, 0x296f0000)
eden space 4416K, 76% used [0x241a0000, 0x244eb190, 0x245f0000)
from space 512K, 43% used [0x245f0000, 0x24627850, 0x24670000)
to space 512K, 0% used [0x24670000, 0x24670000, 0x246f0000)
tenured generation total 10944K, used 1000K [0x296f0000, 0x2a1a0000, 0x341a0000)
the space 10944K, 9% used [0x296f0000, 0x297ea298, 0x297ea400, 0x2a1a0000)
compacting perm gen total 12288K, used 4013K [0x341a0000, 0x34da0000, 0x381a0000)
the space 12288K, 32% used [0x341a0000, 0x3458b568, 0x3458b600, 0x34da0000)
ro space 10240K, 55% used [0x381a0000, 0x38720f00, 0x38721000, 0x38ba0000)
rw space 12288K, 55% used [0x38ba0000, 0x392442f0, 0x39244400, 0x397a0000)
Code Cache [0x02450000, 0x02540000, 0x04450000)
total_blobs=400 nmethods=240 adapters=96 free_code_cache=32575872 largest_free_block=0
Dynamic libraries:
0x00400000 - 0x00425000 d:\progs\Programming\jdk1.6.0\bin\javaw.exe
0x76fc0000 - 0x77140000 C:\Windows\SysWOW64\ntdll.dll
0x75090000 - 0x751a0000 C:\Windows\syswow64\kernel32.dll
0x75350000 - 0x75397000 C:\Windows\syswow64\KERNELBASE.dll
0x74ff0000 - 0x75090000 C:\Windows\syswow64\ADVAPI32.dll
0x751a0000 - 0x7524c000 C:\Windows\syswow64\msvcrt.dll
0x754f0000 - 0x75509000 C:\Windows\SysWOW64\sechost.dll
0x74f00000 - 0x74ff0000 C:\Windows\syswow64\RPCRT4.dll
0x74a10000 - 0x74a70000 C:\Windows\syswow64\SspiCli.dll
0x74a00000 - 0x74a0c000 C:\Windows\syswow64\CRYPTBASE.dll
0x76290000 - 0x76390000 C:\Windows\syswow64\USER32.dll
0x763d0000 - 0x76460000 C:\Windows\syswow64\GDI32.dll
0x766f0000 - 0x766fa000 C:\Windows\syswow64\LPK.dll
0x76a90000 - 0x76b2d000 C:\Windows\syswow64\USP10.dll
0x76b60000 - 0x76bc0000 C:\Windows\system32\IMM32.DLL
0x75280000 - 0x7534c000 C:\Windows\syswow64\MSCTF.dll
0x7c340000 - 0x7c396000 d:\progs\Programming\jdk1.6.0\jre\bin\msvcr71.dll
0x6d8c0000 - 0x6db6f000 d:\progs\Programming\jdk1.6.0\jre\bin\client\jvm.dll
0x720e0000 - 0x72112000 C:\Windows\system32\WINMM.dll
0x71e20000 - 0x71e6c000 C:\Windows\system32\apphelp.dll
0x6d870000 - 0x6d87c000 d:\progs\Programming\jdk1.6.0\jre\bin\verify.dll
0x6d3d0000 - 0x6d3ef000 d:\progs\Programming\jdk1.6.0\jre\bin\java.dll
0x6d8b0000 - 0x6d8bf000 d:\progs\Programming\jdk1.6.0\jre\bin\zip.dll
0x10000000 - 0x10070000 C:\Users\yradtsevich\.swt\lib\win32\x86\swt-win32-4234.dll
0x74ac0000 - 0x74c1c000 C:\Windows\syswow64\ole32.dll
0x76620000 - 0x766af000 C:\Windows\syswow64\OLEAUT32.dll
0x74e20000 - 0x74e9b000 C:\Windows\syswow64\comdlg32.dll
0x74ea0000 - 0x74ef7000 C:\Windows\syswow64\SHLWAPI.dll
0x70db0000 - 0x70f4e000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
0x75510000 - 0x7615a000 C:\Windows\syswow64\SHELL32.dll
0x72080000 - 0x720d1000 C:\Windows\system32\WINSPOOL.DRV
0x76460000 - 0x76619000 C:\Windows\syswow64\WININET.dll
0x76f90000 - 0x76f94000 C:\Windows\syswow64\api-ms-win-downlevel-user32-l1-1-0.dll
0x763c0000 - 0x763c5000 C:\Windows\syswow64\api-ms-win-downlevel-advapi32-l1-1-0.dll
0x753f0000 - 0x753f4000 C:\Windows\syswow64\api-ms-win-downlevel-shlwapi-l1-1-0.dll
0x763b0000 - 0x763b4000 C:\Windows\syswow64\api-ms-win-downlevel-version-l1-1-0.dll
0x74610000 - 0x74619000 C:\Windows\system32\version.DLL
0x76700000 - 0x76703000 C:\Windows\syswow64\api-ms-win-downlevel-normaliz-l1-1-0.dll
0x766b0000 - 0x766b3000 C:\Windows\syswow64\normaliz.DLL
0x74c20000 - 0x74e1e000 C:\Windows\syswow64\iertutil.dll
0x768b0000 - 0x769ce000 C:\Windows\syswow64\CRYPT32.dll
0x766e0000 - 0x766ec000 C:\Windows\syswow64\MSASN1.dll
0x711e0000 - 0x71260000 C:\Windows\system32\uxtheme.dll
0x10100000 - 0x1010e000 C:\Program Files\Logitech\SetPoint\x86\lgscroll.dll
0x73420000 - 0x734bb000 C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCR80.dll
0x71d30000 - 0x71d51000 C:\Windows\system32\ntmarta.dll
0x753a0000 - 0x753e5000 C:\Windows\syswow64\WLDAP32.dll
0x71730000 - 0x71743000 C:\Windows\system32\dwmapi.dll
0x71eb0000 - 0x71fa5000 C:\Windows\system32\propsys.dll
0x76a00000 - 0x76a83000 C:\Windows\syswow64\CLBCatQ.DLL
0x6a030000 - 0x6a05e000 C:\Windows\system32\mlang.dll
0x72000000 - 0x7203c000 C:\Windows\system32\oleacc.dll
0x05650000 - 0x05663000 C:\Users\yradtsevich\.swt\lib\win32\x86\swt-xulrunner-win32-4234.dll
0x05670000 - 0x05684000 C:\Users\yradtsevich\.swt\lib\win32\x86\swt-webkit-win32-4234.dll
0x5dc50000 - 0x5e4a5000 C:\Program Files (x86)\Safari\Apple Application Support\WebKit.dll
0x736f0000 - 0x73950000 C:\Program Files (x86)\Safari\Apple Application Support\CFNetwork.dll
0x74a70000 - 0x74aa5000 C:\Windows\syswow64\WS2_32.dll
0x766c0000 - 0x766c6000 C:\Windows\syswow64\NSI.dll
0x74620000 - 0x7463c000 C:\Windows\system32\iphlpapi.dll
0x748a0000 - 0x748a7000 C:\Windows\system32\WINNSI.DLL
0x735e0000 - 0x736e9000 C:\Program Files (x86)\Safari\Apple Application Support\CoreFoundation.dll
0x735d0000 - 0x735e0000 C:\Program Files (x86)\Safari\Apple Application Support\pthreadVC2.dll
0x69360000 - 0x69367000 C:\Windows\system32\WSOCK32.dll
0x735b0000 - 0x735cd000 C:\Program Files (x86)\Safari\Apple Application Support\objc.dll
0x73520000 - 0x735a7000 C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6195_none_d09154e044272b9a\MSVCP80.dll
0x74250000 - 0x7425e000 C:\Program Files (x86)\Safari\Apple Application Support\libdispatch.dll
0x620b0000 - 0x621ea000 C:\Program Files (x86)\Safari\Apple Application Support\libicuin.dll
0x60db0000 - 0x60e93000 C:\Program Files (x86)\Safari\Apple Application Support\libicuuc.dll
0x4ad00000 - 0x4bc8b000 C:\Program Files (x86)\Safari\Apple Application Support\icudt46.dll
0x73500000 - 0x73511000 C:\Program Files (x86)\Safari\Apple Application Support\ASL.dll
0x61d20000 - 0x61d8f000 C:\Program Files (x86)\Safari\Apple Application Support\SQLite3.dll
0x734e0000 - 0x734f4000 C:\Program Files (x86)\Safari\Apple Application Support\zlib1.dll
0x5ebd0000 - 0x5ed03000 C:\Program Files (x86)\Safari\Apple Application Support\libxml2.dll
0x5e810000 - 0x5ebc5000 C:\Program Files (x86)\Safari\Apple Application Support\CoreGraphics.dll
0x5e690000 - 0x5e80b000 C:\Program Files (x86)\Safari\Apple Application Support\JavaScriptCore.dll
0x60d80000 - 0x60da9000 C:\Program Files (x86)\Safari\Apple Application Support\WebKitQuartzCoreAdditions.dll
0x5e540000 - 0x5e684000 C:\Program Files (x86)\Safari\Apple Application Support\QuartzCore.dll
0x5db10000 - 0x5dc4f000 C:\Program Files (x86)\Safari\Apple Application Support\CoreVideo.dll
0x71760000 - 0x71923000 C:\Windows\system32\d3d9.dll
0x71750000 - 0x71756000 C:\Windows\system32\d3d8thk.dll
0x6df70000 - 0x6e0a0000 C:\Windows\system32\WindowsCodecs.dll
0x6fa50000 - 0x6fa62000 C:\Program Files (x86)\Common Files\TortoiseOverlays\TortoiseOverlays.dll
0x6fa40000 - 0x6fa4d000 C:\Program Files\TortoiseSVN\bin\TortoiseStub32.dll
0x6f9d0000 - 0x6fa3c000 C:\Program Files\TortoiseSVN\bin\TortoiseSVN32.dll
0x6db80000 - 0x6de75000 C:\Program Files\TortoiseSVN\bin\libsvn_tsvn32.dll
0x6f960000 - 0x6f984000 C:\Program Files\TortoiseSVN\bin\libapr_tsvn32.dll
0x74310000 - 0x7434c000 C:\Windows\system32\MSWSOCK.dll
0x747a0000 - 0x7485f000 C:\Windows\system32\MSVCR100.dll
0x6f920000 - 0x6f956000 C:\Program Files\TortoiseSVN\bin\libaprutil_tsvn32.dll
0x6f910000 - 0x6f91d000 C:\Program Files\TortoiseSVN\bin\intl3_tsvn32.dll
0x6ef00000 - 0x6ef13000 C:\Program Files\TortoiseSVN\bin\libsasl32.dll
0x71be0000 - 0x71be8000 C:\Windows\system32\Secur32.dll
0x748c0000 - 0x74929000 C:\Windows\system32\MSVCP100.dll
0x06860000 - 0x06882000 C:\Users\yradtsevich\AppData\Roaming\Dropbox\bin\DropboxExt.17.dll
0x71c40000 - 0x71d2b000 C:\Windows\system32\dbghelp.dll
0x6ede0000 - 0x6ee6e000 C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCP90.dll
0x6ed30000 - 0x6edd3000 C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll
0x6eec0000 - 0x6eef1000 C:\Windows\system32\EhStorShell.dll
0x76710000 - 0x768ad000 C:\Windows\syswow64\SETUPAPI.dll
0x75250000 - 0x75277000 C:\Windows\syswow64\CFGMGR32.dll
0x76390000 - 0x763a2000 C:\Windows\syswow64\DEVOBJ.dll
0x06fc0000 - 0x073c6000 C:\PROGRA~2\MICROS~1\Office14\GROOVEEX.DLL
0x6ee90000 - 0x6eebb000 C:\Windows\WinSxS\x86_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.6161_none_51cd0a7abbe4e19b\ATL90.DLL
0x6cf40000 - 0x6d35a000 C:\PROGRA~2\COMMON~1\MICROS~1\OFFICE14\Cultures\office.odf
0x6c6c0000 - 0x6cf38000 C:\PROGRA~2\MICROS~1\Office14\1049\GrooveIntlResource.dll
0x74390000 - 0x7439b000 C:\Windows\system32\profapi.dll
0x74290000 - 0x742a2000 C:\Windows\system32\dhcpcsvc.DLL
0x74240000 - 0x7424d000 C:\Windows\system32\dhcpcsvc6.DLL
0x676e0000 - 0x67759000 C:\Windows\system32\mscms.dll
0x71d70000 - 0x71d87000 C:\Windows\system32\USERENV.dll
0x734c0000 - 0x734d1000 C:\Windows\system32\Cryptdll.dll
0x6fa70000 - 0x7050d000 C:\Windows\system32\igdumd32.dll
0x74460000 - 0x74476000 C:\Windows\system32\CRYPTSP.dll
0x74410000 - 0x7444b000 C:\Windows\system32\rsaenh.dll
0x70b80000 - 0x70b84000 C:\Windows\system32\api-ms-win-downlevel-advapi32-l2-1-0.dll
0x74ab0000 - 0x74ab4000 C:\Windows\syswow64\api-ms-win-downlevel-ole32-l1-1-0.dll
0x6e560000 - 0x6e564000 C:\Windows\system32\api-ms-win-downlevel-shlwapi-l2-1-0.dll
0x74300000 - 0x74306000 C:\Windows\System32\wship6.dll
0x6e500000 - 0x6e55a000 C:\Windows\System32\netprofm.dll
0x70f50000 - 0x70f60000 C:\Windows\System32\nlaapi.dll
0x71d90000 - 0x71d9e000 C:\Windows\system32\RpcRtRemote.dll
0x6e4f0000 - 0x6e4f8000 C:\Windows\System32\npmproxy.dll
0x74380000 - 0x74385000 C:\Windows\System32\wshtcpip.dll
0x742b0000 - 0x742f4000 C:\Windows\system32\DNSAPI.dll
0x70d30000 - 0x70d55000 C:\Program Files (x86)\Bonjour\mdnsNSP.dll
0x70ce0000 - 0x70ce6000 C:\Windows\system32\rasadhlp.dll
0x70cf0000 - 0x70d28000 C:\Windows\System32\fwpuclnt.dll
0x6ef20000 - 0x6ef31000 C:\Program Files (x86)\Safari\Apple Application Support\QTMovieWin.dll
VM Arguments:
jvm_args: -Dfile.encoding=Cp1251
java_command: org.jboss.tools.vpe.browsersim.ui.BrowserSim http://www.html5rocks.com/en/tutorials/webdatabase/todo/
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=d:\progs\Programming\jdk1.6.0\
PATH=D:/progs/Programming/jre1.7.0/bin/client;D:/progs/Programming/jre1.7.0/bin;D:/progs/Programming/jre1.7.0/lib/i386;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Broadcom\Broadcom 802.11\Driver;d:\progs\Programming\apache-maven-3.0.4\bin;C:\Program Files\TortoiseSVN\bin;D:\progs\Subversion\bin;d:\progs\Subversion\bin;d:\progs\Programming\Ruby-1.9.3\bin;d:\progs\MinGW\bin;d:\progs\MinGW\msys\1.0\bin;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;;d:\progs\Programming\WindowsAndroid\windowsandroid_root\system\bin;d:\progs\Programming\WindowsAndroid\windowsandroid_root\system\lib;C:\Progs\OpenVPN\bin;d:\Progs\OpenVPN\bin;d:\progs\Programming\eclipse-4.2.1;
USERNAME=yradtsevich
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 7 , 64 bit Build 7601 Service Pack 1
CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 42 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
Memory: 4k page, physical 8321400k(4289548k free), swap 16640948k(12054388k free)
vm_info: Java HotSpot(TM) Client VM (20.10-b01) for windows-x86 JRE (1.6.0_35-b10), built on Aug 28 2012 17:31:51 by "java_re" with MS VC++ 7.1 (VS2003)
time: Sat Mar 30 22:08:39 2013
elapsed time: 1 seconds
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 8 months