Is GPIB timeout byte based

Is the GPIB timeout established with ibdev implemented on a byte basis or on a message basis?
If timeout is 10sec and I make an ibwrt call to send 10 byte message to a device that's been turned off, how long until I get a timeout return?  10 sec?  100 sec?
The gpib lib help implies that it's on a message basis but it's not perfectly clear to me.  I know rs-232 library timeout is on a character basis, not a message basis.
Thanks.

According to the NI-488.2 Help, the ibdev command uses the input IbcTMO, which uses a v constant that specifies predefined timeout values. So if you make an ibwrt call to send 10 bytes to a disconnected or turned off device, you will wait whatever the v value of IbcTMO is.
Regards,
Daniel REDS
RF Systems Engineer
Help us grow.
If a post solves your question, mark it as The Solution.
If a post helps, give Kudos to it.

Similar Messages

  • Labview gpib timeout when calling cvi dll

    Equipment used :
    VXI Rack with Slot 0 controller
    Labview V5.0.1
    Lab Windows V5.0.1
    GPIB controlled Power10 I63 PSU
    We run an intermediate Labview driver which communicates with a low level CVI driver (dll) to control a PSU.  We recently tried to run the Labview driver on a Slot 0 controller and we get timeout errors when waiting for a response after commanding the PSU to switch off ( "CST OFF" is sent , and the driver waits on "ST OFF" being returned - it never does and times out).  Ni Spy is on when it fails.  In the same driver, a call to return the Instrument ID is carried out happily, with the ID being returned with no errors.
    I can run the low level CVI driver with an interactive script and it works fine with no errors.
    I can run the Labview driver with NI Spy switched off and it works ok too,  Our customer cannot get it to work even with Ni Spy switched off.  They have the same setup as us.
    Any ideas?

    The solution I had previously documented only partly worked.  It cleared the timeout error, but I am still experiencing various errors in testing the PSU with Labview (still no problems with running the functions with Labwindows directly).  Also, if NISpy is running I see no errors, which still leads me to believe its a timing problem.  I saw another thread on here from someone with similar problems and I tried all the recomendations in that, but it still did not fix it.  The last recomendation was to re-write the GPIB driver to slow down the message transfer to the instrument! 
    A link to the thread with similar problems to mine.....
    http://forums.ni.com/ni/board/message?board.id=140&message.id=20031
    Message Edited by edinsofty1 on 09-09-2008 07:21 AM
    Message Edited by edinsofty1 on 09-09-2008 07:21 AM

  • GPIB timeout

    I'm using a GPIB to collect data from a Tektronix Oscilloscope and everyday when I come in and try to collect it gives me this error HEX 0XBFFF0A6. I'm using windows 7 and LabView 2011. Each time I just restart LabView and it works just fine throughout the day. Opening MAX shows that it is communicating with the instrument. If this error code is simple I apologize but Google is down due to SOPA.
    I've also had similiar problems with USB DAQ devices but in that case it is windows disconnecting from the instrument.

    Hi TSCline,
    These kinds of errors are usually due to GPIB/VISA reads where the message received is larger than the expected amount of bytes. Try programming a routine which will flush the buffer contents and try the collection command again. http://zone.ni.com/reference/en-XX/help/371361H-01​/lvinstio/gpib_clear/
    In addition, if you are not doing this already, look through our 3rd party drivers page for your Tektronix model and see if you can download proven VIs to control your Oscilloscope (http://search.ni.com/nisearch/app/main/p/bot/no/ap​/tech/lang/en/pg/1/sn/catnav:id/q/Tektronix/)
    Hope this helps!
    Aldo A
    Applications Engineer
    National Instruments

  • How to set session timeout per user

    Hi,
    Ho do I set the session timeout per User in the
    Application.cfm File??
    I tried using
    <cfif SESSION.UID EQ 1>
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    sessiontimeout="#CreateTimeSpan(0,0,20,0)#">
    </cfelse>
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    sessiontimeout="#CreateTimeSpan(1,0,0,0)#">
    </cfif>
    But this didnt work because the cfapplication seems to have
    to be at the top before I call the variable SESSION.UID which
    I set on my login page..
    Someone know how to do this??
    Regards
    Martin

    Martin,
    Your code example cannot work because the "session" scope
    doesn't exist until your application scope is defined. So you have
    to handle this manually. Here's how you can get it done. First,
    define your application to the maximum sessiontimeout you want to
    have.
    <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes"
    SESSIONTIMEOUT="#CreateTimeSpan(1,0,0,0)#">
    Then, I don't know how you are doing your login
    authentication but when you have authenticated the user, you need
    to define the userid and the most recent activity in the session.
    Also determine your timeout value based on the userid. See example:
    <CFIF IS_AUTHENTICATED>
    <CFSET session.user.uid = form.userid>
    <CFSET session.user.most_recent_activity = now()>
    <CFIF session.user.id eq 1>
    <CFSET session.user.timeout_mins = 20>
    <CFELSE>
    <CFSET session.user.timeout_mins = 1440>
    </CFIF>
    </CFIF>
    Now, all you have to do is check whether the user has been
    idle for too long and kill the session by purging all session
    variables. For example:
    <!--- if user id is defined, this means user is logged in
    --->
    <CFIF structKeyExists(session, "user") and
    structKeyExists(session.user, "id")>
    <!--- check if timeout has expired --->
    <CFIF datediff("n", session.user.most_recent_activity,
    now()) gt session.user.timeout_mins>
    <!--- timeout has expired, kill the session and log the
    user out --->
    <CFSET StructClear(session)>
    <!--- insert your logout code here --->
    <CFELSE>
    <!--- user hasn't timed out, so reset the most recent
    activity to now --->
    <CFSET session.user.most_recent_activity = now()>
    </CFIF>
    </CFIF>

  • What is the best method to query for older GPIB equipment with ID? and newer with *IDN?

    Good day,
    I am writing a test executive where it needs to scan the bus for support of older (HP/Agilent 856x series) and newer (Agilent 440x and 444x series) spectrum analyzers. *NOTE* I originally posted this question in my NI Community blog. I apologize for redundancy but someone recommended I re-post here.
    The first frame looks for the newer analyzers with *IDN? then if that fails sets the boolean in the error cluster to TRUE. The next frame then uses the error cluster's boolean to decide whether an older HP analzer is connected instead using ID? query. Disclaimer: the second frame is a clone of the ID query of the 856x Initialize VI. I just want to use what already worked - no reinventing the same wheel?
    But, lo and behold, it doesn't work as expected. If I have the frames in this order and connect a HP8563E the GPIB time's out error. This code works with the newer 4407 or 4440 since the *IDN? query passes and the second frame is not executed.
    Now, when I move the second frame to become the first frame and run it with HP8563E the query works but will have a GPIB timeout if I have the 4407 or 4440 connected.
    Long story short, how do I support both older GPIB ID? and newer IDN? in my code?
    I have attached the query VI created with LV 2012.
    Many thanks!
    Aldrin
    Attachments:
    Query ID and IDN.vi ‏11 KB

    I think Michael Aivaliotis of JKI and NI have an elegant solution:
    https://decibel.ni.com/content/groups/large-labview-application-development/blog/2015/05/14/what-is-...
    Cheers!
    Aldrin

  • OID for SSID based Tx+Rx data throughput.

    I am looking for the OID for a cisco wlan controller 5508 that will give the Tx+Rx bytes based off of SSID? I have a group of users in an silo'd SSID and need to see there data consumption.
    Posted by WebUser Sean Williamson

    I think the right place for this is Wireless Forum here https://supportforums.cisco.com/community/netpro/wireless-mobility
    If the moderator doesnt move it for you, please open a new one there.
    GP.

  • Re:TimeOut

    Hello,
    Has anyone implemented a TimeOut for an application.If so what has been the principle and method adopted.
    I wan't to implement a TimeOut wherein, based on a time interval if the application is left idle by an user then popup a dialog to accept his userid/password and then continue from where he left last.
    If anyone has a solution please mail responses to [email protected]
    Thanks in advance
    Bala Suresh

    Hi, Maria.
    The best option for me will be a client timeout (like the blocktime), reporting
    the server the exception (like the transaction timeout).
    In our development, we have met some troubles using transaction timeout to
    implement a per-call timeout. First, the accuracy of the timeout is not very good
    (I think it is affected by the scanunit). Second, the only server informed by
    the timeout is the TMS of the group (to send the rollback to the RM). In case
    the service doesn't implement transactions, the server doesnt't know if the client
    wants to rollback the actions made or not.
    R.G.
    Maria Josefa <[email protected]> wrote:
    Hi Cryo/Ramon,
    Just wanted to clarify is your request for a Blocktime(client timeout
    on a per call
    basis) or Service timeout ?
    Do you have transactions involved ?
    -Maria
    Ramon Gordillo Gutierrez wrote:
    Timeouts are difficult to handle. First, probably cryo needs a dynamictimeout,
    I mean, a different timeout in each call. I have met many troublesbecause of
    queues waiting time of the request in busy circumstances.
    Not only this, but in many cases when you finish the request becauseof a
    timeout, if the RM is not transactional, the request could be fulfilledor not,
    and you have lost control over it.
    And also, an absolute timeout (for example, limit completion time)have
    the trouble of syncronization between hosts.
    R.G.
    Scott Orshan wrote:
    A per-call timeout is something that we have heard about from time
    to
    time. Product Management decides what enhancements go into Tuxedo,and
    they base it on customer need. If they hear a lot of customers askfor
    something, it is more likely to be added to Tuxedo.
    Scott Orshan
    cryo wrote:
    hello,
    I just need a timeout that may depend on the service I call (
    longer for one
    service, shorter for another) . Using ATMi, how can i do ? is itnecessary for
    me to use the transactional mode (tbegin(long timeout ...) .. etc)?
    thanks in advance.
    Cryo

  • Writing byte 128

    I'm having a hard time with some byte-based file output. If I do f.write(128); through f.write(159); , it comes out, in a hex editor, as 63.
    If that's not clear:
    for (int i=0; i<256; i++) out.write(i);produces...
    - 00-7F correctly
    - What should be 80-9F entirely as 3F
    - A0-FF correctly
    Thanks for any help.

    If I do
    for(int i=-128;i<128;i++) out.write(i);I get 3F for the first 128, then it goes normally from 0 to 128.
    I don't know how this code will help, but here is the main() function, with that line included.
         public static void main(String[] args) throws IOException {
              MidiWrite app = new MidiWrite();
              File outputFile = new File("midi.mid");
                 FileWriter out = new FileWriter(outputFile);
              for(int i=-128;i<128;i++) out.write(i);
              out.write("MThd");
              out.write(app.hex4Byte(6)); //Length of header
              out.write(0); out.write(1); out.write(0); out.write(9);
              out.write(0); out.write(48);
              app.writeTrickTrack(out);
              app.writeTrack(out, 1);
              for (int i=1; i<8; i++)
                   app.writeTrack(out, 0);
                 out.close();
         }

  • Problem with Socket Client - Intermittent Truncated Response in AIX

    {color:#0000ff}Hi guru
    I have written on Socket Client method below to send request byte[] to Host and receive response byte[] from Host.
    For this particular response, I'm expecting Host to return me byte[] with length 2274.
    My problem is intermittently I received truncated message byte[] from Host with length only 1392. Sometimes I received full 2274 message, sometimes I received 1392 length. I tested in continual of 10 times by sending the same request to host, intermittently received truncated response message.
    My real problem is that this only happened in {color:#ff0000}AIX {color}machine. With the same class, I tested on {color:#ff0000}Windows {color}platform and i received full response message byte[] with 2274 lenght always. Therefore, im counting out the possibilities that Host might send me truncated message.
    Can anyone pls help to tell me how should I proceed to troubleshoot this problem in AIX? Is possible for me to trace what coming in?
    {color}
    public byte[] sendToHost(byte[] requestMessage, String requestId, String localTxnCode) throws Exception {
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    long startTime = 0;
    long elapsed = 0;
    try {
    LogManager.log(LogManager.DEBUG, Constants.DEFAULT_LOGGER_NAME, requestId, "[" + localTxnCode + "] To connect and send message to Host hostAddr=[" + hostAddr + "], hostPort=[" + hostPort
    + "]");
    startTime = System.currentTimeMillis();
    hostSocket = new Socket(InetAddress.getByName(hostAddr), hostPort);
    hostSocket.setSoTimeout(timeOut);
    byte responseData[] = new byte[4096];
    bis = new BufferedInputStream(hostSocket.getInputStream());
    bos = new BufferedOutputStream(hostSocket.getOutputStream());
    bos.write(requestMessage);
    bos.flush();
    int length = bis.read(responseData);
    elapsed = System.currentTimeMillis() - startTime;
    ARBAdapterUtil.log(LogManager.DEBUG, Constants.DEFAULT_LOGGER_NAME, requestId, "[" + localTxnCode + "] Received message from Host length=[" + length + "]");
    // The response byte must not be 4096 everytime
    byte[] returnByte = new byte[length];
    for (int i = 0; i < length; i++) {
    returnByte[i] = responseData;
    return returnByte;
    } catch (BindException b) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new SocketException("Socket Exception: BindException IP=" + hostAddr + " PORT=" + hostPort + " Error type=" + b.getClass().getName() + " Error message=" + b.getMessage());
    } catch (ConnectException c) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new SocketException("Socket Exception: ConnectException IP=" + hostAddr + " PORT=" + hostPort + " Error type=" + c.getClass().getName() + " Error message=" + c.getMessage());
    } catch (NoRouteToHostException nrth) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new SocketException("Socket Exception: NoRouteToHostException IP=" + hostAddr + " PORT=" + hostPort + " Error type=" + nrth.getClass().getName() + " Error message="+ nrth.getMessage());
    } catch (SocketTimeoutException se) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new SocketTimeoutException("Socket Exception: SocketTimeoutException IP=" + hostAddr + " PORT=" + hostPort + " Error type=" + se.getClass().getName() + " Error message=" + se.getMessage());
    } catch (SocketException s) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new SocketException("Socket Exception: SocketException IP=" + hostAddr + " PORT=" + hostPort + " Error type=" + s.getClass().getName() + " Error message=" + s.getMessage());
    } catch (Exception e) {
    elapsed = System.currentTimeMillis() - startTime;
    throw new Exception("Unknown Exception: Exception IP=" + hostAddr + " PORT=" + hostPort + "Error type=" + e.getClass().getName() + " Error message=" + e.getMessage());
    } finally {
    try {
    ARBAdapterUtil.log(LogManager.INFO, Constants.DEFAULT_LOGGER_NAME, requestId, "ARBConnection.sendToHost() [" + localTxnCode + "] Time Elapsed via Socket in millisecond = [" + elapsed + "]");
    if (bis != null) {
    bis.close();
    bis = null;
    if (bos != null) {
    bos.close();
    bos = null;
    } catch (Exception e) {
    LogManager.log(LogManager.ERROR, Constants.DEFAULT_LOGGER_NAME, requestId, "ARBConnection.sendToHost() [" + localTxnCode + "] Exception during closing BufferedInputStream and BufferedOutputStream");

    I tried to use DataInputStream.readFully(byte[]). However, I could not retrieve a single byte from Host. It won't return until it fills the buffer, or EOS occurs. Isn't that what you wanted?
    You need to believe it here. Either the sending application or Java or the sending TCP stack or the intervening routers or the receiving TCP stack or Java or the receiver can break up the transmission into 1 byte reads and there is nothing you can do about it at the receiver except what I said. BufferedInputStream will mask the effect to some extent but you still have to code under that assumption. You don't have any choice about this.

  • Problems with kismet

    Hi, I had problems starting kismet...
    sudo kismet
    Launching kismet_server: /usr/bin/kismet_server
    Will drop privs to koala (1000) gid 1000
    No specific sources given to be enabled, all will be enabled.
    Non-RFMon VAPs will be destroyed on multi-vap interfaces (ie, madwifi-ng)
    Enabling channel hopping.
    Enabling channel splitting.
    NOTICE: Disabling channel hopping, no enabled sources are able to change channel.
    Source 0 (madwifi): Enabling monitor mode for madwifi_b source interface wlan0 channel 6...
    ERROR: Unable to create VAP: Operation not supported
    ERROR: Unable to create monitor-mode VAP
    WARNING: wlan0 appears to not accept the Madwifi-NG controls. Will attempt to configure it as a standard Madwifi-old interface. If you are using madwifi-ng, be sure to set the source interface to the wifiX control interface, NOT athX
    FATAL: Failed to retrieve list of private ioctls 95:Operation not supported
    Done.
    Here is my kismet.conf
    # Kismet config file
    # Most of the "static" configs have been moved to here -- the command line
    # config was getting way too crowded and cryptic. We want functionality,
    # not continually reading --help!
    # Version of Kismet config
    version=2007.09.R1
    # Name of server (Purely for organizational purposes)
    servername=Kismet
    # User to setid to (should be your normal user)
    suiduser=koala
    # Do we try to put networkmanager to sleep? If you use NM, this is probably
    # what you want to do, so that it will leave the interfaces alone while
    # Kismet is using them. This requires DBus support!
    networkmanagersleep=true
    # Sources are defined as:
    # source=sourcetype,interface,name[,initialchannel]
    # Source types and required drivers are listed in the README under the
    # CAPTURE SOURCES section.
    # The initial channel is optional, if hopping is not enabled it can be used
    # to set the channel the interface listens on.
    # YOU MUST CHANGE THIS TO BE THE SOURCE YOU WANT TO USE
    source=madwifi_b,wlan0,madwifi
    # Comma-separated list of sources to enable. This is only needed if you defined
    # multiple sources and only want to enable some of them. By default, all defined
    # sources are enabled.
    # For example:
    # enablesources=prismsource,ciscosource
    # Automatically destroy VAPs on multi-vap interfaces (like madwifi-ng).
    # Madwifi-ng doesn't work in rfmon when non-rfmon VAPs are present, however
    # this is a fairly invasive change to the system so it CAN be disabled. Expect
    # things not to work in most cases if you do disable it, however.
    vapdestroy=true
    # Do we channelhop?
    channelhop=true
    # How many channels per second do we hop? (1-10)
    channelvelocity=5
    # By setting the dwell time for channel hopping we override the channelvelocity
    # setting above and dwell on each channel for the given number of seconds.
    #channeldwell=10
    # Do we split channels between cards on the same spectrum? This means if
    # multiple 802.11b capture sources are defined, they will be offset to cover
    # the most possible spectrum at a given time. This also controls splitting
    # fine-tuned sourcechannels lines which cover multiple interfaces (see below)
    channelsplit=true
    # Basic channel hopping control:
    # These define the channels the cards hop through for various frequency ranges
    # supported by Kismet. More finegrain control is available via the
    # "sourcechannels" configuration option.
    # Don't change the IEEE80211<x> identifiers or channel hopping won't work.
    # Users outside the US might want to use this list:
    # defaultchannels=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
    defaultchannels=IEEE80211b:1,6,11,2,7,3,8,4,9,5,10
    # 802.11g uses the same channels as 802.11b...
    defaultchannels=IEEE80211g:1,6,11,2,7,3,8,4,9,5,10
    # 802.11a channels are non-overlapping so sequential is fine. You may want to
    # adjust the list depending on the channels your card actually supports.
    # defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,184,188,192,196,200,204,208,212,216
    defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64
    # Combo cards like Atheros use both 'a' and 'b/g' channels. Of course, you
    # can also explicitly override a given source. You can use the script
    # extras/listchan.pl to extract all the channels your card supports.
    defaultchannels=IEEE80211ab:1,6,11,2,7,3,8,4,9,5,10,36,40,44,48,52,56,60,64
    # Fine-tuning channel hopping control:
    # The sourcechannels option can be used to set the channel hopping for
    # specific interfaces, and to control what interfaces share a list of
    # channels for split hopping. This can also be used to easily lock
    # one card on a single channel while hopping with other cards.
    # Any card without a sourcechannel definition will use the standard hopping
    # list.
    # sourcechannels=sourcename[,sourcename]:ch1,ch2,ch3,...chN
    # ie, for us channels on the source 'wlanngsource' (same as normal channel
    # hopping behavior):
    # sourcechannels=wlanngsource:1,6,11,2,7,3,8,4,9,5,10
    # Given two capture sources, "wlannga" and "wlanngb", we want wlannga to stay
    # on channel 6 and wlanngb to hop normally. By not setting a sourcechannels
    # line for wlanngb, it will use the standard hopping.
    # sourcechannels=wlannga:6
    # To assign the same custom hop channel to multiple sources, or to split the
    # same custom hop channel over two sources (if splitchannels is true), list
    # them all on the same sourcechannels line:
    # sourcechannels=wlannga,wlanngb,wlanngc:1,6,11
    # Port to serve GUI data
    tcpport=2501
    # People allowed to connect, comma seperated IP addresses or network/mask
    # blocks. Netmasks can be expressed as dotted quad (/255.255.255.0) or as
    # numbers (/24)
    allowedhosts=127.0.0.1
    # Address to bind to. Should be an address already configured already on
    # this host, reverts to INADDR_ANY if specified incorrectly.
    bindaddress=127.0.0.1
    # Maximum number of concurrent GUI's
    maxclients=5
    # Do we have a GPS?
    gps=true
    # Host:port that GPSD is running on. This can be localhost OR remote!
    gpshost=localhost:2947
    # Do we lock the mode? This overrides coordinates of lock "0", which will
    # generate some bad information until you get a GPS lock, but it will
    # fix problems with GPS units with broken NMEA that report lock 0
    gpsmodelock=false
    # Packet filtering options:
    # filter_tracker - Packets filtered from the tracker are not processed or
    # recorded in any way.
    # filter_dump - Packets filtered at the dump level are tracked, displayed,
    # and written to the csv/xml/network/etc files, but not
    # recorded in the packet dump
    # filter_export - Controls what packets influence the exported CSV, network,
    # xml, gps, etc files.
    # All filtering options take arguments containing the type of address and
    # addresses to be filtered. Valid address types are 'ANY', 'BSSID',
    # 'SOURCE', and 'DEST'. Filtering can be inverted by the use of '!' before
    # the address. For example,
    # filter_tracker=ANY(!00:00:DE:AD:BE:EF)
    # has the same effect as the previous mac_filter config file option.
    # filter_tracker=...
    # filter_dump=...
    # filter_export=...
    # Alerts to be reported and the throttling rates.
    # alert=name,throttle/unit,burst/unit
    # The throttle/unit describes the number of alerts of this type that are
    # sent per time unit. Valid time units are second, minute, hour, and day.
    # Burst rates control the number of packets sent at a time
    # For example:
    # alert=FOO,10/min,5/sec
    # Would allow 5 alerts per second, and 10 alerts total per minute.
    # A throttle rate of 0 disables throttling of the alert.
    # See the README for a list of alert types.
    alert=NETSTUMBLER,10/min,1/sec
    alert=WELLENREITER,10/min,1/sec
    alert=LUCENTTEST,10/min,1/sec
    alert=DEAUTHFLOOD,10/min,2/sec
    alert=BCASTDISCON,10/min,2/sec
    alert=CHANCHANGE,5/min,1/sec
    alert=AIRJACKSSID,5/min,1/sec
    alert=PROBENOJOIN,10/min,1/sec
    alert=DISASSOCTRAFFIC,10/min,1/sec
    alert=NULLPROBERESP,10/min,1/sec
    alert=BSSTIMESTAMP,10/min,1/sec
    alert=MSFBCOMSSID,10/min,1/sec
    alert=LONGSSID,10/min,1/sec
    alert=MSFDLINKRATE,10/min,1/sec
    alert=MSFNETGEARBEACON,10/min,1/sec
    alert=DISCONCODEINVALID,10/min,1/sec
    alert=DEAUTHCODEINVALID,10/min,1/sec
    # Known WEP keys to decrypt, bssid,hexkey. This is only for networks where
    # the keys are already known, and it may impact throughput on slower hardware.
    # Multiple wepkey lines may be used for multiple BSSIDs.
    # wepkey=00:DE:AD:C0:DE:00,FEEDFACEDEADBEEF01020304050607080900
    # Is transmission of the keys to the client allowed? This may be a security
    # risk for some. If you disable this, you will not be able to query keys from
    # a client.
    allowkeytransmit=true
    # How often (in seconds) do we write all our data files (0 to disable)
    writeinterval=300
    # How old (and inactive) does a network need to be before we expire it?
    # This is really only good for limited ram environments where keeping a
    # total log of all networks is problematic. This is in seconds, and should
    # be set to a large value like 12 or 24 hours. This is intended for use
    # on stationary systems like an IDS
    # logexpiry=86400
    # Do we limit the number of networks we log? This is for low-ram situations
    # when tracking everything could lead to the system falling down. This
    # should be combined with a sane logexpiry value to flush out very old
    # inactive networks. This is mainly for stationary systems like an IDS.
    # limitnets=10000
    # Do we track IVs? this can help identify some attacks, but takes a LOT
    # of memory to do so on a busy network. If you have the RAM, by all
    # means turn it on.
    trackivs=false
    # Do we use sound?
    # Not to be confused with GUI sound parameter, this controls wether or not the
    # server itself will play sound. Primarily for headless or automated systems.
    sound=false
    # Path to sound player
    soundplay=/usr/bin/play
    # Optional parameters to pass to the player
    # soundopts=--volume=.3
    # New network found
    sound_new=/usr/share/kismet/wav/new_network.wav
    # Wepped new network
    # sound_new_wep=/usr/com/kismet/wav/new_wep_network.wav
    # Network traffic sound
    sound_traffic=/usr/share/kismet/wav/traffic.wav
    # Network junk traffic found
    sound_junktraffic=/usr/share/kismet/wav/junk_traffic.wav
    # GPS lock aquired sound
    # sound_gpslock=/usr/share/kismet/wav/foo.wav
    # GPS lock lost sound
    # sound_gpslost=/usr/share/kismet/wav/bar.wav
    # Alert sound
    sound_alert=/usr/share/kismet/wav/alert.wav
    # Does the server have speech? (Again, not to be confused with the GUI's speech)
    speech=false
    # Server's path to Festival
    festival=/usr/bin/festival
    # Are we using festival lite? If so, set the above "festival" path to also
    # point to the "flite" binary
    flite=false
    # Are we using Darwin speech?
    darwinsay=false
    # What voice do we use? (Currently only valid on Darwin)
    speech_voice=default
    # How do we speak? Valid options:
    # speech Normal speech
    # nato NATO spellings (alpha, bravo, charlie)
    # spell Spell the letters out (aye, bee, sea)
    speech_type=nato
    # speech_encrypted and speech_unencrypted - Speech templates
    # Similar to the logtemplate option, this lets you customize the speech output.
    # speech_encrypted is used for an encrypted network spoken string
    # speech_unencrypted is used for an unencrypted network spoken string
    # %b is replaced by the BSSID (MAC) of the network
    # %s is replaced by the SSID (name) of the network
    # %c is replaced by the CHANNEL of the network
    # %r is replaced by the MAX RATE of the network
    speech_encrypted=New network detected, s.s.i.d. %s, channel %c, network encrypted.
    speech_unencrypted=New network detected, s.s.i.d. %s, channel %c, network open.
    # Where do we get our manufacturer fingerprints from? Assumed to be in the
    # default config directory if an absolute path is not given.
    ap_manuf=ap_manuf
    client_manuf=client_manuf
    # Use metric measurements in the output?
    metric=false
    # Do we write waypoints for gpsdrive to load? Note: This is NOT related to
    # recent versions of GPSDrive's native support of Kismet.
    waypoints=false
    # GPSDrive waypoint file. This WILL be truncated.
    waypointdata=%h/.gpsdrive/way_kismet.txt
    # Do we want ESSID or BSSID as the waypoint name ?
    waypoint_essid=false
    # How many alerts do we backlog for new clients? Only change this if you have
    # a -very- low memory system and need those extra bytes, or if you have a high
    # memory system and a huge number of alert conditions.
    alertbacklog=50
    # File types to log, comma seperated
    # dump - raw packet dump
    # network - plaintext detected networks
    # csv - plaintext detected networks in CSV format
    # xml - XML formatted network and cisco log
    # weak - weak packets (in airsnort format)
    # cisco - cisco equipment CDP broadcasts
    # gps - gps coordinates
    logtypes=dump,network,csv,xml,weak,cisco,gps
    # Do we track probe responses and merge probe networks into their owners?
    # This isn't always desireable, depending on the type of monitoring you're
    # trying to do.
    trackprobenets=true
    # Do we log "noise" packets that we can't decipher? I tend to not, since
    # they don't have anything interesting at all in them.
    noiselog=false
    # Do we log corrupt packets? Corrupt packets have enough header information
    # to see what they are, but someting is wrong with them that prevents us from
    # completely dissecting them. Logging these is usually not a bad idea.
    corruptlog=true
    # Do we log beacon packets or do we filter them out of the dumpfile
    beaconlog=true
    # Do we log PHY layer packets or do we filter them out of the dumpfile
    phylog=true
    # Do we mangle packets if we can decrypt them or if they're fuzzy-detected
    mangledatalog=true
    # Do we do "fuzzy" crypt detection? (byte-based detection instead of 802.11
    # frame headers)
    # valid option: Comma seperated list of card types to perform fuzzy detection
    # on, or 'all'
    fuzzycrypt=wtapfile,wlanng,wlanng_legacy,wlanng_avs,hostap,wlanng_wext,ipw2200,ipw2915
    # Do we do forgiving fuzzy packet decoding? This lets us handle borked drivers
    # which don't indicate they're including FCS, and then do.
    fuzzydecode=wtapfile,radiotap_bsd_a,radiotap_bsd_g,radiotap_bsd_bg,radiotap_bsd_b,pcapfile
    # Do we use network-classifier fuzzy-crypt detection? This means we expect
    # packets that are associated with an encrypted network to be encrypted too,
    # and we process them by the same fuzzy compare.
    # This essentially replaces the fuzzycrypt per-source option.
    netfuzzycrypt=true
    # What type of dump do we generate?
    # valid option: "wiretap"
    dumptype=wiretap
    # Do we limit the size of dump logs? Sometimes ethereal can't handle big ones.
    # 0 = No limit
    # Anything else = Max number of packets to log to a single file before closing
    # and opening a new one.
    dumplimit=0
    # Do we write data packets to a FIFO for an external data-IDS (such as Snort)?
    # See the docs before enabling this.
    #fifo=/tmp/kismet_dump
    # Default log title
    logdefault=Kismet
    # logtemplate - Filename logging template.
    # This is, at first glance, really nasty and ugly, but you'll hardly ever
    # have to touch it so don't complain too much.
    # %n is replaced by the logging instance name
    # %d is replaced by the current date as Mon-DD-YYYY
    # %D is replaced by the current date as YYYYMMDD
    # %t is replaced by the starting log time
    # %i is replaced by the increment log in the case of multiple logs
    # %l is replaced by the log type (dump, status, crypt, etc)
    # %h is replaced by the home directory
    # ie, "netlogs/%n-%d-%i.dump" called with a logging name of "Pok" could expand
    # to something like "netlogs/Pok-Dec-20-01-1.dump" for the first instance and
    # "netlogs/Pok-Dec-20-01-2.%l" for the second logfile generated.
    # %h/netlots/%n-%d-%i.dump could expand to
    # /home/foo/netlogs/Pok-Dec-20-01-2.dump
    # Other possibilities: Sorting by directory
    # logtemplate=%l/%n-%d-%i
    # Would expand to, for example,
    # dump/Pok-Dec-20-01-1
    # crypt/Pok-Dec-20-01-1
    # and so on. The "dump", "crypt", etc, dirs must exist before kismet is run
    # in this case.
    logtemplate=%n-%d-%i.%l
    # Where do we store the pid file of the server?
    piddir=/var/run/
    # Where state info, etc, is stored. You shouldnt ever need to change this.
    # This is a directory.
    configdir=%h/.kismet/
    # cloaked SSID file. You shouldn't ever need to change this.
    ssidmap=ssid_map
    # Group map file. You shouldn't ever need to change this.
    groupmap=group_map
    # IP range map file. You shouldn't ever need to change this.
    ipmap=ip_map
    I'm just not sure if the "source:" is correct...:)
    Here is my lspci
    00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1c.3 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    01:00.0 System peripheral: JMicron Technologies, Inc. SD/MMC Host Controller
    01:00.2 SD Host controller: JMicron Technologies, Inc. Standard SD Host Controller
    01:00.3 System peripheral: JMicron Technologies, Inc. MS Host Controller
    01:00.4 System peripheral: JMicron Technologies, Inc. xD Host Controller
    02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
    03:00.0 Ethernet controller: Atheros Communications Inc. AR242x 802.11abg Wireless PCI Express Adapter (rev 01)
    04:00.0 System peripheral: JMicron Technologies, Inc. SD/MMC Host Controller
    04:00.2 SD Host controller: JMicron Technologies, Inc. Standard SD Host Controller
    04:00.3 System peripheral: JMicron Technologies, Inc. MS Host Controller
    04:00.4 System peripheral: JMicron Technologies, Inc. xD Host Controller
    Thanks is advance guyz..:)

    [koala@myhost ~]$ lsmod
    Module Size Used by
    uhci_hcd 18764 0
    video 16208 0
    backlight 3652 1 video
    ath_pci 207800 0
    wlan 186612 1 ath_pci
    ath_hal 298208 1 ath_pci
    ath5k 88896 0
    Here is my lsmod...:)

  • Loading large files in Java Swing GUI

    Hello Everyone!
    I am trying to load large files(more then 70 MB of xml text) in a Java Swing GUI. I tried several approaches,
    1)Byte based loading whith a loop similar to
    pane.setText("");
                 InputStream file_reader = new BufferedInputStream(new FileInputStream
                           (file));
                 int BUFFER_SIZE = 4096;
                 byte[] buffer = new byte[BUFFER_SIZE];
                 int bytesRead;
                 String line;
                 while ((bytesRead = file_reader.read(buffer, 0, BUFFER_SIZE)) != -1)
                      line = new String(buffer, 0, bytesRead);
                      pane.append(line);
                 }But this is gives me unacceptable response times for large files and runs out of Java Heap memory.
    2) I read in several places that I could load only small chunks of the file at a time and when the user scrolls upwards or downwards the next/previous chunk is loaded , to achieve this I am guessing extensive manipulation for the ScrollBar in the JScrollPane will be needed or adding an external JScrollBar perhaps? Can anyone provide sample code for that approach? (Putting in mind that I am writting code for an editor so I will be needing to interact via clicks and mouse wheel roatation and keyboard buttons and so on...)
    If anyone can help me, post sample code or point me to useful links that deal with this issue or with writting code for editors in general I would be very grateful.
    Thank you in advance.

    Hi,
    I'm replying to your question from another thread.
    To handle large files I used the new IO libary. I'm trying to remember off the top of my head but the classes involved were the RandomAccessFile, FileChannel and MappedByteBuffer. The MappedByteBuffer was the best way for me to read and write to the file.
    When opening the file I had to scan through the contents of the file using a swing worker thread and progress monitor. Whilst doing this I indexed the file into managable chunks. I also created a cache to further optimise file access.
    In all it worked really well and I was suprised by the performance of the new IO libraries. I remember loading 1GB files and whilst having to wait a few seconds to perform the indexing you wouldn't know that the data for the JList was being retrieved from a file whilst the application was running.
    Good Luck,
    Martin.

  • Why won't my unzipped and rezipped IDML file open in InDesign?

    I'm a developer working on an IDML based project.
    My application opens an IDML file, inflates the contents and (for the moment, without making any changes), deflates them again.
    The result is a file which:
    a) Opens fine in any zip application
    b) My code can then reopen without problems.
    InDesign, however, throws the following error:
    "Cannot open the file "filename.idml". Adobe InDesign may not support the file format, a plug-in that supports the file format may be miussing, or the file may be open in another application."
    I have verified that the file is not open in another app, and that no plug ins are involved.
    InDesign will open the original IDML file that it exported, so there's no general error.
    I assume the issue is with the zip container not being UCF compliant, and I'm trying to diagnose what the problem might be.
    My question(s):
    Has anyone been through this and do they have any suggestions or guidance?
    Is there any way I can get InDesign to tell me in more detail why it cannot open the file?
    What are the most likely issues with the container?
    I have inspected both the original file and the output file using Winzip, and I append the results of a detailed diagnostic on each below. The only difference I can see is that some files in the original are not compressed (they are simply stored in the zip container), but the UCF specification seems to suggest that a container can contain either compressed or normal files, so I don't see why this should be a problem. Would this cause InDesign to have a problem?
    Many thanks in advance for any assistance. Zip file diagnostics follow.
    JcFx Eu.
    DIAGNOSTICS FOR THE ORIGINAL IDML FILE:
    Testing ...
    Current Location part 1 offset 35496
    Archive: ORIGINAL.zip   35518 bytes   2010-06-29 19:16:58
    End central directory record PK0506 (4+18)
    ==========================================
        current  location of end-of-central-dir record: 35496 (0x00008aa8) bytes
        expected location of end-of-central-dir record: 35496 (0x00008aa8) bytes
          based on the size of the central directory of
          990 and its relative offset of 34506 bytes
        part number of this part (0000):                1
        part number of start of central dir (0000):     1
        number of entries in central dir in this part:  15
        total number of entries in central dir:         15
        size of central dir:                            990 (0x000003de) bytes
        relative offset of central dir:                 34506 (0x000086ca) bytes
        zipfile comment length:                         0
    Current Location part 1 offset 34506
    Central directory entry PK0102 (4+42): #1
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                0 (0x00000000) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0800) (bit 15..0):  0000.1000 0000.0000
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (00):                        none (stored)
        file last modified on (0x00003cdd 0x00009a1c):  2010-06-29 19:16:56
        32-bit CRC value:                               0x898f76cb
        compressed size:                                43 bytes
        uncompressed size:                              43 bytes
        length of filename:                             8 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34552
        filename:mimetype
    Current Location part 1 offset 34560
    Central directory entry PK0102 (4+42): #2
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                81 (0x00000051) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1c):  2010-06-29 19:16:56
        32-bit CRC value:                               0x48e193fb
        compressed size:                                2516 bytes
        uncompressed size:                              14146 bytes
        length of filename:                             13 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34606
        filename:designmap.xml
    Current Location part 1 offset 34619
    Central directory entry PK0102 (4+42): #3
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                2640 (0x00000a50) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xbe470667
        compressed size:                                167 bytes
        uncompressed size:                              253 bytes
        length of filename:                             22 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34665
        filename:META-INF\container.xml
    Current Location part 1 offset 34687
    Central directory entry PK0102 (4+42): #4
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                2859 (0x00000b2b) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xa9a4d00e
        compressed size:                                6047 bytes
        uncompressed size:                              29065 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34733
        filename:META-INF\metadata.xml
    Current Location part 1 offset 34754
    Central directory entry PK0102 (4+42): #5
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                8957 (0x000022fd) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x7557d85e
        compressed size:                                1155 bytes
        uncompressed size:                              7428 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34800
        filename:Resources\Graphic.xml
    Current Location part 1 offset 34821
    Central directory entry PK0102 (4+42): #6
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                10163 (0x000027b3) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xf43a42fe
        compressed size:                                3449 bytes
        uncompressed size:                              19673 bytes
        length of filename:                             19 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34867
        filename:Resources\Fonts.xml
    Current Location part 1 offset 34886
    Central directory entry PK0102 (4+42): #7
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                13661 (0x0000355d) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x4accb4c4
        compressed size:                                4627 bytes
        uncompressed size:                              29487 bytes
        length of filename:                             20 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34932
        filename:Resources\Styles.xml
    Current Location part 1 offset 34952
    Central directory entry PK0102 (4+42): #8
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                18338 (0x000047a2) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xd75ae504
        compressed size:                                10962 bytes
        uncompressed size:                              69779 bytes
        length of filename:                             25 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 34998
        filename:Resources\Preferences.xml
    Current Location part 1 offset 35023
    Central directory entry PK0102 (4+42): #9
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                29355 (0x000072ab) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x65ae6db3
        compressed size:                                218 bytes
        uncompressed size:                              302 bytes
        length of filename:                             12 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35069
        filename:XML\Tags.xml
    Current Location part 1 offset 35081
    Central directory entry PK0102 (4+42): #10
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                29615 (0x000073af) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x037dee40
        compressed size:                                692 bytes
        uncompressed size:                              2328 bytes
        length of filename:                             34 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35127
        filename:MasterSpreads\MasterSpread_ubc.xml
    Current Location part 1 offset 35161
    Central directory entry PK0102 (4+42): #11
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                30371 (0x000076a3) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x43b1858a
        compressed size:                                1573 bytes
        uncompressed size:                              7799 bytes
        length of filename:                             22 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35207
        filename:Spreads\Spread_ub5.xml
    Current Location part 1 offset 35229
    Central directory entry PK0102 (4+42): #12
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                31996 (0x00007cfc) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x0bc7a874
        compressed size:                                342 bytes
        uncompressed size:                              606 bytes
        length of filename:                             20 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35275
        filename:XML\BackingStory.xml
    Current Location part 1 offset 35295
    Central directory entry PK0102 (4+42): #13
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                32388 (0x00007e84) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x0c652477
        compressed size:                                685 bytes
        uncompressed size:                              3219 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35341
        filename:Stories\Story_uff.xml
    Current Location part 1 offset 35362
    Central directory entry PK0102 (4+42): #14
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                33124 (0x00008164) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x59a2cf03
        compressed size:                                646 bytes
        uncompressed size:                              3041 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35408
        filename:Stories\Story_ue5.xml
    Current Location part 1 offset 35429
    Central directory entry PK0102 (4+42): #15
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                33821 (0x0000841d) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x6fc8a48f
        compressed size:                                634 bytes
        uncompressed size:                              2935 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 35475
        filename:Stories\Story_ucb.xml
    Current Location part 1 offset 0
    Local directory entry PK0304 (4+26): #1
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0800) (bit 15..0):  0000.1000 0000.0000
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (00):                        none (stored)
        file last modified on (0x00003cdd 0x00009a1c):  2010-06-29 19:16:56
        32-bit CRC value:                               0x898f76cb
        compressed size:                                43 bytes
        uncompressed size:                              43 bytes
        length of filename:                             8 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 30
        filename:mimetype
    Current Location part 1 offset 38
    Testing mimetype                 OK
    Current Location part 1 offset 81
    Local directory entry PK0304 (4+26): #2
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1c):  2010-06-29 19:16:56
        32-bit CRC value:                               0x48e193fb
        compressed size:                                2516 bytes
        uncompressed size:                              14146 bytes
        length of filename:                             13 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 111
        filename:designmap.xml
    Current Location part 1 offset 124
    Testing designmap.xml            OK
    Current Location part 1 offset 2640
    Local directory entry PK0304 (4+26): #3
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xbe470667
        compressed size:                                167 bytes
        uncompressed size:                              253 bytes
        length of filename:                             22 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 2670
        filename:META-INF\container.xml
    Current Location part 1 offset 2692
    Testing META-INF\container.xml   OK
    Current Location part 1 offset 2859
    Local directory entry PK0304 (4+26): #4
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xa9a4d00e
        compressed size:                                6047 bytes
        uncompressed size:                              29065 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 2889
        filename:META-INF\metadata.xml
    Current Location part 1 offset 2910
    Testing META-INF\metadata.xml    OK
    Current Location part 1 offset 8957
    Local directory entry PK0304 (4+26): #5
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x7557d85e
        compressed size:                                1155 bytes
        uncompressed size:                              7428 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 8987
        filename:Resources\Graphic.xml
    Current Location part 1 offset 9008
    Testing Resources\Graphic.xml    OK
    Current Location part 1 offset 10163
    Local directory entry PK0304 (4+26): #6
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xf43a42fe
        compressed size:                                3449 bytes
        uncompressed size:                              19673 bytes
        length of filename:                             19 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 10193
        filename:Resources\Fonts.xml
    Current Location part 1 offset 10212
    Testing Resources\Fonts.xml      OK
    Current Location part 1 offset 13661
    Local directory entry PK0304 (4+26): #7
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x4accb4c4
        compressed size:                                4627 bytes
        uncompressed size:                              29487 bytes
        length of filename:                             20 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 13691
        filename:Resources\Styles.xml
    Current Location part 1 offset 13711
    Testing Resources\Styles.xml     OK
    Current Location part 1 offset 18338
    Local directory entry PK0304 (4+26): #8
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0xd75ae504
        compressed size:                                10962 bytes
        uncompressed size:                              69779 bytes
        length of filename:                             25 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 18368
        filename:Resources\Preferences.xml
    Current Location part 1 offset 18393
    Testing Resources\Preferences.xml   OK
    Current Location part 1 offset 29355
    Local directory entry PK0304 (4+26): #9
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x65ae6db3
        compressed size:                                218 bytes
        uncompressed size:                              302 bytes
        length of filename:                             12 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 29385
        filename:XML\Tags.xml
    Current Location part 1 offset 29397
    Testing XML\Tags.xml             OK
    Current Location part 1 offset 29615
    Local directory entry PK0304 (4+26): #10
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x037dee40
        compressed size:                                692 bytes
        uncompressed size:                              2328 bytes
        length of filename:                             34 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 29645
        filename:MasterSpreads\MasterSpread_ubc.xml
    Current Location part 1 offset 29679
    Testing MasterSpreads\MasterSpread_ubc.xml   OK
    Current Location part 1 offset 30371
    Local directory entry PK0304 (4+26): #11
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x43b1858a
        compressed size:                                1573 bytes
        uncompressed size:                              7799 bytes
        length of filename:                             22 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 30401
        filename:Spreads\Spread_ub5.xml
    Current Location part 1 offset 30423
    Testing Spreads\Spread_ub5.xml   OK
    Current Location part 1 offset 31996
    Local directory entry PK0304 (4+26): #12
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x0bc7a874
        compressed size:                                342 bytes
        uncompressed size:                              606 bytes
        length of filename:                             20 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 32026
        filename:XML\BackingStory.xml
    Current Location part 1 offset 32046
    Testing XML\BackingStory.xml     OK
    Current Location part 1 offset 32388
    Local directory entry PK0304 (4+26): #13
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x0c652477
        compressed size:                                685 bytes
        uncompressed size:                              3219 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 32418
        filename:Stories\Story_uff.xml
    Current Location part 1 offset 32439
    Testing Stories\Story_uff.xml    OK
    Current Location part 1 offset 33124
    Local directory entry PK0304 (4+26): #14
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x59a2cf03
        compressed size:                                646 bytes
        uncompressed size:                              3041 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 33154
        filename:Stories\Story_ue5.xml
    Current Location part 1 offset 33175
    Testing Stories\Story_ue5.xml    OK
    Current Location part 1 offset 33821
    Local directory entry PK0304 (4+26): #15
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0802) (bit 15..0):  0000.1000 0000.0010
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                no
        compression method (08):                        deflated
          compression sub-type (deflation):             maximum
        file last modified on (0x00003cdd 0x00009a1d):  2010-06-29 19:16:58
        32-bit CRC value:                               0x6fc8a48f
        compressed size:                                634 bytes
        uncompressed size:                              2935 bytes
        length of filename:                             21 characters
        length of extra field:                          0 bytes
    Current Location part 1 offset 33851
        filename:Stories\Story_ucb.xml
    Current Location part 1 offset 33872
    Testing Stories\Story_ucb.xml    OK
    No errors detected in compressed data of ORIGINAL.zip.
    DIAGNOSTICS FOR THE REZIPPED IDML FILE:
    Testing ...
    Current Location part 1 offset 34822
    Archive: OUTPUT.zip   34844 bytes   2010-07-21 17:48:46
    End central directory record PK0506 (4+18)
    ==========================================
        current  location of end-of-central-dir record: 34822 (0x00008806) bytes
        expected location of end-of-central-dir record: 34822 (0x00008806) bytes
          based on the size of the central directory of
          990 and its relative offset of 33832 bytes
        part number of this part (0000):                1
        part number of start of central dir (0000):     1
        number of entries in central dir in this part:  15
        total number of entries in central dir:         15
        size of central dir:                            990 (0x000003de) bytes
        relative offset of central dir:                 33832 (0x00008428) bytes
        zipfile comment length:                         0
    Current Location part 1 offset 33832
    Central directory entry PK0102 (4+42): #1
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                0 (0x00000000) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0008) (bit 15..0):  0000.0000 0000.1000
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                yes
        compression method (08):                        deflated
          compression sub-type (deflation):             normal
        file last modified on (0x00003ce3 0x00008e13):  2010-07-03 17:48:38
        32-bit CRC value:                               0x898f76cb
        compressed size:                                44 bytes
        uncompressed size:                              43 bytes
        length of filename:                             8 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 33878
        filename:mimetype
    Current Location part 1 offset 33886
    Central directory entry PK0102 (4+42): #2
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                98 (0x00000062) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0008) (bit 15..0):  0000.0000 0000.1000
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                yes
        compression method (08):                        deflated
          compression sub-type (deflation):             normal
        file last modified on (0x00003ce3 0x00008e13):  2010-07-03 17:48:38
        32-bit CRC value:                               0x65263983
        compressed size:                                2412 bytes
        uncompressed size:                              13985 bytes
        length of filename:                             13 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 33932
        filename:designmap.xml
    Current Location part 1 offset 33945
    Central directory entry PK0102 (4+42): #3
    ======================================
        part number in which file begins (0000):        1
        relative offset of local header:                2569 (0x00000a09) bytes
        version made by operating system (00):          MS-DOS, OS/2, NT FAT
        version made by zip software (20):              2.0
        operat. system version needed to extract (00):  MS-DOS, OS/2, NT FAT
        unzip software version needed to extract (20):  2.0
        general purpose bit flag (0x0008) (bit 15..0):  0000.0000 0000.1000
          file security status  (bit 0):                not encrypted
          extended local header (bit 3):                yes
        compression method (08):                        deflated
          compression sub-type (deflation):             normal
        file last modified on (0x00003ce3 0x00008e13):  2010-07-03 17:48:38
        32-bit CRC value:                               0x817f37ea
        compressed size:                                132 bytes
        uncompressed size:                              196 bytes
        length of filename:                             22 characters
        length of extra field:                          0 bytes
        length of file comment:                         0 characters
        internal file attributes:                       0x0000
          apparent file type:                           binary
        external file attributes:                       0x00000000
          non-MSDOS external file attributes:           0x000000
          MS-DOS file attributes (0x00):                none
    Current Location part 1 offset 33991
        filename:META-INF\container.xml
    Current Location part 1 offset 34013
    Central directory entry PK0102 (4+42): #4
    ======================================
        part number in which file begins (0000):        1

    How are you zipping it?
    In needs to be a "clean" zip...
    Also, take a look at app.packageUCF() and app.unpackageUCF()...
    Harbs

  • Anyone interested in working on a LabVIEW book with me?

    Hello
    Several months back I began working on a LabVIEW training manual and
    after becoming busy with other things, progress has stalled out. I am about
    70 pages into it.
    Here is what I have so far.
    Chapter 1 - Introduction (could probably use a little more work)
    Chapter 2 - Number Types
    Chapter 3 - Strings
    Chapter 4 - Booleans
    Chapter 5 - Arrays
    Chapter 6 - Structures (about 75% done)
    Chapter 7 - File I/O (havnt started)
    I envisioned this much as an introductory manual for someone who has never
    used LabVIEW before. I have my own business in which one of the things I
    had hoped to offer was LabVIEW training and thought that it would be more
    cost effective if I could produce my own training manual than have potential
    students buy a 3rd party book.
    I'm not sure what to do now with what I have but these are my ideas.
    1) Finish and polish what I have outlined above myself and see if I can sell
    individual copies. I think that this would be appropriate for college
    courses
    using LabVIEW with a need to quickly teach LabVIEW newbies enough
    to create vis for small experiments. Perhaps tailoring custom chapters to
    show
    how to use the classes particular hardware.
    2) Find one or two people interested in working with me to make something
    considerably more substantial, getting into advanced programming concepts
    and
    hardware programming concepts. This would continue to be a commercial
    project.
    3) Turn what I have so far into an open project. Divvy up the chapters and
    subchapters
    to individuals to really hammer out into something nice. This has a lot of
    appeal for
    a lot of reasons. I dont think it would be too difficult with the effort of
    10-15 people
    working a couple hours a week to produce a free document that is better than
    all
    the books currently on the market.
    What do you say? Anyone interested in working on this project with me? I
    think it
    would be a great service to the community.
    Send me e-mail or respond to this thread so I can get an idea of the level
    of interest.
    Make sure you let me know your LabVIEW background and what sections you
    would be interested in working on. Suggestions for future chapters are
    welcome, too.
    (State Machines, Interface Nodes, GPIB, VXI, etc.)
    Mark
    Mark J. Sowa, Ph.D.
    [email protected]
    Strigidae Technologies, Inc.
    w3.one.net/~marksowa
    P.O. Box 531251
    Cincinnati, OH 45253
    Voice: (513) 259-9682
    Fax: (513) 598-4203

    I'm willing. 5 years experience doing GPIB and card-based DAQ along with
    playing with niceties like ActiveX, both for external app control and to
    expand the available selection of front panel controls. Reasonable amount of
    time at the moment though I'm looking for a new job [anyone hiring? ] so
    that may change.
    A commercial book that gets published is better on the CV than a free one so
    I favour working towards the former and doing it as a comprehensive work
    that goes into depth. But at the order of 1k pages it's a formidable task.
    Publication indicates a publisher thinks it's worthwhile; producing a free
    book is an indication only of lots of free time to most people
    Mark Sowa wrote in message
    news:[email protected].
    > 2) Find one or two people interested in working with me to make something
    > considerably more substantial, getting into advanced programming concepts
    > and
    > hardware programming concepts. This would continue to be a commercial
    > project.
    ActiveX could be the basis of two chapters- "how/why to do it" and a
    reference to the common apps and controls. The latter however is essentially
    a reference to a load of M$ products and M$ may protest. There's a
    continuous trickle of ActiveX messages online so it's probably worthwhile.
    One problem is, is there actually a need for another Labview book? You've
    started this simply as a tutorial handout to make the cost of your course
    appear less. Personally I've not read all of the supplied documentation and
    have not bought any Labview books. Aside from the crap "case study" thing NI
    produce. There's a few out there already, and I'd need to be convinced the
    project is worthwhile before pitching in!

  • Log out issue in Employee Self service

    We are encountering an error when people click on log out in self service page
    Once all the steps are done such as adding a dependent and making elections, a confirmation page comes up with the summary of benefits info. At this point, there is a "Log Out" button alongside with "Back", "Printable Page" and "Return to Overview". All the other buttons work fine but if we click on Log out, instead of logging out, it displays a "page cannot be displayed error". Strange thing is if we click on 'Back' it goes to Benefits summary page and allows us to navigate as if the session is active.
    Can anyone advise?
    Verified the Oracle system requirements and everything passed. Tested this on Windows 7 with IE8 configuration and as well as with XP but still the same error.
    P.S. This Log out is different from the button which appears on top right hand corner of the page which appears alongside Help button.
    Thanks!

    Hi Shaik,
    I guess if you have the latest notes (Personas client + kernel notes), then session should be killed once you either navigate away from personas or close your browser.
    I just tested on IE and chrome, seems working for me. If issue continues, please raise a message so that dev team can look into it.
    And of course, you can change the timeout parameters based on the message what Steve has posted above. But in your case, session should be killed immediately.
    I would recommend you to verify your installation based on blog below before opening a message:
    SAP Screen Personas - How to configure the system (troubleshooting FAQ)
    Regards,
    Sushant

  • Determining if a request has timed out

    My code creates an NSMutableURLRequest, then uses a NSURLConnection to make a http request. I am combing the documentation but I cannot find how to determine if the request has timedout, i.e. I want to handle the timeout before the error is displayed
    Here is my code:
    NSData *serverData = [[NSData alloc] init];
    NSString *theServerURL = @"http://myurl.com"
    NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:theServerURL] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:10.0];
    [theRequest setHTTPMethod:@"POST"];
    serverData = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&serverResponse error:nil];
    DO I somehow determine the timeout error based on the error in NSURLConnection? If so, how do error codes work? Is it somehow determined based on some variable in NSMutableURLRequest/NSURLRequest? Any help would be appreciated. Thank you.

    Thats what I thought. I think I am screwing up the implementation as I am confused on the initialization properties. The initialization code from the doc is as follows:
    NSError *myerror = [[NSError alloc] initWithDomain:domain code:code userInfo:dict
    Then I think I would replace nil with myerror
    I am struggling with what the domain, code, and userInfo properties. I think I want the error code NSURLErrorTimedOut but I have no idea how to get that.

Maybe you are looking for

  • Facing Problem with HP Laserjet P1007

    I have HP Laserjet P1007, i got driver cd with it. I installed it for the first time. when i turned on my printer, it asked three things, by mistake i selected " Do not ask again for this device ", and now my printer is not working, i have tried ever

  • How can I make New Tab Homepage work in Firefox 6.0 ?

    I just upgraded to Firefox 6 beta and New Tab Homepage stopped working.

  • Hello, relay access denied error

    Hello, can someone help me with such thing: need to configure c170 as mail gateway for postfix. the thing is, i've done all the initial setup, set RAT to accept all emails for my domain and for other domains, as i use one interface deployment solutio

  • PLZ CAN U TELL ME THE BUGS

    plz tell me the bugs which u rectified in u r suport project. i.e give some examples .

  • Period 0 not exist in New FIGL Cube

    We are using new FIGL Cube (0FIGL_C10) and trying the drilldown using Posting Period (0FISCPER3), however it only shows period 1 through 16 and also a period that is Null (#).  We are trying to restrict to Period 0, however this does not exist in the