This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 130878 - [testclient][ie7] monitor is not visible
Summary: [testclient][ie7] monitor is not visible
Status: CLOSED FIXED
Alias: None
Product: webservices
Classification: Unclassified
Component: REST (show other bugs)
Version: 6.x
Hardware: All Windows Vista
: P1 blocker (vote)
Assignee: Ayub Khan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-03-23 22:33 UTC by Lukas Jungmann
Modified: 2008-04-08 09:34 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
screenshot (49.25 KB, image/png)
2008-03-23 22:33 UTC, Lukas Jungmann
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Lukas Jungmann 2008-03-23 22:33:00 UTC
see attached screenshot from IE7 on win vista, there one can see couple of issues:

-there are no tabs (Tabular View, Sub-Resource, Http Monitor are not visible) (P2)
-param & value fields are not properly aligned (P3-P4)
Comment 1 Lukas Jungmann 2008-03-23 22:33:40 UTC
Created attachment 58899 [details]
screenshot
Comment 2 Ayub Khan 2008-03-24 02:50:19 UTC
Fixed for 6.1
Comment 3 Lukas Jungmann 2008-03-24 21:54:29 UTC
still reproducible...
Comment 4 Ayub Khan 2008-03-24 22:19:44 UTC
Hi Lukas,

Can you please provide how to reproduce this issue.

Yesterday I fixed the following

-param & value fields are not properly aligned (P3-P4)

Forgot to ask you how to reproduce the 

-there are no tabs (Tabular View, Sub-Resource, Http Monitor are not visible) (P2)

Thanks
Ayub
Comment 5 Lukas Jungmann 2008-03-25 00:05:45 UTC
Hi Ayub,

Steps I've done:
-create new webapp
-create Customer and DC entities from DB
-create REST services from these entities
-run Test REST action on the project (opens the tester in IE7)

=> the result is still the same as on the screenshot I attached yesterday
Comment 6 Jaroslav Pospisil 2008-03-25 15:44:59 UTC
Reproduced successfully also on my computer with latest daily build (200803250006)
Comment 7 Ayub Khan 2008-03-26 01:44:45 UTC
Fixed for 6.1

The issue is that IE7 do not support XPath on its browser. Fix is to use xml document processing that is compatible in
all browsers.
Comment 8 Lukas Jungmann 2008-04-04 19:18:22 UTC
still reproducible...

also in case I
- create new customer DB sample
- add following method to it:

    @GET
    @ProduceMime("text/html")
    public String getGoogleMap() {
        try {         
             String address = "16 Network Circle, Menlo Park";
             java.lang.Integer zoom = 15;
             String iframe = "false";
             RestResponse result = GoogleMapService.getGoogleMap(address, zoom, iframe);
             //TODO - Uncomment the print Statement below to print result.
             System.out.println("The SaasService returned: "+result.getDataAsString());
             return result.getDataAsString();
        } catch (Exception ex) {
             ex.printStackTrace();
        }

        return "fail...";
    }

- do test rest on http://localhost:8080/CustomerDB/resources/customers/2/ using "text/html" then in server log I can see
that my method run, but in the tester I still see only XML output (as I would do application/xml request)
Comment 9 Ayub Khan 2008-04-08 06:08:20 UTC
Raising priority to P1, since its a stopper for NB6.1 on Windows 
Comment 10 Ayub Khan 2008-04-08 06:12:33 UTC
Fixed in trunk

http://hg.netbeans.org/main/rev/074153f4f76b
Comment 11 Ayub Khan 2008-04-08 06:17:57 UTC
Fixed in release61 also

http://hg.netbeans.org/release61/rev/5a560a015fc0
Comment 12 Lukas Jungmann 2008-04-08 07:11:18 UTC
excellent :-) v. in trunk and 6.1