Bada

  Home  Smartphone OS  Bada


“Bada frequently Asked Questions by expert members with experience in Bada. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



44 Bada Questions And Answers

23⟩ Suppose I am unable to get any GPS data at my work location. What are the possible reasons?

GPS values are not sensed correctly in closed environments. Check the values in an open area.

Especially in indoor environments, GPS signals cannot be sensed. In that case, network positioning can help to get proper location data. Enable the network positioning option under Settings > Location > Network position.

 183 views

30⟩ How to simulate locations?

Right click on the Emulator and select Event Injector > Locations

You can provide the input as a text file or select points on the map.

To use a text file:

1. Browse to the text file containing NMEA location data as shown below.

2. Click 'Send file'.

To use the map:

1. Select the correct map location.

2. Select points.

3. Click 'Send log'.

I built the 'Navigator' sample and tried to test it in the Emulator. The program seems to work, but it could not render the map.

To use the default location service, the client name and password must be provided in the ROUTE_SVC_EXTRA_INFO defined in the NavigatorConstants.h file.

 158 views

33⟩ How to enable HTTP chunked mode?

1. Add a header field to a request header for "Transfer-Encoding", set the value to "chunked".

2. Use the HttpTransaction::EnableTransactionReadyToWrite() method.

3. Implement the OnTransactionReadyToWrite() method to send more chunks. An empty chunk is considered to be the last chunk.

 163 views

34⟩ Explain what are the different HTTP session modes?

HTTP supports NORMAL and PIPELINING session modes. All transactions within these sessions are submitted through the same connection. While only one transaction is processed at a time in normal mode, multiple transactions can be pipelined in pipelining mode. In normal mode, you must wait for the end of the previous transaction in order to submit the next transaction.

 144 views