posted by 시드라엘 2011. 7. 12. 17:49


에러내용 :

17:21:35.062 00000 000157 websquare] w2xPath        [/MWS/tis/gMwsApp121.xml]
17:21:35.124 00062 000219 BootLoader] [STEP3] Resource(XML, Skin, CSS, JS) Load Complete. Time:62ms
17:21:35.171 00047 000266 websquare] 작업 도중 오류가 발생하였습니다.

name           :TypeError
message        :개체가 이 속성 또는 메서드를 지원하지 않습니다.
number         :438
description    :개체가 이 속성 또는 메서드를 지원하지 않습니다.
caller         :    at WebSquare.controlFactory.createControl
    at WebSquare.controlFactory.create

17:21:35.249 00078 000344 BootLoader] [STEP4] WebSquare Object Creation Complete. Time:125ms

원인 : 

서블릿 단에서 널포인트 익셉션이 발생하였다.
  

posted by 시드라엘 2011. 7. 5. 11:33
에러내용 :

11:31:43.103 00000 006449 websquare] submission id[selectSbjt1] start[11:31:42:508] end[11:31:43:103] duration[595ms]
11:31:43.941 00838 007287 websquare] 작업 도중 오류가 발생하였습니다.

 message        :i.show is not a function
fileName       :http://localhost:8080/MWS/websquare/javascript.wq?q=/bootloader
lineNumber     :89
stack          :([object Object])@http://localhost:8080/MWS/websquare/javascript.wq?q=/bootloader:89
([object Object],"xforms-submit-done",[object Object])@http://localhost:8080/MWS/websquare/javascript.wq?q=/bootloader:1
([object XMLHttpRequest],[object Object],(void 0))@http://localhost:8080/MWS/websquare/javascript.wq?q=/bootloader:1
([object Event])@http://localhost:8080/MWS/websquare/javascript.wq?q=/bootloader:1

name           :TypeError
caller         :    at WebSquare.event.fireEvent
    at  + obfuscator_http.status +
    at function ()


원인 : 정확하지는 않으나 id="e"  혹은 id="i" 등은 사용하면 안된다.

해결방법 :

id 를 eee 로 i 를 iii 로 변경하였더니 해결되었다.
posted by 시드라엘 2011. 6. 30. 11:27




에러내용 :

 name           :TypeError
message        :개체가 이 속성 또는 메서드를 지원하지 않습니다.
number         :438
description    :개체가 이 속성 또는 메서드를 지원하지 않습니다.
caller         :    at WebSquare.controlFactory.createControl
    at WebSquare.controlFactory.create

11:24:26.046 00000 000187 websquare] 작업 도중 오류가 발생하였습니다.

 name           :TypeError
message        :개체가 이 속성 또는 메서드를 지원하지 않습니다.
number         :438
description    :개체가 이 속성 또는 메서드를 지원하지 않습니다.
caller         :    at WebSquare.controlFactory.createControl
    at WebSquare.controlFactory.create

11:24:26.046 00000 000187 websquare] 작업 도중 오류가 발생하였습니다.

 name           :TypeError
message        :개체가 이 속성 또는 메서드를 지원하지 않습니다.
number         :438
description    :개체가 이 속성 또는 메서드를 지원하지 않습니다.
caller         :    at WebSquare.controlFactory.createControl
    at WebSquare.controlFactory.create



원인 : 

디자인을 할때 ID="" 으로 줬기 때문. 특정 브라우저에서는 style="" <- 를 안주면 에러를 발생함. 아마 파폭이었을것임.

    <xf:group id="1" class="mlist" style="position: relative ;float:left;top:0;height:50px;">
     <w2:textbox id="" label="수강신청내역 조회" style="position: relative ;" class="mlist_tx"></w2:textbox>
     <xf:image id="" style="position: absolute ;top: 14px;left: 295px;width:11px;height:20px;" src="/MWS/img/sub/list_ar.jpg" class="marrow"></xf:image>
     <script ev:event="onclick" type="javascript">
      <![CDATA[submitAction("/MWS/rec/gMwsCap011.xml");]]>
     </script>
    </xf:group>

해결 :

id="1" 이딴식으로 주면됨.